頻度表をプロットするときに 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
ありがとう!