Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
タイトルがすべてを物語っています。生成時に因子変数を順序付けましたが、順序付けを削除して、順序付けされていない因子変数として使用したいと考えています。もう 1 つの質問ですが、因子変数を回帰の予測子として使用する場合、R が順序付けられている場合 (序数) または単純な因子変数 (カテゴリ) である場合、R に違いはありますか?
あなたに必要なのは
x <- factor( x , ordered = FALSE )
例えば
x <- factor( c(1,2,"a") , ordered = TRUE ) x #[1] 1 2 a #Levels: 1 < 2 < a x <- factor( x , ordered = FALSE ) x #[1] 1 2 a #Levels: 1 2 a