R語言ggplot2一幅好看的頻率分布直方圖實例

推文內(nèi)容來自于鏈接

https://www.andrewheiss.com/blog/2021/12/18/bayesian-propensity-scores-weights/

這個博文里的內(nèi)容還挺多的逾雄,我們只關(guān)注其中關(guān)于頻率分布直方圖的實現(xiàn)代碼泽裳。

讀取數(shù)據(jù)集

nets_with_weights<-read.csv("nets_with_weights.csv")

準(zhǔn)備作圖配色

isfahan <- MetBrewer::met.brewer("Isfahan1")
length(isfahan)
isfahan[1]
image.png

這里用到的配色包是 https://github.com/BlakeRMills/MetBrewer 這個用到的都是博物館里的油畫的配色寇漫,挺有意思的嚼隘,大家可以試試

使用ggplot2作圖

這里頻率分布直方圖用到的是geom_histogram()函數(shù),這里的代碼多了一個weight參數(shù)澈蝙,暫時沒有想明白這個參數(shù)起到什么作用

還遇到一個新函數(shù)colorspace::lighten()操作顏色祝闻,看幫助文檔是是顏色更亮仪缸。做一個散點圖試試效果

library(ggplot2)
library(patchwork)

p1<-ggplot()+
  geom_point(aes(x=1,y=1),size=50,color="darkgreen")

p2<-ggplot()+
  geom_point(aes(x=1,y=1),size=50,
             color=colorspace::lighten("darkgreen",0.9))
p1+p2
image.png

頻率分布直方圖

ggplot() + 
  geom_histogram(data = filter(nets_with_weights, net_num == 1), 
                 bins = 50, 
                 aes(x = propensity, weight = iptw), 
                 fill = colorspace::lighten(isfahan[2], 0.35),
                 color="white")
image.png

如果要倒過來加一個負(fù)號就可以了

ggplot() + 
  geom_histogram(data = filter(nets_with_weights, net_num == 1), 
                 bins = 50, 
                 aes(x = propensity, weight = iptw), 
                 fill = colorspace::lighten(isfahan[2], 0.35),
                 color="white")+
  geom_histogram(data = filter(nets_with_weights, net_num == 0), 
                 bins = 50, aes(x = propensity, weight = iptw, 
                                y = -..count..),
                 fill = colorspace::lighten(isfahan[6], 0.35),
                 color="white")
image.png

添加文本注釋

ggplot() + 
  geom_histogram(data = filter(nets_with_weights, net_num == 1), 
                 bins = 50, 
                 aes(x = propensity, weight = iptw), 
                 fill = colorspace::lighten(isfahan[2], 0.35),
                 color="white")+
  geom_histogram(data = filter(nets_with_weights, net_num == 0), 
                 bins = 50, aes(x = propensity, weight = iptw, 
                                y = -..count..),
                 fill = colorspace::lighten(isfahan[6], 0.35),
                 color="white")+
  geom_histogram(data = filter(nets_with_weights, net_num == 1), 
                 bins = 50, aes(x = propensity), 
                 fill = isfahan[2],color="white") + 
  geom_histogram(data = filter(nets_with_weights, net_num == 0), 
                 bins = 50, aes(x = propensity, y = -..count..),
                 fill = isfahan[6],
                 color="white")+
  annotate(geom = "label", 
           x = 0.8, y = 70, 
           label = "Treated (actual)",
           fill = isfahan[2], 
           color = "white", hjust = 1) +
  annotate(geom = "label", x = 0.8, 
           y = 90, label = "Treated (IPTW pseudo-population)", 
           fill = colorspace::lighten(isfahan[2], 0.35), 
           color = "white", hjust = 1) +
  annotate(geom = "label", x = 0.8, y = -60, 
           label = "Untreated (actual)", 
           fill = isfahan[6], 
           color = "white", hjust = 1) +
  annotate(geom = "label", 
           x = 0.8, y = -80, 
           label = "Untreated (IPTW pseudo-population)", 
           fill = colorspace::lighten(isfahan[6], 0.35), 
           color = "white", hjust = 1) 
image.png

對細(xì)節(jié)的一些調(diào)整

