Skip to content

Commit 7f01857

Browse files
committed
first
0 parents  commit 7f01857

36 files changed

+1842
-0
lines changed

plotly.Rcheck/00check.log

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
* using log directory ‘/Users/chris/variety_pack/plotly/apiv0.3/R/plotly.Rcheck’
2+
* using R version 3.0.1 (2013-05-16)
3+
* using platform: x86_64-apple-darwin10.8.0 (64-bit)
4+
* using session charset: UTF-8
5+
* checking for file ‘plotly/DESCRIPTION’ ... OK
6+
* checking extension type ... Package
7+
* this is package ‘plotly’ version ‘0.3’
8+
* checking package namespace information ... OK
9+
* checking package dependencies ... OK
10+
* checking if this is a source package ... OK
11+
* checking if there is a namespace ... OK
12+
* checking for executable files ... OK
13+
* checking for hidden files and directories ... NOTE
14+
Found the following hidden files and directories:
15+
.DS_Store
16+
man/.Rapp.history
17+
These were most likely included in error. See section ‘Package
18+
structure’ in the ‘Writing R Extensions’ manual.
19+
* checking for portable file names ... OK
20+
* checking for sufficient/correct file permissions ... OK
21+
* checking whether package ‘plotly’ can be installed ... OK
22+
* checking installed package size ... OK
23+
* checking package directory ... OK
24+
* checking DESCRIPTION meta-information ... OK
25+
* checking top-level files ... OK
26+
* checking for left-over files ... OK
27+
* checking index information ... OK
28+
* checking package subdirectories ... OK
29+
* checking R files for non-ASCII characters ... OK
30+
* checking R files for syntax errors ... OK
31+
* checking whether the package can be loaded ... OK
32+
* checking whether the package can be loaded with stated dependencies ... OK
33+
* checking whether the package can be unloaded cleanly ... OK
34+
* checking whether the namespace can be loaded with stated dependencies ... OK
35+
* checking whether the namespace can be unloaded cleanly ... OK
36+
* checking loading without being on the library search path ... OK
37+
* checking for unstated dependencies in R code ... OK
38+
* checking S3 generic/method consistency ... OK
39+
* checking replacement functions ... OK
40+
* checking foreign function calls ... OK
41+
* checking R code for possible problems ... OK
42+
* checking Rd files ... NOTE
43+
prepare_Rd: plotly-package.Rd:27-28: Dropping empty section \seealso
44+
prepare_Rd: plotly.Rd:27-29: Dropping empty section \value
45+
prepare_Rd: plotly.Rd:36-37: Dropping empty section \note
46+
prepare_Rd: plotly.Rd:39-40: Dropping empty section \seealso
47+
prepare_Rd: signup.Rd:31-32: Dropping empty section \seealso
48+
* checking Rd metadata ... OK
49+
* checking Rd cross-references ... OK
50+
* checking for missing documentation entries ... OK
51+
* checking for code/documentation mismatches ... OK
52+
* checking Rd \usage sections ... OK
53+
* checking Rd contents ... OK
54+
* checking for unstated dependencies in examples ... OK
55+
* checking examples ... OK
56+
* checking PDF version of manual ... OK
57+
NOTE: There were 2 notes.
58+
See
59+
‘/Users/chris/variety_pack/plotly/apiv0.3/R/plotly.Rcheck/00check.log’
60+
for details.

plotly.Rcheck/00install.out

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
* installing *source* package ‘plotly’ ...
2+
** R
3+
** preparing package for lazy loading
4+
** help
5+
*** installing help indices
6+
** building package indices
7+
** testing if installed package can be loaded
8+
* DONE (plotly)

plotly.Rcheck/Rdlatex.log

Lines changed: 440 additions & 0 deletions
Large diffs are not rendered by default.

plotly.Rcheck/plotly-Ex.R

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
pkgname <- "plotly"
2+
source(file.path(R.home("share"), "R", "examples-header.R"))
3+
options(warn = 1)
4+
library('plotly')
5+
6+
base::assign(".oldSearch", base::search(), pos = 'CheckExEnv')
7+
cleanEx()
8+
nameEx("plotly-package")
9+
### * plotly-package
10+
11+
flush(stderr()); flush(stdout())
12+
13+
### Name: plotly-package
14+
### Title: A R API for plot.ly
15+
### Aliases: plotly-package
16+
### Keywords: package
17+
18+
### ** Examples
19+
20+
# Up-to-date documentation and examples at https://plot.ly/API
21+
# These examples may not be up-to-date
22+
23+
24+
25+
26+
cleanEx()
27+
nameEx("plotly")
28+
### * plotly
29+
30+
flush(stderr()); flush(stdout())
31+
32+
### Name: plotly
33+
### Title: main interface to plotly
34+
### Aliases: plotly
35+
36+
### ** Examples
37+
38+
## View https://plot.ly/API for more examples
39+
## Generate a simple plot
40+
# username <- "anna.lyst" # fill in with your plotly username
41+
# api_key <- "y37zkd" # fill in with your plotly API key
42+
# py <- plotly(username, api_key)
43+
## generate some data
44+
# x <- c(0,1,2)
45+
# y <- c(10,11,12)
46+
## send data to Plotly. Plotly will render an interactive graph and will return a URL where you can view your plot
47+
# response <- py$plot(x,y) # sends data to Plotly, Plotly renders an interactive graph, and returns a URL where you can view your plot
48+
# url = response$url # view your plot at this URL
49+
50+
51+
52+
cleanEx()
53+
nameEx("signup")
54+
### * signup
55+
56+
flush(stderr()); flush(stdout())
57+
58+
### Name: signup
59+
### Title: Sign up to plotly
60+
### Aliases: signup
61+
62+
### ** Examples
63+
64+
# See up-to-date documentation and examples at https://plot.ly/API
65+
# username <- 'anna.lyst'
66+
# email <- '[email protected]'
67+
# response <- signup(username, email)
68+
# response$api_key # key to access plotly with
69+
# response$tmp_pw # temporary password to access your plotly account
70+
71+
72+
73+
### * <FOOTER>
74+
###
75+
options(digits = 7L)
76+
base::cat("Time elapsed: ", proc.time() - base::get("ptime", pos = 'CheckExEnv'),"\n")
77+
grDevices::dev.off()
78+
###
79+
### Local variables: ***
80+
### mode: outline-minor ***
81+
### outline-regexp: "\\(> \\)?### [*]+" ***
82+
### End: ***
83+
quit('no')

