我不知道为什么,但似乎我的代码正在绘制很多RStudio中的情节。我是R和RStudio的新手,所以我无法弄清楚有多少是被绘制的,但我认为有重复,以前的图和我想要的图,都在RStudio的Plots
标签内。此外,当我尝试滚动查看创建的图表时,我正在弹出窗口
我期待每个州的5个地块,但似乎我得到了更多
library(ggplot2)
try(data('midwest', package='ggplot2'))
for (s in unique(midwest$state)) {
state_data = subset(midwest, state == s)
print(
ggplot(state_data, aes(x=county, y=percprof)) +
geom_bar(stat='identity') +
labs(title=paste(s)) +
xlab('Counties') + ylab('Percentage') +
theme(axis.text.x = element_text(angle = 45, hjust = 1))
)
}
答案 0 :(得分:1)
您的代码运行正常。尝试重新启动R.这可能是服务器问题,但您的代码没有任何问题。