ggplot() + 
  geom_histogram(data = filter(nets_with_weights, net_num == 1), 
                 bins = 50, 
                 aes(x = propensity, weight = iptw), 
                 fill = colorspace::lighten(isfahan[2], 0.35),
                 color="white")+
  geom_histogram(data = filter(nets_with_weights, net_num == 0), 
                 bins = 50, aes(x = propensity, weight = iptw, 
                                y = -..count..),
                 fill = colorspace::lighten(isfahan[6], 0.35),
                 color="white")+
  geom_histogram(data = filter(nets_with_weights, net_num == 1), 
                 bins = 50, aes(x = propensity), 
                 fill = isfahan[2],color="white") + 
  geom_histogram(data = filter(nets_with_weights, net_num == 0), 
                 bins = 50, aes(x = propensity, y = -..count..),
                 fill = isfahan[6],
                 color="white")+
  annotate(geom = "label", 
           x = 0.8, y = 70, 
           label = "Treated (actual)",
           fill = isfahan[2], 
           color = "white", hjust = 1) +
  annotate(geom = "label", x = 0.8, 
           y = 90, label = "Treated (IPTW pseudo-population)", 
           fill = colorspace::lighten(isfahan[2], 0.35), 
           color = "white", hjust = 1) +
  annotate(geom = "label", x = 0.8, y = -60, 
           label = "Untreated (actual)", 
           fill = isfahan[6], 
           color = "white", hjust = 1) +
  annotate(geom = "label", 
           x = 0.8, y = -80, 
           label = "Untreated (IPTW pseudo-population)", 
           fill = colorspace::lighten(isfahan[6], 0.35), 
           color = "white", hjust = 1) +
  geom_hline(yintercept = 0, color = "white", size = 0.25) +
  scale_y_continuous(label = abs) +
  coord_cartesian(xlim = c(0.1, 0.8), ylim = c(-80, 100)) +
  labs(x = "Propensity", y = "Count")+
  theme_minimal() +
  theme(panel.grid.minor = element_blank(),
        plot.background = element_rect(fill = "white", color = NA),
        plot.title = element_text(face = "bold"),
        axis.title = element_text(face = "bold"),
        strip.text = element_text(face = "bold", size = rel(0.8), hjust = 0),
        strip.background = element_rect(fill = "grey80", color = NA),
        legend.title = element_text(face = "bold"))
image.png

歡迎大家關(guān)注我的公眾號

小明的數(shù)據(jù)分析筆記本

小明的數(shù)據(jù)分析筆記本 公眾號 主要分享:1、R語言和python做數(shù)據(jù)分析和數(shù)據(jù)可視化的簡單小例子痴荐;2血柳、園藝植物相關(guān)轉(zhuǎn)錄組學(xué)、基因組學(xué)生兆、群體遺傳學(xué)文獻(xiàn)閱讀筆記难捌;3、生物信息學(xué)入門學(xué)習(xí)資料及自己的學(xué)習(xí)筆記鸦难!

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末根吁,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子合蔽,更是在濱河造成了極大的恐慌击敌,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,968評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件拴事,死亡現(xiàn)場離奇詭異沃斤,居然都是意外死亡圣蝎,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評論 2 382
  • 文/潘曉璐 我一進(jìn)店門衡瓶,熙熙樓的掌柜王于貴愁眉苦臉地迎上來徘公,“玉大人,你說我怎么就攤上這事哮针」孛妫” “怎么了?”我有些...
    開封第一講書人閱讀 153,220評論 0 344
  • 文/不壞的土叔 我叫張陵诚撵,是天一觀的道長缭裆。 經(jīng)常有香客問我,道長寿烟,這世上最難降的妖魔是什么澈驼? 我笑而不...
    開封第一講書人閱讀 55,416評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮筛武,結(jié)果婚禮上缝其,老公的妹妹穿的比我還像新娘。我一直安慰自己徘六,他們只是感情好内边,可當(dāng)我...
    茶點故事閱讀 64,425評論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著待锈,像睡著了一般漠其。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上竿音,一...
    開封第一講書人閱讀 49,144評論 1 285
  • 那天和屎,我揣著相機(jī)與錄音,去河邊找鬼春瞬。 笑死柴信,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的宽气。 我是一名探鬼主播随常,決...
    沈念sama閱讀 38,432評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼萄涯!你這毒婦竟也來了绪氛?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,088評論 0 261
  • 序言:老撾萬榮一對情侶失蹤涝影,失蹤者是張志新(化名)和其女友劉穎枣察,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體袄琳,經(jīng)...
    沈念sama閱讀 43,586評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡询件,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,028評論 2 325
  • 正文 我和宋清朗相戀三年燃乍,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片宛琅。...
    茶點故事閱讀 38,137評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡刻蟹,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出嘿辟,到底是詐尸還是另有隱情舆瘪,我是刑警寧澤,帶...
    沈念sama閱讀 33,783評論 4 324
  • 正文 年R本政府宣布红伦,位于F島的核電站英古,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏昙读。R本人自食惡果不足惜召调,卻給世界環(huán)境...
    茶點故事閱讀 39,343評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望蛮浑。 院中可真熱鬧唠叛,春花似錦、人聲如沸沮稚。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽蕴掏。三九已至障般,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間盛杰,已是汗流浹背挽荡。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留饶唤,地道東北人徐伐。 一個月前我還...
    沈念sama閱讀 45,595評論 2 355
  • 正文 我出身青樓贯钩,卻偏偏與公主長得像募狂,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子角雷,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,901評論 2 345

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