ここで説明されているように、X.axis の目盛りの色を黒に変更しようとしています:
https://github.com/hadley/ggplot2/wiki/Axis-Attributes#axistextx-text
ただし、コードを実行すると、エラーメッセージが表示されます:
Error: could not find function "theme"
ggplot(long.repmixed.df, aes(x = log10intensity, colour = channel, fill = channel)) +
geom_bar(position="dodge") +
theme(axis.text.x = element_text(colour = "black")) +
opts(panel.background = theme_rect(fill = 'white', colour = 'black')) +
opts(panel.grid.major = none, panel.grid.minor = none)
私は基本的に、グリッドと白い BG のないヒストグラムをプロットしようとしています。誰でも問題を修正できますか。