亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在R語言中使用ggplot2繪制分組散點圖

發布時間:2021-04-01 16:09:18 來源:億速云 閱讀:4861 作者:Leah 欄目:開發技術

這篇文章將為大家詳細講解有關怎么在R語言中使用ggplot2繪制分組散點圖,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

1. 首先載入ggplot2包,

library(ggplot2)

2. 然后進行ggplot(data = NULL, mapping = aes(), ..., environment = parent.frame())繪制,在繪制中第一個參數是數據,第二個參數是數據映射,是繪制的全局變量,其中包含的參數有x,y,color,size,alpha,shape等。

例如:ggplot(iris, aes(Sepal.Length, Sepal.Width, color = Species)),然后通過快捷散點繪制

+geom_point(size = 2.0, shape = 16),顏色代表不同的物種,如下圖:

怎么在R語言中使用ggplot2繪制分組散點圖

3. 上面顯示的是最原始的散點繪制,通過顏色區分不同的物種,那么如何進行效果的提升呢?

首先是可以進行分面,使得不同物種的對比效果更為顯著,這里使用+facet_wrap( ~ Species),效果如下:

怎么在R語言中使用ggplot2繪制分組散點圖

4. 通過分面后對比效果好了不少,如果想看下不同物種下花萼長度與寬度的關系呢?可以使用+geom_smooth(method = "loess"),效果圖如下:

怎么在R語言中使用ggplot2繪制分組散點圖

5. 通過上面的操作效果好了很多,但是還是感覺不夠高大上,那我們可以使用library(ggthemes)這個包進行精修一下,通過修改theme,使用+theme_solarized(),效果如下:

怎么在R語言中使用ggplot2繪制分組散點圖

還有更多的theme選擇,例如+theme_wsj(),效果如下:

怎么在R語言中使用ggplot2繪制分組散點圖

這樣我們的圖是不是高大上了很多呢,所以其實數據可視化也沒有多難。最后給下源碼:

library(ggthemes)
library(ggplot2)

ggplot(iris, aes(Sepal.Length, Sepal.Width, color = Species)) +
 geom_point(size = 2.0, shape = 16) +
 facet_wrap( ~ Species) +
 geom_smooth(method = "loess")+

 theme_wsj()

補充:R語言 畫圖神器ggplot2包

ggplot2

R語言里畫圖最好用的包啦。感覺圖都挺清晰的,就懶得加文字了(或者以后回來補吧>.)前面幾個圖挺基礎的,后面也許會有沒見過的ggplot用法哦。

Install Package

install.packages("ggplot2")
library(ggplot2)

Scatter Plot

為了方便展示,用gapminder的數據

if(!require(gapminder)) install.packages("gapminder")
 library(gapminder)
gapminder

數據大概是這樣的

怎么在R語言中使用ggplot2繪制分組散點圖

假設我們現在想要知道2007年lifeExp和人均GDP之間的關系。

先篩選數據

library(dplyr)
gapminder_2007 <- gapminder %>%
 filter(year == 2007)

畫lifeExp和gdpPercap關系的散點圖,x為gdpPercap,y為lifeExp。

ggplot(gapminder_2007,aes(x = gdpPercap, y = lifeExp))+geom_point()

怎么在R語言中使用ggplot2繪制分組散點圖

看的出來lifeExp與gdpPercap存在近似lifeExp=log(gdpPercap)的關系,對x軸的數值進行log值處理。另外,為了呈現更多信息,用顏色標記國家所在的洲,并用點的大小表示人口數量。

ggplot(gapminder_2007,aes(x = gdpPercap, y = lifeExp, color = continent, size = pop))+
 geom_point()+scale_x_log10()+theme_minimal()+
 labs(x = "GDP per capita",
 y = "Life expectancy",
 title = "Life expectancy increases as GDP per capita increases",
 caption = "Data source: gapminder")

怎么在R語言中使用ggplot2繪制分組散點圖

另外一種呈現方式如下:

加入了回歸線和坐標軸的histogram。

plot <- ggplot(gapminder_2007, aes(x = gdpPercap, y = lifeExp)) + 
 geom_point()+geom_smooth(method="lm")+scale_x_log10()+
 labs(x = "GDP per capita",
 y = "Life expectancy",
 title = "Life expectancy increases as GDP per capita increases",
 caption = "Data source: gapminder")
ggMarginal(plot, type = "histogram", fill="transparent")
#ggMarginal(plot, type = "boxplot", fill="transparent")

怎么在R語言中使用ggplot2繪制分組散點圖

Histogram

gapminder_gdp2007 <- gapminder %>%
 filter(year == 2007, continent == "Americas") %>%
 mutate(country = fct_reorder(country,gdpPercap,last))
