1
RStdudio v1.0.153を使用して、リザーブスケールのデータを含むRプロットを作成しようとしています。私は次のエラーを取得する:私のデータへR(リーチ)パッケージに関する問題
Error in likert(think) :
All items (columns) must have the same number of levels
リンクである:以下https://docs.google.com/spreadsheets/d/1TYUr-_oX9eADZ6it1w_4CQJ_wITP6xISaJJHTad3JbA/edit?usp=sharing
私が使用したRコードです:
> library(psych)
> library(likert)
> myColor <- c("red","orange", "light blue","light green", "lavender")
> levels = c("Strongly Disagree", "Disagree", "Neutral", "Agree", "Strongly Agree")
> think$A = factor(think$A, levels, ordered = TRUE)
> think$B = factor(think$B, levels, ordered = TRUE)
> think$C = factor(think$C, levels, ordered = TRUE)
> think$D = factor(think$D, levels, ordered = TRUE)
> think$E = factor(think$E, levels, ordered = TRUE)
> think$F = factor(think$F, levels, ordered = TRUE)
> results <- likert(think)
> plot(results, col = myColor) #Have not used this yet because of the error above
これは、データがいくつかの外部サイト上に配置されたときにあなたを助けるために困難です。質問を自立させる方法については、[再現可能な例の作成方法](https://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example)を参照してください。コードをコピー&ペーストして実行してテストすることができない場合は、時間がかかります。 – MrFlick