我試圖通過下面的代碼找到一種方法來保存爲pdf後在fancyRpartPlot後面出現的圖像輸出來繪製迴歸樹。 任何人都知道我該怎麼做?我無法通過網絡找到任何答案。保存一個fancyRpartPlot爲pdf
regression_tree <- data.frame(stock_mag = as.numeric(resData$stock_mag),
LT = as.numeric(resData$Lead_Time),
dmIn = as.numeric(resData$Intermittency),
dmCv = as.numeric(resData$CoV))
fit<-rpart(stock_mag~dmCv+dmIn+LT,data=regression_tree, method="anova", control=rpart.control(minsplit=20))
x11()
fancyRpartPlot(fit, main="test") # Will plot the tree#
謝謝!!
歡迎SO!請習慣於提供像這裏描述的可重現的例子:http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example – lukeA