R語言data manipulation學習筆記之創(chuàng)建變量穿稳、重命名存皂、數(shù)據(jù)融合

數(shù)據(jù)分析中數(shù)據(jù)處理也就是data manipulation是十分繁瑣的,為此我將在博客里特意建一個分類:Data Manipulation逢艘。本文將講講如何在R語言中創(chuàng)建變量旦袋、重命名以及merge骤菠。

create a dataset

fy <- c(2010,2011,2012,2010,2011,2012,2010,2011,2012)
company <- c("Apple","Apple","Apple","Google","Google","Google","Microsoft","Microsoft","Microsoft")
revenue <- c(65225,108249,156508,29321,37905,50175,62484,69943,73723)
profit <- c(14013,25922,41733,8505,9737,10737,18760,23150,16978) 
companiesData <- data.frame(fy, company, revenue, profit)
head(companiesData)
##     fy   company revenue profit
## 1  2010   Apple   65225  14013
## 2  2011   Apple  108249  25922
## 3  2012   Apple  156508  41733
## 4  2010  Google   29321   8505
## 5  2011  Google   37905   9737
## 6  2012  Google   50175  10737

接下來我們需要查看數(shù)據(jù)集的結(jié)構(gòu),用str()函數(shù)查看

str(companiesData)
## 'data.frame':    9 obs. of  4 variables:
##  $ fy     : num  2010 2011 2012 2010 2011 ...
##  $ company: Factor w/ 3 levels "Apple","Google",..: 1 1 1 2 2 2 3 3 3
##  $ revenue: num  65225 108249 156508 29321 37905 ...
##  $ profit : num  14013 25922 41733 8505 9737 ...

可以看到年份fy這里是是數(shù)值型猜憎,我們需要更改為因子型娩怎,方便后期處理

companiesData$fy <- factor(companiesData$fy, ordered = TRUE)

現(xiàn)在數(shù)據(jù)已經(jīng)整理過好了,下面我們來添加變量胰柑,比如我們可以看看各個公司的利潤率

companiesData$margin <- (companiesData$profit/companiesData$revenue)*100
#查看數(shù)據(jù)
head(companiesData)
##     fy company revenue profit   margin
## 1 2010   Apple   65225  14013 21.48409
## 2 2011   Apple  108249  25922 23.94664
## 3 2012   Apple  156508  41733 26.66509
## 4 2010  Google   29321   8505 29.00651
## 5 2011  Google   37905   9737 25.68790
## 6 2012  Google   50175  10737 21.39910

小數(shù)點位數(shù)太多了,這里我們保留一位

companiesData$margin <- round(companiesData$margin, 1)
head(companiesData)
##     fy company revenue profit margin
## 1 2010   Apple   65225  14013   21.5
## 2 2011   Apple  108249  25922   23.9
## 3 2012   Apple  156508  41733   26.7
## 4 2010  Google   29321   8505   29.0
## 5 2011  Google   37905   9737   25.7
## 6 2012  Google   50175  10737   21.4

這樣我們就創(chuàng)建了一個新的變量margin爬泥,當然也可以刪除變量柬讨,只要復制需要刪除的變量NULL就行了。

#delete variable margin
companiesData$margin <- NULL
head(companiesData)
##     fy company revenue profit
## 1 2010   Apple   65225  14013
## 2 2011   Apple  108249  25922
## 3 2012   Apple  156508  41733
## 4 2010  Google   29321   8505
## 5 2011  Google   37905   9737
## 6 2012  Google   50175  10737

再順便介紹一下transform函數(shù)袍啡,用于創(chuàng)建變量踩官,transform的格式如下

dataFrame <- transform(dataFrame, newColumn = oldColumn1 + oldColumn2)
companiesData <- transform(companiesData, margin=round((profit/revenue)*100), 1)
head(companiesData)
##     fy company revenue profit margin X1
## 1 2010   Apple   65225  14013     21  1
## 2 2011   Apple  108249  25922     24  1
## 3 2012   Apple  156508  41733     27  1
## 4 2010  Google   29321   8505     29  1
## 5 2011  Google   37905   9737     26  1
## 6 2012  Google   50175  10737     21  1

接下來講一下merge,主要是merge函數(shù)境输,它要求進行融合的兩個數(shù)據(jù)集需要有共同的變量即id蔗牡,使用格式如下:

finaldt <- merge(dataset1, dataset2, by="id")

這里我們再創(chuàng)建一個數(shù)據(jù)集用于merge

#creat another dataset
company <- c("Apple","Google","Microsoft")
ava1 <- c(1,2,3)
data2 <- data.frame(company, ava1)
head(data2)
##     company ava1
## 1     Apple    1
## 2    Google    2
## 3 Microsoft    3

數(shù)據(jù)集data2與數(shù)據(jù)集companiesData具有共同的變量company(id)

#merge the two dataset
newdata <- merge(companiesData, data2, by="company")

