Skip to content

Commit

Permalink
version 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
quantfuse authored and cran-robot committed Feb 2, 2020
0 parents commit 96d58dd
Show file tree
Hide file tree
Showing 25 changed files with 1,813 additions and 0 deletions.
23 changes: 23 additions & 0 deletions DESCRIPTION
@@ -0,0 +1,23 @@
Package: rpredictit
Title: Interface to the 'PredictIt' API
Version: 0.0.1
Authors@R: person('Daniel', 'Kovtun', email = 'quantumfusetrader@gmail.com', role = c('cre', 'aut'))
Description: Wrapper to retrieve market data, explore available markets, and plot historical price data from the 'PredictIt' public API (<https://www.predictit.org/api/marketdata/all/>).
The package comes with a demo 'shiny' application for illustrating example use cases.
License to use data made available via the API is for non-commercial use and 'PredictIt' is the sole source of such data.
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
Imports: httr, jsonlite, dplyr, DT, dygraphs, magrittr, stringr,
quantmod, xts, shiny
RoxygenNote: 7.0.2
URL: https://github.com/danielkovtun/rpredictit
BugReports: https://github.com/danielkovtun/rpredictit/issues
Suggests: testthat (>= 2.1.0), knitr, rmarkdown
VignetteBuilder: knitr
NeedsCompilation: no
Packaged: 2020-01-23 04:28:27 UTC; danny
Author: Daniel Kovtun [cre, aut]
Maintainer: Daniel Kovtun <quantumfusetrader@gmail.com>
Repository: CRAN
Date/Publication: 2020-02-02 14:20:02 UTC
2 changes: 2 additions & 0 deletions LICENSE
@@ -0,0 +1,2 @@
YEAR: 2020
COPYRIGHT HOLDER: Daniel Kovtun
24 changes: 24 additions & 0 deletions MD5
@@ -0,0 +1,24 @@
26dd07f667f1bdba5f9d3b96bb12b582 *DESCRIPTION
319cdca9c2f5c253c308338457cf6165 *LICENSE
47927842a824b28fa82dba5249b5700f *NAMESPACE
206f1d19fecc2e3458c7a31a4400ffa4 *NEWS.md
4edc5e1ddb8d2885869be42fd8b8090e *R/market_data.R
a818c47165b5f5f222392fe3bdc61b30 *R/runExample.R
9a10cb8a216a6272dae0ee00b8a53a47 *README.md
3a24e72a5f150ce7fa1183a5d74b7456 *build/vignette.rds
392bae175a1a5f79e7b6300c48ee9cce *inst/WORDLIST
cf7ed4e7b72e8faef9d14321575cbb97 *inst/doc/rpredictit-vignette.R
3fd2a835a5e2a6fc30af565cd6e24c76 *inst/doc/rpredictit-vignette.Rmd
01032331057416f5d30a584aade189d4 *inst/doc/rpredictit-vignette.html
e1426933ca7c4dbccca3cfa15e614546 *inst/examples/demo/app.R
c12480c859c770b896f63d85324408e7 *inst/examples/demo/www/app.css
bd49dd0659c292ee0b33b54cf1aae5a0 *inst/extdata/What_will_be_the_balance_of_power_in_Congress_after_the_2020_election.csv
36b310462840e76d97a3d28b3a69331c *man/all_markets.Rd
a210e3bf727fdc1e2801e55aee08f2ea *man/format_market_data.Rd
0a6755783b04a38f62037e98dbd995d4 *man/historical_plot.Rd
d4191f790e01676578a736a5ee34832d *man/markets_table.Rd
5ff2effff79e86cdd0e58a54dd9866d6 *man/parse_historical_csv.Rd
a4db2d09e6840ad2785238d364dbee7d *man/runExample.Rd
f4935cb283e5fcf59e2c6c0e7c53162d *man/single_market.Rd
cab4c440bad59f7233f72027c517e7bc *man/tweet_markets.Rd
3fd2a835a5e2a6fc30af565cd6e24c76 *vignettes/rpredictit-vignette.Rmd
15 changes: 15 additions & 0 deletions NAMESPACE
@@ -0,0 +1,15 @@
# Generated by roxygen2: do not edit by hand

export(all_markets)
export(format_market_data)
export(historical_plot)
export(markets_table)
export(parse_historical_csv)
export(runExample)
export(single_market)
export(tweet_markets)
importFrom(dygraphs,"dyHighlight")
importFrom(magrittr,"%>%")
importFrom(quantmod,"Cl")
importFrom(utils,"read.csv")
importFrom(xts,"as.xts")
3 changes: 3 additions & 0 deletions NEWS.md
@@ -0,0 +1,3 @@
# CHANGES IN RPREDICTIT VERSION 0.0.1

- Initial CRAN release.

0 comments on commit 96d58dd

Please sign in to comment.