要在R语言中数组中添加新的元素,可以使用c()
函数或append()
函数来实现。以下是两种方法的示例:
使用c()
函数:
# 创建一个包含元素的数组
arr <- c(1, 2, 3, 4)
# 添加新的元素到数组中
arr <- c(arr, 5)
print(arr)
使用append()
函数:
# 创建一个包含元素的数组
arr <- c(1, 2, 3, 4)
# 添加新的元素到数组中
arr <- append(arr, 5)
print(arr)
无论使用c()
函数还是append()
函数,都可以向数组中添加新的元素。