R语言实战应用精讲50篇(七)-因子
生活随笔
收集整理的這篇文章主要介紹了
R语言实战应用精讲50篇(七)-因子
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
關(guān)于Excel數(shù)據(jù)指標(biāo)分析,已經(jīng)上傳到個(gè)人資源,以下是鏈接,需要的小伙伴可自取。
Excel數(shù)據(jù)分析工具庫(t檢驗(yàn)、Z檢驗(yàn)、方差分析、回歸、協(xié)方差、相關(guān)系數(shù)、雙樣本方差分析)
https://download.csdn.net/download/wenyusuran/16344167
變量可以簡單地分為連續(xù)變量和分類變量(類別變量),分類變量又可以分為名義變量(包括二分類變量和無序多分類變量)和等級(jí)變量(有序多分類變量)。分類變量在R中稱為因子。因子在R中很重要,可以影響到數(shù)據(jù)的分析方式。
函數(shù)factor()可以將向量編碼成因子,對分類變量的每一個(gè)水平(原始值)賦值為一個(gè)整數(shù),并以整數(shù)向量的形式儲(chǔ)存起來。
factor {base}: The function factor is used to encode a vector as a factor (the terms "category" and "enumerated type" are also used for factors). If argument ordered is TRUE, the factor levels are assumed to be ordered. For compatibility with S there is also a function ordered.is.factor, is.ordered, as.factor and as.ordered are the membership and coercion functions for these classes.fa總結(jié)
以上是生活随笔為你收集整理的R语言实战应用精讲50篇(七)-因子的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 终于不用手撸了,解放你的双手,教你用数学
- 下一篇: R语言实战应用精讲50篇(八)-随机区组