Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
R
 
 
 
 
man
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

mountainplot

CRAN_Status_Badge CRAN_Downloads

Homepage: https://kwstat.github.io/mountainplot/

Repository: https://github.com/kwstat/mountainplot

Key features:

  • Extends lattice graphics to support multi-panel, multi-group mountainplots.

Installation

# Install the released version from CRAN:
install.packages("mountainplot")

# Install the development version from GitHub:
install.packages("devtools")
devtools::install_github("kwstat/mountainplot")

Usage

require(mountainplot)
data(singer, package = "lattice")
parts <- within(singer, {
section <- voice.part
section <- gsub(" 1", "", section)
section <- gsub(" 2", "", section)
section <- factor(section)
})
# Change levels to logical ordering
levels(parts$section) <- c("Bass","Tenor","Alto","Soprano")
mountainplot(~height|section, data = parts,
             groups=voice.part, type='l',
             layout=c(1,4),
             main="Folded Empirical CDF",
             auto.key=list(columns=4), as.table=TRUE)

mountainplot

About

Mountain plots for R

Topics

Resources

Releases

No releases published

Packages

No packages published

Languages

You can’t perform that action at this time.