save
library(dplyr)
x <-100
a <- c(3, 2, 1)
d <- data_frame(
name=c("apple", "rose", "rose", "tomato"),
color=c("red", "white", "pink", "red"),
price=c(100, 400, 200, 40) )
save(x, a, d, file="C:/hoge/foo.Rd")
5
(
name=c("apple", "rose", "rose", "tomato"),
color=c("red", "white", "pink", "red"),
price=c(100, 400, 200, 40) )
※ 「C:/hoge」のところは、作業用の
ディレクトリ名に読み替え
(すでに存在し、書き込み権限の
あるディレクトリ)