R scrie în csv

Exemple de cod

3
0

r scrie în csv

write.csv(Your DataFrame,"Path where you'd like to export the DataFrame\\File Name.csv", row.names = FALSE)
3
0

scrie csv în r

df <- data.frame(name = c("Jon", "Bill", "Maria"),
                 age = c(23, 41, 32))

write.csv(df,"C:\\Users\\Ron\\Desktop\\MyData.csv", row.names = FALSE)
2
0

scrieți în csv în r

write.table(df, file = paste("myName.csv"),sep=",", row.names = FALSE)

# row.names = FALSE removes the index of the rows

În alte limbi

Această pagină este în alte limbi

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................