ggplot(gapminder_gdp2007, aes(x=country, y = gdpPercap))+
 geom_col(fill="skyblue", color="black")+
 labs(x = "Country",
 y = "GDP per capita",
 title = "GDP per capita in North America and South America, 2007",
 caption = "Data source: gapminder")+
 coord_flip()+theme_minimal()

怎么在R語言中使用ggplot2繪制分組散點圖

Line Plot

gapminder_pop <- gapminder %>%
 filter(country %in% c("United States","China"))
ggplot(gapminder_pop,aes(x = year, y = pop, color = country))+
 geom_line(lwd = 0.8)+theme_light()+
 labs(x = "Year",
 y = "Population",
 title = "Population in China and United States, 1953-2007",
 caption = "Data source: gapminder")

怎么在R語言中使用ggplot2繪制分組散點圖

Facet Plot

gapminder_gdp <- gapminder %>%
 group_by(year, continent) %>%
 summarize(avg_gdp = mean(gdpPercap))
ggplot(gapminder_gdp,aes(x = year, y = avg_gdp, color = continent))+
 geom_line(lwd = 0.8)+theme_light()+facet_wrap(~continent)+
 labs(x = "Year",
 y = "Average GDP per capita",
 title = "Average GDP per capita change in different continent",
 caption = "Data source: gapminder")+
 scale_x_continuous(breaks=c(1955,1970,1985,2000))

怎么在R語言中使用ggplot2繪制分組散點圖

Path Plot

gapminder_lifeexp <- gapminder %>%
 filter(year %in% c(1957,2007), continent == "Europe") %>%
 arrange(year) %>%
 mutate(country = fct_reorder(country,lifeExp,last))
ggplot(gapminder_lifeexp) +geom_path(aes(x = lifeExp, y = country),
 arrow = arrow(length = unit(1.5, "mm"), type = "closed")) +
 geom_text(
 aes(x = lifeExp,
 y = country,
 label = round(lifeExp, 1),
 hjust = ifelse(year == 2007,-0.2,1.2)),
 size =3,
 family = "Bookman",
 color = "gray25")+
 scale_x_continuous(limits=c(45, 85))+
 labs(
 x = "Life expectancy",
 y = "Country",
 title = "People live longer in 2007 compared to 1957",
 subtitle = "Life expectancy in European countries",
 caption = "Data source: gapminder"
 )

怎么在R語言中使用ggplot2繪制分組散點圖

Density Plot

gapminder_1992 <- gapminder %>%
 filter(year == 1992)
ggplot(gapminder_1992, aes(lifeExp))+theme_classic()+
 geom_density(aes(fill=factor(continent)), alpha=0.8) + 
 labs(
 x="Life expectancy",
 title="Life expectancy group by continent, 1992", 
 caption="Data source: gapminder",
 fill="Continent")

怎么在R語言中使用ggplot2繪制分組散點圖

Slope Chart

gapminder_lifeexp2 <- gapminder %>%
 filter(year %in% c(1977,1987,1997,2007),
 country %in% c("Canada", "United States","Mexico","Haiti","El Salvador",
  "Guatemala","Jamaica")) %>%
 mutate(lifeExp = round(lifeExp))
ylabs <- subset(gapminder_lifeexp2, year==head(year,1))$country
yvals <- subset(gapminder_lifeexp2, year==head(year,1))$lifeExp
ggplot(gapminder_lifeexp2, aes(x=as.factor(year),y=lifeExp)) +
 geom_line(aes(group=country),colour="grey80") +
 geom_point(colour="white",size=8) +
 geom_text(aes(label=lifeExp), size=3, color = "black") +
 scale_y_continuous(name="", breaks=yvals, labels=ylabs)+
 theme_classic()+
 labs(title="Life Expectancy of some North America countries change from 1977 to 2007") + 
 theme(axis.title=element_blank(),
 axis.ticks = element_blank(),
 plot.title = element_text(hjust=0.5))

怎么在R語言中使用ggplot2繪制分組散點圖

關于怎么在R語言中使用ggplot2繪制分組散點圖就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

山阴县| 新龙县| 莱阳市| 甘洛县| 湄潭县| 浦北县| 德兴市| 长岭县| 淳安县| 平顺县| 呼伦贝尔市| 报价| 潍坊市| 裕民县| 教育| 金乡县| 历史| 连江县| 原阳县| 青河县| 涟水县| 沂水县| 鹤山市| 延安市| 泸州市| 河池市| 自治县| 日土县| 孝昌县| 厦门市| 武威市| 城口县| 博野县| 德格县| 宁都县| 平遥县| 丹巴县| 津南区| 长垣县| 达州市| 施甸县|