gitextract_5lo9g5bj/ ├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R/ │ ├── annotate.r │ ├── color.r │ ├── legend.r │ ├── marker.r │ ├── phantom.R │ ├── sg_axis_x.r │ ├── sg_axis_y.r │ ├── shiny.r │ ├── streamgraph-package.R │ ├── streamgraph.R │ └── utils.R ├── README.Rmd ├── README.html ├── README.md ├── inst/ │ └── htmlwidgets/ │ ├── lib/ │ │ ├── colorbrewer/ │ │ │ ├── LICENSE.txt │ │ │ ├── colorbrewer.css │ │ │ └── colorbrewer.js │ │ ├── d3/ │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ └── d3.js │ │ └── streamgraph/ │ │ └── streamgraph.css │ ├── streamgraph.js │ └── streamgraph.yaml ├── man/ │ ├── renderStreamgraph.Rd │ ├── sg_add_marker.Rd │ ├── sg_annotate.Rd │ ├── sg_axis_x.Rd │ ├── sg_axis_y.Rd │ ├── sg_colors.Rd │ ├── sg_fill_brewer.Rd │ ├── sg_fill_manual.Rd │ ├── sg_fill_tableau.Rd │ ├── sg_legend.Rd │ ├── sg_title.Rd │ ├── streamgraph-exports.Rd │ ├── streamgraph-package.Rd │ ├── streamgraph.Rd │ ├── streamgraphOutput.Rd │ └── widgetThumbnail.Rd ├── streamgraph.Rmd ├── streamgraph.Rproj ├── streamgraph.html ├── streamgraph.md ├── tests/ │ ├── test-all.R │ └── testthat/ │ ├── ccasn.R │ ├── sg.R │ ├── space.R │ ├── space.html │ └── test-streamgraph.R └── vignettes/ └── introduction.Rmd