plotly.Rcheck/plotly-Ex.Rout

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
2+
R version 3.0.1 (2013-05-16) -- "Good Sport"
3+
Copyright (C) 2013 The R Foundation for Statistical Computing
4+
Platform: x86_64-apple-darwin10.8.0 (64-bit)
5+
6+
R is free software and comes with ABSOLUTELY NO WARRANTY.
7+
You are welcome to redistribute it under certain conditions.
8+
Type 'license()' or 'licence()' for distribution details.
9+
10+
Natural language support but running in an English locale
11+
12+
R is a collaborative project with many contributors.
13+
Type 'contributors()' for more information and
14+
'citation()' on how to cite R or R packages in publications.
15+
16+
Type 'demo()' for some demos, 'help()' for on-line help, or
17+
'help.start()' for an HTML browser interface to help.
18+
Type 'q()' to quit R.
19+
20+
> pkgname <- "plotly"
21+
> source(file.path(R.home("share"), "R", "examples-header.R"))
22+
> options(warn = 1)
23+
> library('plotly')
24+
Loading required package: RCurl
25+
Loading required package: bitops
26+
Loading required package: RJSONIO
27+
>
28+
> base::assign(".oldSearch", base::search(), pos = 'CheckExEnv')
29+
> cleanEx()
30+
> nameEx("plotly-package")
31+
> ### * plotly-package
32+
>
33+
> flush(stderr()); flush(stdout())
34+
>
35+
> ### Name: plotly-package
36+
> ### Title: A R API for plot.ly
37+
> ### Aliases: plotly-package
38+
> ### Keywords: package
39+
>
40+
> ### ** Examples
41+
>
42+
> # Up-to-date documentation and examples at https://plot.ly/API
43+
> # These examples may not be up-to-date
44+
>
45+
>
46+
>
47+
>
48+
> cleanEx()
49+
> nameEx("plotly")
50+
> ### * plotly
51+
>
52+
> flush(stderr()); flush(stdout())
53+
>
54+
> ### Name: plotly
55+
> ### Title: main interface to plotly
56+
> ### Aliases: plotly
57+
>
58+
> ### ** Examples
59+
>
60+
> ## View https://plot.ly/API for more examples
61+
> ## Generate a simple plot
62+
> # username <- "anna.lyst" # fill in with your plotly username
63+
> # api_key <- "y37zkd" # fill in with your plotly API key
64+
> # py <- plotly(username, api_key)
65+
> ## generate some data
66+
> # x <- c(0,1,2)
67+
> # y <- c(10,11,12)
68+
> ## send data to Plotly. Plotly will render an interactive graph and will return a URL where you can view your plot
69+
> # response <- py$plot(x,y) # sends data to Plotly, Plotly renders an interactive graph, and returns a URL where you can view your plot
70+
> # url = response$url # view your plot at this URL
71+
>
72+
>
73+
>
74+
> cleanEx()
75+
> nameEx("signup")
76+
> ### * signup
77+
>
78+
> flush(stderr()); flush(stdout())
79+
>
80+
> ### Name: signup
81+
> ### Title: Sign up to plotly
82+
> ### Aliases: signup
83+
>
84+
> ### ** Examples
85+
>
86+
> # See up-to-date documentation and examples at https://plot.ly/API
87+
> # username <- 'anna.lyst'
88+
> # email <- '[email protected]'
89+
> # response <- signup(username, email)
90+
> # response$api_key # key to access plotly with
91+
> # response$tmp_pw # temporary password to access your plotly account
92+
>
93+
>
94+
>
95+
> ### * <FOOTER>
96+
> ###
97+
> options(digits = 7L)
98+
> base::cat("Time elapsed: ", proc.time() - base::get("ptime", pos = 'CheckExEnv'),"\n")
99+
Time elapsed: 0.315 0.007 0.374 0 0
100+
> grDevices::dev.off()
101+
null device
102+
1
103+
> ###
104+
> ### Local variables: ***
105+
> ### mode: outline-minor ***
106+
> ### outline-regexp: "\\(> \\)?### [*]+" ***
107+
> ### End: ***
108+
> quit('no')

plotly.Rcheck/plotly-Ex.pdf

3.53 KB
Binary file not shown.

0 commit comments

Comments
 (0)