Skip to content

Commit b4e4d8e

Browse files
committed
Pipeable interface
1 parent 7166419 commit b4e4d8e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+581
-2087
lines changed

CONDUCT.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Contributor Code of Conduct
2+
3+
As contributors and maintainers of this project, we pledge to respect all people who
4+
contribute through reporting issues, posting feature requests, updating documentation,
5+
submitting pull requests or patches, and other activities.
6+
7+
We are committed to making participation in this project a harassment-free experience for
8+
everyone, regardless of level of experience, gender, gender identity and expression,
9+
sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
10+
11+
Examples of unacceptable behavior by participants include the use of sexual language or
12+
imagery, derogatory comments or personal attacks, trolling, public or private harassment,
13+
insults, or other unprofessional conduct.
14+
15+
Project maintainers have the right and responsibility to remove, edit, or reject comments,
16+
commits, code, wiki edits, issues, and other contributions that are not aligned to this
17+
Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed
18+
from the project team.
19+
20+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by
21+
opening an issue or contacting one or more of the project maintainers.
22+
23+
This Code of Conduct is adapted from the Contributor Covenant
24+
(http:contributor-covenant.org), version 1.0.0, available at
25+
http://contributor-covenant.org/version/1/0/0/

DESCRIPTION

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
Package: plotly
2-
Type: Package
3-
Title: Interactive, publication-quality graphs online.
2+
Title: Create interactive web-based graphs via plotly's API.
43
Version: 1.0.0
54
Authors@R: c(person("Chris", "Parmer", role = c("aut", "cph"),
65
email = "[email protected]"),
@@ -17,22 +16,23 @@ Authors@R: c(person("Chris", "Parmer", role = c("aut", "cph"),
1716
person("Carson", "Sievert", role = c("aut", "cre"),
1817
email = "[email protected]"))
1918
License: MIT + file LICENSE
20-
Description: An interface to plotly's online graphing tools with desktop R
21-
environments. Send data to a plotly account and view the graphs in a web
22-
browser. Style the graphs with code or with plotly's online interface;
23-
share data and graphs publicly with a url or privately among other plotly
24-
members; access your graphs from anywhere. Example graph:
25-
https://plot.ly/~chris/1638/
19+
Description: Create interactive web-based graphs via plotly's API.
20+
Easily translate ggplot2 plots to plotly and/or create custom plotly graphs.
21+
Once uploaded to a plotly account, plotly graphs (and the data behind them)
22+
can be viewed and modified in a web browser.
2623
URL: https://github.com/ropensci/plotly
2724
BugReports: https://github.com/ropensci/plotly/issues
28-
Depends:
29-
ggplot2
3025
Imports:
26+
ggplot2,
3127
httr,
32-
jsonlite
28+
jsonlite,
29+
magrittr,
30+
digest
3331
Suggests:
32+
dplyr,
3433
maps,
3534
testthat,
3635
knitr,
3736
devtools,
3837
simsalapar
38+
LazyData: true

NAMESPACE

Lines changed: 4 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,26 @@
11
# Generated by roxygen2 (4.1.1): do not edit by hand
22

3-
S3method("+",figure)
4-
S3method("+",plotly)
5-
S3method(print,figure)
63
S3method(print,plotly)
7-
export(angularaxis)
8-
export(annotation)
9-
export(area)
10-
export(bar)
11-
export(box)
12-
export(colorbar)
13-
export(contour)
14-
export(contours)
4+
export("%>%")
5+
export(add_trace)
156
export(embed_notebook)
16-
export(error_x)
17-
export(error_y)
18-
export(error_z)
19-
export(font)
207
export(get_figure)
218
export(gg2list)
229
export(ggplot_build2)
2310
export(ggplotly)
2411
export(group2NA)
25-
export(heatmap)
26-
export(histogram)
27-
export(histogram2d)
28-
export(knit_print.figure)
2912
export(knit_print.plotly)
3013
export(layer2traces)
3114
export(layout)
32-
export(legend)
33-
export(line)
34-
export(margin)
35-
export(marker)
3615
export(paramORdefault)
16+
export(plot_ly)
3717
export(plotly)
3818
export(plotly_POST)
39-
export(radialaxis)
40-
export(scatter)
41-
export(scatter3d)
42-
export(scene)
4319
export(signup)
44-
export(stream)
4520
export(style)
4621
export(subplot)
47-
export(surface)
4822
export(toRGB)
49-
export(xaxis)
50-
export(xbins)
51-
export(yaxis)
52-
export(ybins)
53-
export(zaxis)
5423
import(ggplot2)
5524
import(httr)
5625
import(jsonlite)
26+
importFrom(magrittr,"%>%")

0 commit comments

Comments
 (0)