前提・実現したいこと
Rでggplotを使って、棒グラフとドットプロットの重ね合わせを行なっています。
y軸を対数表示にしたいのですが、エラーが表示されます。
発生している問題・エラーメッセージ
coord_trans(ytrans = "log") でエラー: 使われていない引数 (ytrans = "log") if (zero_range(from) || zero_range(to)) { でエラー: TRUE/FALSE が必要なところが欠損値です
該当のソースコード
> dp1 <- ggplot(NULL) > > dp2 <- dp1 + + labs(x = "", y = "ALT after IRI (IU/L)") + + scale_y_continuous(expand = c(0, 0), limits = c(0,47000)) + + mytheme1 + + theme(aspect.ratio = 1.5, + axis.text.x = element_text(angle = 25, hjust = 1)) + + coord_trans(ytrans = "log") coord_trans(ytrans = "log") でエラー: 使われていない引数 (ytrans = "log") > > dp3 <- dp2 + + geom_bar(data = Binded_AfRe, + aes(x = Condition, y = Mean, fill = Condition), + stat = "identity", + color = "black", + width = 0.6) + + scale_fill_brewer(palette = "Set2") + + theme(legend.position = "none") > > dp4 <- dp3 + + geom_jitter(data = Binded_SiAfRe, + aes(x = Condition, y = ALT), + stat = "identity", + width = 0.1) > > Result_ALT_AfRe <- dp4 + + geom_errorbar(data = Binded_AfRe, + aes(x = Condition, + ymin = Mean - SD, + ymax = Mean + SD), + width = 0.2) > > Result_ALT_AfRe if (zero_range(from) || zero_range(to)) { でエラー: TRUE/FALSE が必要なところが欠損値です
試したこと
coord_transの要素をytransからyに変更してみましたが、同じエラーが出ました。
補足情報(FW/ツールのバージョンなど)
R version 4.0.5 (2021-03-31)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。