最近我运行了lease <-c(1, 2, 3, 1, 2, 3, 1, 2, 3)
year<-c(2017, 2017, 2017, 2018, 2018, 2018, 2018, 2018, 2018)
variable<-c(NA, 1, 1, NA, 1, 1, NA, 1, 1)
location<- c('in', 'in', 'in', 'in', 'in', 'in', 'out', 'out', 'out')
dft<-data.frame(lease, year, variable, location)
dft%>%
mutate_all(as.character)%>%
filter(!is.na(variable))%>%
ggplot(aes(x=lease, fill = variable)) +
geom_bar(stat = 'Count', position = 'stack') + facet_grid(location~year) +
guides(fill=guide_legend(title="Level"))+
scale_x_discrete(drop = FALSE)
命令来创建一个新的ng new MyApp
项目。但是,创建应用程序后,在项目的根目录中安装了一堆文件,我猜(不确定)应该已经在Angular 7.2
文件夹中安装/添加了文件。
一个月前,我还运行了node_modules
命令(ng new app
),并且运行良好。我已经重新安装了Node.js(至10.15.1版)。
任何线索出了什么问题?
以下一些其他信息。