Skip to content

Commit

Permalink
Pipeable interface
Browse files Browse the repository at this point in the history
  • Loading branch information
cpsievert committed Jun 8, 2015
1 parent 7166419 commit b4e4d8e
Show file tree
Hide file tree
Showing 63 changed files with 581 additions and 2,087 deletions.
25 changes: 25 additions & 0 deletions CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Contributor Code of Conduct

As contributors and maintainers of this project, we pledge to respect all people who
contribute through reporting issues, posting feature requests, updating documentation,
submitting pull requests or patches, and other activities.

We are committed to making participation in this project a harassment-free experience for
everyone, regardless of level of experience, gender, gender identity and expression,
sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.

Examples of unacceptable behavior by participants include the use of sexual language or
imagery, derogatory comments or personal attacks, trolling, public or private harassment,
insults, or other unprofessional conduct.

Project maintainers have the right and responsibility to remove, edit, or reject comments,
commits, code, wiki edits, issues, and other contributions that are not aligned to this
Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed
from the project team.

Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by
opening an issue or contacting one or more of the project maintainers.

This Code of Conduct is adapted from the Contributor Covenant
(http:contributor-covenant.org), version 1.0.0, available at
http://contributor-covenant.org/version/1/0/0/
22 changes: 11 additions & 11 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
Package: plotly
Type: Package
Title: Interactive, publication-quality graphs online.
Title: Create interactive web-based graphs via plotly's API.
Version: 1.0.0
Authors@R: c(person("Chris", "Parmer", role = c("aut", "cph"),
email = "chris@plot.ly"),
Expand All @@ -17,22 +16,23 @@ Authors@R: c(person("Chris", "Parmer", role = c("aut", "cph"),
person("Carson", "Sievert", role = c("aut", "cre"),
email = "cpsievert1@gmail.com"))
License: MIT + file LICENSE
Description: An interface to plotly's online graphing tools with desktop R
environments. Send data to a plotly account and view the graphs in a web
browser. Style the graphs with code or with plotly's online interface;
share data and graphs publicly with a url or privately among other plotly
members; access your graphs from anywhere. Example graph:
https://plot.ly/~chris/1638/
Description: Create interactive web-based graphs via plotly's API.
Easily translate ggplot2 plots to plotly and/or create custom plotly graphs.
Once uploaded to a plotly account, plotly graphs (and the data behind them)
can be viewed and modified in a web browser.
URL: https://github.com/ropensci/plotly
BugReports: https://github.com/ropensci/plotly/issues
Depends:
ggplot2
Imports:
ggplot2,
httr,
jsonlite
jsonlite,
magrittr,
digest
Suggests:
dplyr,
maps,
testthat,
knitr,
devtools,
simsalapar
LazyData: true
38 changes: 4 additions & 34 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,56 +1,26 @@
# Generated by roxygen2 (4.1.1): do not edit by hand

S3method("+",figure)
S3method("+",plotly)
S3method(print,figure)
S3method(print,plotly)
export(angularaxis)
export(annotation)
export(area)
export(bar)
export(box)
export(colorbar)
export(contour)
export(contours)
export("%>%")
export(add_trace)
export(embed_notebook)
export(error_x)
export(error_y)
export(error_z)
export(font)
export(get_figure)
export(gg2list)
export(ggplot_build2)
export(ggplotly)
export(group2NA)
export(heatmap)
export(histogram)
export(histogram2d)
export(knit_print.figure)
export(knit_print.plotly)
export(layer2traces)
export(layout)
export(legend)
export(line)
export(margin)
export(marker)
export(paramORdefault)
export(plot_ly)
export(plotly)
export(plotly_POST)
export(radialaxis)
export(scatter)
export(scatter3d)
export(scene)
export(signup)
export(stream)
export(style)
export(subplot)
export(surface)
export(toRGB)
export(xaxis)
export(xbins)
export(yaxis)
export(ybins)
export(zaxis)
import(ggplot2)
import(httr)
import(jsonlite)
importFrom(magrittr,"%>%")
Loading

0 comments on commit b4e4d8e

Please sign in to comment.