给出代码是一个非常基本的问题:
f_chi_squared <- function(x, r) {
return ( (x^(r/2 - 1) * exp(1)^(-x/2)) / ( gamma(0.5*r) * 2^(r/2) ) )
}
this_chi_squared <- function(x) {
return (f_chi_squared(x, 2))
}
plot(this_chi_squared)
我在X和Y轴上没有任何数字。
我想在x和y轴上有数字,而不是像这样空白。
我正在使用Rstudio。当我绘制离散点时也会出现问题。
添加dev.off
我明白了
Error in readChar(con, 5L, useBytes = TRUE) : cannot open the connection
In addition: Warning message:
In readChar(con, 5L, useBytes = TRUE) :
cannot open compressed file '/tmp/RtmpQFaYTk/rs-graphics-32344720-c968-4c9e-b94a-0b9de3edf7db/.snapshot', probable reason 'No such file or directory'
Graphics error: Plot rendering error
答案 0 :(得分:0)
看来您的保证金太小了。在plot
之前使用以下代码:
par(mar = c(5,5,3,1))