gpt4 book ai didi

r - 用R写函数导出PDF图,但PDF损坏

转载 作者:行者123 更新时间:2023-12-02 15:27:06 24 4
gpt4 key购买 nike

<分区>

我已经编写了此函数以在 R 中导出图形。当我运行此函数时,pdf 文件已创建,但它们已损坏且无法打开(或者当我将其导出 png 文件时,文件为空)。当我运行单独的代码行时,不作为它们工作的功能的一部分。

求助!!我认为这一定与在函数中制作表格或图形有关,(我是否必须执行返回图形/数据框之类的操作?)但我不知道是什么!

    graphFunction <- function(fileName){

pdfTitle <- paste(fileName, "_graph", ".pdf", sep = "")

File <- read.csv(fileName, quote = "")
ByPopAge<- ddply(File, .(age), summarise, # need to discount trials where no feeding obs and eve
NCols = length(!is.na(colony_ID)),
TotNumInd = sum(num.indvs)
)

pdf(pdfTitle, width =10, height =10)

ggplot(data = ByPopAge, aes(x = age, y = TotNumInd)) + geom_line() + geom_point()
ggplot(data = ByPopAge, aes(x = age, y = NCols)) + geom_line() + geom_point()

dev.off() }

谢谢!

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com