brukeropusreader/get_bart_result.R

6 lines
212 B
R

library(rbart)
save.soil <- function(opus.file.path, conf.path, output.file='result.csv', output.path='./'){
df = read.opus(opus.file.path, conf.path)
write.csv(df, paste(output.path, output.file, sep=""))
}