我想制作一个盒子图。我有超过1000行,但是当我绘制它们时,它只显示几个条目。
数据集: https://www.dropbox.com/s/tgaqfgm2gkl7i3r/maintenance_data_updated.csv
#Start of Box plot Temperature
training_data <- read.csv("C:/Users/akhan/Documents/maintenance_data_updated_2.csv", stringsAsFactors = TRUE)
library(dplyr)
dt_temperature <- select(training_data, Runtime, Defect, Machine, Temperature, Plant)
dt_temperature$Machine_Plant = paste(dt_temperature$Machine,dt_temperature$Plant,sep = "_")
attach(dt_temperature)
class(Temperature)
class(Defect)
class(Runtime)
class(Machine)
?boxplot
boxplot(Temperature ~ Machine_Plant)
任何人都可以提示一下解决方案是什么?
答案 0 :(得分:0)
你是什么意思'它只显示几个条目'?如果您的问题是在X轴上仅注释4个箱图,解决方案可能是这样的:
boxplot(Temperature ~ Machine_Plant, las=3)
类型
?par
有关las
参数的详细信息。