Skip to content

Instantly share code, notes, and snippets.

@squarednob
Last active December 25, 2015 16:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save squarednob/7006188 to your computer and use it in GitHub Desktop.
Save squarednob/7006188 to your computer and use it in GitHub Desktop.
//making bubble chart. circle= data of size.
symbols(teamvelocity$TotalPoints, teamvelocity$TotalDevs, circles=teamvelocity$Team, inches=0.35, fg="#00FFFF", ylab="Team Members", xlab="velocity", bg="#CCCCCC")
//show stacked two charts at the same time. layout() is the frame.
layout(matrix(1:2, nrow = 2))
par(mar = par("mar") * c(0.8,1,1,1))
boxplot(m$mortality, ylim=xr, horizontal = TRUE, xlab="mortality")
hist(m$mortality, ylit=xr)
//以下に永続的に値を適用する=par
//margin
par(mar = par("mar") * c(0.8,1,1,1))
//overwrite charts
par(new=T)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment