鉴于此数据框:
years random_numbers
1 2003 -24
2 2004 152
3 2005 23
4 2006 73
5 2007 80
6 2008 85
. .... ..
生成数据框的代码:
years = c(rep(2003:2012,4))
random_numbers = as.integer(rnorm(40)*100)
testDF = data.frame(years, random_numbers)
我怎样才能生成ff。文本文件:
- 2003.txt 包含数字 -24、3、88 等。
- 2004.txt 包含数字 152、67、100 等。
我有点不知所措。我正在考虑将年份作为因素,然后以某种方式将其与
write.table(???, ???, append = T, row.names = F, col.names = T)