+ All Categories
Home > Documents > Some Possibly Useful Graphics Functions

Some Possibly Useful Graphics Functions

Date post: 22-Feb-2016
Category:
Upload: ursala
View: 32 times
Download: 0 times
Share this document with a friend
Description:
Some Possibly Useful Graphics Functions. Lunch presentation. GGPlot2. Hadley Wickham Grammar Of Graphics GGPlot2 Website If I see it on the GGPlot2 page it might be easier/better looking to use than using R plot function. Syntax. What I’m used to: Plot(x,y , col =whatever, main=whatever) - PowerPoint PPT Presentation
Popular Tags:
19
Some Possibly Useful Graphics Functions Lunch presentation
Transcript
Page 1: Some Possibly Useful Graphics Functions

Some Possibly Useful Graphics Functions

Lunch presentation

Page 2: Some Possibly Useful Graphics Functions

GGPlot2

• Hadley Wickham• Grammar Of Graphics• GGPlot2 Website• If I see it on the GGPlot2 page it might be

easier/better looking to use than using R plot function

Page 3: Some Possibly Useful Graphics Functions

Syntax

• What I’m used to:– Plot(x,y, col=whatever, main=whatever)

– Legend(…)

– par(mfrow=c(1,2))

Page 4: Some Possibly Useful Graphics Functions

Syntax• What I’m used to:

– Plot(x,y, col=whatever, main=whatever) ggplot(dataFrame,aes(x,y,sometimes z) +

the name of the plot you want +– Legend(…) + options like labels/colors/text/lines– par(mfrow=c(x,y))grid.newpage()pushViewport(viewport(layout = grid.layout(x, y)))viewport(layout.pos.row = x, layout.pos.col = y)

Page 5: Some Possibly Useful Graphics Functions

How Might it be Useful

1) Do you have your data in a data.frame?2) Are you ok with acceding control of the

details?3) Do you anticipate summarizing your data by

one or more variables in your data frame?4) Do you see your plot or something like it on

Hadley’s page?

Page 6: Some Possibly Useful Graphics Functions

R Plot Function

Page 7: Some Possibly Useful Graphics Functions

R Plot Function Again

Page 8: Some Possibly Useful Graphics Functions

R Barplot Function

Page 9: Some Possibly Useful Graphics Functions

geom_bar

Page 10: Some Possibly Useful Graphics Functions

Specify Factor Levels

Page 11: Some Possibly Useful Graphics Functions

Specify Arbitrary Factor Levels

Page 12: Some Possibly Useful Graphics Functions

geom_point

Page 13: Some Possibly Useful Graphics Functions

Remove Background Grid

Page 14: Some Possibly Useful Graphics Functions

Specify Colors

Page 15: Some Possibly Useful Graphics Functions

Change legend label

Page 16: Some Possibly Useful Graphics Functions

Change title and axes labels

Page 17: Some Possibly Useful Graphics Functions

geom_point

Page 18: Some Possibly Useful Graphics Functions

Facet by sample

Page 19: Some Possibly Useful Graphics Functions

Flip it


Recommended