我有一个这样的数据框(来自BigR教程):
airfile <- system.file("extdata", "airline.zip", package="bigr")
airfile <- unzip(airfile, exdir = tempdir())
airR <- read.csv(airfile, stringsAsFactors=F)
# Upload the data to the BigInsights server. This may take 15-20 seconds
air <- as.bigr.frame(airR)
air <- bigr.persist(air, dataSource="DEL",
dataPath="/user/bigr/examples/airline_demo.csv",
header=T, delimiter=",", useMapReduce=F)
是否可以使用bigr库删除数据框?如果是这样,怎么样?
答案 0 :(得分:0)
bigr.rmfs("/user/bigr/examples/airline_demo.csv", force = F, recursive = T)