這樣就得到一個完整的數(shù)據(jù)集了,當然添加行嗅剖、列還有兩個很有用的函數(shù):rbind()以及cbind(),這里就不介紹了 最后講一下重命名辩越,其實很簡單

companiesData$company <- c("A", "A", "A", "G", "G", "G", "M", "M", "M")
head(companiesData)
##     fy company revenue profit margin X1
## 1 2010       A   65225  14013     21  1
## 2 2011       A  108249  25922     24  1
## 3 2012       A  156508  41733     27  1
## 4 2010       G   29321   8505     29  1
## 5 2011       G   37905   9737     26  1
## 6 2012       G   50175  10737     21  1
#rename the colname
colnames(companiesData) <- c("Year", "Com", "Rev", "Pro", "Mar")

seessioninfo

sessionInfo()
## R version 3.4.0 (2017-04-21)
## Platform: x86_64-w64-mingw32/x64 (64-bit)
## Running under: Windows 8.1 x64 (build 9600)
## 
## Matrix products: default
## 
## locale:
## [1] LC_COLLATE=Chinese (Simplified)_China.936 
## [2] LC_CTYPE=Chinese (Simplified)_China.936   
## [3] LC_MONETARY=Chinese (Simplified)_China.936
## [4] LC_NUMERIC=C                              
## [5] LC_TIME=Chinese (Simplified)_China.936    
## 
## attached base packages:
## [1] stats     graphics  grDevices utils     datasets  methods   base     
## 
## loaded via a namespace (and not attached):
##  [1] compiler_3.4.0  backports_1.1.0 magrittr_1.5    rprojroot_1.2  
##  [5] tools_3.4.0     htmltools_0.3.6 yaml_2.1.14     Rcpp_0.12.11   
##  [9] stringi_1.1.5   rmarkdown_1.5   knitr_1.16      stringr_1.2.0  
## [13] digest_0.6.12   evaluate_0.10

聯(lián)系方式:

wechat: yt056410
Email: tyan@zju.edu.cn
QQ: 1051927088
GitHub: https://github.com/YTLogos
簡書: http://www.reibang.com/u/bd001545cf0b
博客: https://ytlogos.github.io/

個人簡介:

嚴濤
浙江大學作物遺傳育種在讀研究生(生物信息學方向)
偽碼農(nóng),R語言愛好者信粮,愛開源

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末黔攒,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子强缘,更是在濱河造成了極大的恐慌督惰,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,839評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件旅掂,死亡現(xiàn)場離奇詭異赏胚,居然都是意外死亡,警方通過查閱死者的電腦和手機商虐,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,543評論 2 382
  • 文/潘曉璐 我一進店門觉阅,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人称龙,你說我怎么就攤上這事留拾。” “怎么了鲫尊?”我有些...
    開封第一講書人閱讀 153,116評論 0 344
  • 文/不壞的土叔 我叫張陵痴柔,是天一觀的道長。 經(jīng)常有香客問我疫向,道長咳蔚,這世上最難降的妖魔是什么豪嚎? 我笑而不...
    開封第一講書人閱讀 55,371評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮谈火,結(jié)果婚禮上侈询,老公的妹妹穿的比我還像新娘。我一直安慰自己糯耍,他們只是感情好扔字,可當我...
    茶點故事閱讀 64,384評論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著温技,像睡著了一般革为。 火紅的嫁衣襯著肌膚如雪瓷耙。 梳的紋絲不亂的頭發(fā)上播瞳,一...
    開封第一講書人閱讀 49,111評論 1 285
  • 那天,我揣著相機與錄音懂诗,去河邊找鬼蜓堕。 笑死抛虏,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的套才。 我是一名探鬼主播迂猴,決...
    沈念sama閱讀 38,416評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼霜旧!你這毒婦竟也來了错忱?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,053評論 0 259
  • 序言:老撾萬榮一對情侶失蹤挂据,失蹤者是張志新(化名)和其女友劉穎以清,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體崎逃,經(jīng)...
    沈念sama閱讀 43,558評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡掷倔,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,007評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了个绍。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片勒葱。...
    茶點故事閱讀 38,117評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖巴柿,靈堂內(nèi)的尸體忽然破棺而出凛虽,到底是詐尸還是另有隱情,我是刑警寧澤广恢,帶...
    沈念sama閱讀 33,756評論 4 324
  • 正文 年R本政府宣布凯旋,位于F島的核電站,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏至非。R本人自食惡果不足惜钠署,卻給世界環(huán)境...
    茶點故事閱讀 39,324評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望荒椭。 院中可真熱鬧谐鼎,春花似錦、人聲如沸趣惠。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,315評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽信卡。三九已至隔缀,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間傍菇,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,539評論 1 262
  • 我被黑心中介騙來泰國打工界赔, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留丢习,地道東北人。 一個月前我還...
    沈念sama閱讀 45,578評論 2 355
  • 正文 我出身青樓淮悼,卻偏偏與公主長得像咐低,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子袜腥,可洞房花燭夜當晚...
    茶點故事閱讀 42,877評論 2 345

推薦閱讀更多精彩內(nèi)容