Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
9
Task/CSV-data-manipulation/R/csv-data-manipulation-1.r
Normal file
9
Task/CSV-data-manipulation/R/csv-data-manipulation-1.r
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
df <- read.csv(textConnection(
|
||||
"C1,C2,C3,C4,C5
|
||||
1,5,9,13,17
|
||||
2,6,10,14,18
|
||||
3,7,11,15,19
|
||||
4,8,12,16,20"))
|
||||
|
||||
df$sum <- rowSums(df)
|
||||
write.csv(df,row.names = FALSE)
|
||||
1
Task/CSV-data-manipulation/R/csv-data-manipulation-2.r
Normal file
1
Task/CSV-data-manipulation/R/csv-data-manipulation-2.r
Normal file
|
|
@ -0,0 +1 @@
|
|||
write.csv(df, file = "foo.csv",row.names = FALSE)
|
||||
Loading…
Add table
Add a link
Reference in a new issue