ボックスプロットを作成しました。私は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)
は、誰もが解決策は何かヒントをお願いできますか?
Machine_Plant変数が重要なのですか?試してみてください:boxplot(温度〜as.factor(Machine_Plant)) –