编写以下函数以将特殊字符添加到整数,例如'19991221'
。当我运行以下函数时,它返回NULL
值。试图实现仍然返回NULL的Return value from function when iterating in a loop R。
从* .csv
读取数据fileloc=read.csv('*.csv')
m<-for (row in fileloc[1]) {
x<-(sub("(..)$", "/\\1", row))
y<-(sub("(.....)$", "/\\1", x))
}
> m
NULL
sample data:
V1
1 19991221
2 19910703
3 19850326
4 19890328
5 19610912
Desired Result:
V1
1 1999/12/21
2 1991/07/03
3 1985/03/26
4 1989/03/28
5 1961/09/12