林在我的新的數據集工作,我總是只會繪製因子?
options(StringsAsFactors = FALSE)
開始,現在遇到的問題即時消息是,如果字符串作爲因素選項設置爲TRUE R將只繪製的數據我設置。
每當我嘗試使用Stringsasfactors = FALSE繪圖時,它會給我下一個錯誤消息。
plot(Data$Jobs, Data$RXH)
Error in plot.window(...) : need finite 'xlim' values
In addition: Warning messages:
1: In xy.coords(x, y, xlabel, ylabel, log) : NAs introduced by coercion
2: In min(x) : no non-missing arguments to min; returning Inf
3: In max(x) : no non-missing arguments to max; returning -Inf
但是,當我設置Stringsasfactors TRUE它繪製它沒有問題......
這是腳本。
#Setting WD.
getwd()
setwd("C:/Windows/System32/config/systemprofile/Documents/R proj")
options(stringsAsFactors = F)
get <- read.csv("WorkExcelR.csv", header = TRUE, sep = ",")
Data <- na.omit(get)
這是數據$作業和數據$ RXH
> Data$Jobs
[1] "Playstation" "RWC Heineken" "Jagermeister" "RWC Heineken"
[5] "RWC Heineken" "RWC Heineken"
> Data$RXH
[1] 90 90 100 90 90 90
'plot(factor(Data $ Jobs),Data $ RXH)' – Roland