Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Additional themes, scales, and geoms for ggplot2

NotificationsYou must be signed in to change notification settings

jrnold/ggthemes

Repository files navigation

R-CMD-checkCode Coverage Statusrstudio mirror downloadsCRAN statuslifecycle

Some extra geoms, scales, and themes forggplot.

Install

To install the stable version from CRAN,

install.packages('ggthemes',dependencies=TRUE)

Or, to install the development version from github, use thedevtoolspackage,

library("devtools")install_github(c("hadley/ggplot2","jrnold/ggthemes"))

How to use

For a quick tutorial, check outRafael Irizarry’sbook.

Examples

library("ggplot2")library("ggthemes")mtcars2<- within(mtcars, {vs<-factor(vs,labels= c("V-shaped","Straight"))am<-factor(am,labels= c("Automatic","Manual"))cyl<-factor(cyl)gear<-factor(gear)})p1<- ggplot(mtcars2)+  geom_point(aes(x=wt,y=mpg,colour=gear))+  labs(title="Fuel economy declines as weight increases",subtitle="(1973-74)",caption="Data from the 1974 Motor Trend US magazine.",x="Weight (1000 lbs)",y="Fuel economy (mpg)",colour="Gears"  )
p1+  scale_color_calc()+  theme_calc()

p1+ theme_clean()

p1+ theme_economist()+  scale_colour_economist()

p1+ theme_excel()+  scale_colour_excel()

p1+ theme_excel_new()+  scale_colour_excel_new()

p1+ theme_igray()

p1+ theme_par()

p1+ theme_fivethirtyeight()

p1+ theme_few()+  scale_colour_few()

p1+ theme_solarized()+  scale_colour_solarized()

p1+ theme_solarized(light=FALSE)+  scale_colour_solarized()

p1+ theme_solid()

p1+ theme_tufte()

p1+ theme_wsj(base_size=8)+ scale_color_wsj()

p1+ scale_color_colorblind()

p1+ scale_color_tableau()

About

Additional themes, scales, and geoms for ggplot2

Topics

Resources

Contributing

Stars

Watchers

Forks

Packages

No packages published

Contributors32

Languages


[8]ページ先頭

©2009-2025 Movatter.jp