Skip to content

Commit 925d400

Browse files
committed
Merge pull request #2 from ropensci/ggplotly
py$ggplotly(gg)
2 parents b49545b + 12d320d commit 925d400

22 files changed

+1059
-4
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
R/.Rhistory
22
Rapp.history
33
/Karthik_local.R
4+
*~
5+
.Rhistory

DESCRIPTION

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: plotly
22
Type: Package
33
Title: Interactive, publication-quality graphs online.
4-
Version: 0.3.5
4+
Version: 0.3.6
55
Authors@R: c(person("Chris", "Parmer", role = c("aut", "cre"),
66
email = "[email protected]"),
77
person("Scott", "Chamberlain", role = "aut",
@@ -19,6 +19,11 @@ URL: https://github.com/ropensci/plotly
1919
BugReports: https://github.com/ropensci/plotly/issues
2020
Depends:
2121
RCurl,
22-
RJSONIO
22+
RJSONIO,
23+
ggplot2,
24+
plyr
2325
Imports:
2426
knitr
27+
Suggests:
28+
maps,
29+
testthat

NAMESPACE

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1+
export(getLegendList)
2+
export(gg2list)
3+
export(layer2list)
14
export(plotly)
25
export(signup)
6+
export(toRGB)
37
import(RCurl)
48
import(RJSONIO)
9+
import(ggplot2)
510
import(knitr)
11+
import(plyr)

NEWS

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
0.3.6 -- 10 March 2014.
2+
3+
Merge ggplotly code.
4+
5+
0.3.5

0 commit comments

Comments
 (0)