1

頻度表をプロットするときに log='y' などのオプションはありますか。私のコードは次のとおりです。

df = read.table(myfile, header=F, sep=',')
freq = table(df[[1]]) # make frequency table for the first column
plot(freq, log='y')

ただし、対数表示はできません。エラーメッセージは次のとおりです。

Warning messages:
1: In plot.window(...) :
  nonfinite axis limits [GScale(-inf,7.0814,2, .); log=1]
2: In axis(...) : "log" is not a graphical parameter

ありがとう!

4

1 に答える 1

1

多分あなたはこのようなことをしたいでしょう:

plot(as.numeric(names(freq)),as.numeric(freq),log='y',xlab='',ylab='freq')
于 2013-08-10T17:51:36.587 に答える