Title: Tools for Reading Formatted Access Log Files
Description: R is used by a vast array of people for a vast array of purposes
- including web analytics. This package contains functions for consuming and
munging various common forms of request log, including the Common and Combined
Web Log formats and various Amazon access logs.
Author: Oliver Keyes
Maintainer: Oliver Keyes <ironholds@gmail.com>
Diff between webreadr versions 0.3.0 dated 2015-07-16 and 0.4.0 dated 2016-01-23
DESCRIPTION | 20 ++++-- MD5 | 56 +++++++++++------- NAMESPACE | 3 - NEWS | 17 +++++ R/RcppExports.R | 8 ++ R/bro.R |only R/readers.R | 69 ++++++++++++++++++++++- R/splitters.R | 19 ++++-- R/utilities.R | 8 ++ README.md | 8 +- build/vignette.rds |binary inst/doc/Introduction.Rmd | 9 ++- inst/doc/Introduction.html | 8 +- inst/extdata/app_stats.log |only inst/extdata/conn.log |only inst/extdata/dhcp.log |only inst/extdata/dns.log |only inst/extdata/files.log |only inst/extdata/ftp.log |only inst/extdata/http.log |only inst/extdata/s3.log |only man/read_aws.Rd | 5 + man/read_clf.Rd | 2 man/read_combined.Rd | 2 man/read_s3.Rd |only man/read_squid.Rd | 2 man/split_clf.Rd | 15 +++-- man/split_squid.Rd | 7 +- man/webreadr.Rd | 2 src/RcppExports.cpp | 22 +++++-- src/splitters.cpp | 118 +++++++++++++++++++++++++++++++++------- tests/testthat/test_bro.R |only tests/testthat/test_readers.R | 13 +++- tests/testthat/test_splitters.R |only vignettes/Introduction.Rmd | 9 ++- 35 files changed, 325 insertions(+), 97 deletions(-)
Title: Tables so Beautifully Fine-Tuned You Will Believe It's Magic
Description: The introduction of the broom package has made converting model objects into data
frames as simple as a single function. While the broom package focuses on providing tidy
data frames that can be used in advanced analysis, it deliberately stops short of providing
functionality for reporting models in publication-ready tables. pixiedust provides this
functionality with a programming interface intended to be similar to ggplot2's system of
layers with fine tuned control over each cell of the table. Options for output include
printing to the console and to the common markdown formats (markdown, HTML, and LaTeX).
With a little pixiedust (and happy thoughts) tables can really fly.
Author: Benjamin Nutter [aut, cre]
Maintainer: Benjamin Nutter <nutter@battelle.org>
Diff between pixiedust versions 0.5.0 dated 2015-10-15 and 0.6.1 dated 2016-01-23
pixiedust-0.5.0/pixiedust/vignettes/pixiedust_in_latex.Rmd |only pixiedust-0.6.1/pixiedust/DESCRIPTION | 8 pixiedust-0.6.1/pixiedust/MD5 | 71 - pixiedust-0.6.1/pixiedust/NAMESPACE | 5 pixiedust-0.6.1/pixiedust/NEWS | 48 + pixiedust-0.6.1/pixiedust/R/as.data.frame.dust.R | 140 +-- pixiedust-0.6.1/pixiedust/R/chain.R | 18 pixiedust-0.6.1/pixiedust/R/dust.R | 57 + pixiedust-0.6.1/pixiedust/R/glance_foot.R | 320 +++---- pixiedust-0.6.1/pixiedust/R/medley.R | 130 +- pixiedust-0.6.1/pixiedust/R/perform_function.R | 82 - pixiedust-0.6.1/pixiedust/R/pixie_count.R |only pixiedust-0.6.1/pixiedust/R/pixiedust-pkg.R | 54 - pixiedust-0.6.1/pixiedust/R/print.dust.R | 35 pixiedust-0.6.1/pixiedust/R/print_dust_console.R | 6 pixiedust-0.6.1/pixiedust/R/print_dust_html.R | 37 pixiedust-0.6.1/pixiedust/R/print_dust_latex.R | 529 ++++++++---- pixiedust-0.6.1/pixiedust/R/print_dust_markdown.R | 10 pixiedust-0.6.1/pixiedust/R/pvalString.R | 84 - pixiedust-0.6.1/pixiedust/R/redust.R | 122 +- pixiedust-0.6.1/pixiedust/R/sprinkle.R | 85 + pixiedust-0.6.1/pixiedust/R/sprinkle_colnames.R | 204 ++-- pixiedust-0.6.1/pixiedust/R/sprinkle_print_method.R | 36 pixiedust-0.6.1/pixiedust/R/sprinkle_table.R | 46 - pixiedust-0.6.1/pixiedust/R/tidy_levels_labels.R | 6 pixiedust-0.6.1/pixiedust/R/zzz.R | 6 pixiedust-0.6.1/pixiedust/README.md | 36 pixiedust-0.6.1/pixiedust/inst/doc/advancedMagic.html | 129 +- pixiedust-0.6.1/pixiedust/inst/doc/pixiedust.html | 26 pixiedust-0.6.1/pixiedust/inst/doc/sprinkles.html | 36 pixiedust-0.6.1/pixiedust/inst/sprinkles.csv | 22 pixiedust-0.6.1/pixiedust/man/compoundAssignment.Rd |only pixiedust-0.6.1/pixiedust/man/dust.Rd | 25 pixiedust-0.6.1/pixiedust/man/pixie_count.Rd |only pixiedust-0.6.1/pixiedust/man/print.dust.Rd | 5 pixiedust-0.6.1/pixiedust/man/sprinkle.Rd | 64 + pixiedust-0.6.1/pixiedust/tests/testthat/test-dust.R | 17 pixiedust-0.6.1/pixiedust/tests/testthat/test-pixie_count.R |only pixiedust-0.6.1/pixiedust/tests/testthat/test-sprinkles.R | 12 39 files changed, 1544 insertions(+), 967 deletions(-)
Title: Optimal Partitioning of Similarity Relations
Description: Contains a set of algorithms for creating
partitions and coverings of objects largely based on operations
on (dis)similarity relations (or matrices). There are several
iterative re-assignment algorithms optimizing different
goodness-of-clustering criteria. In addition, there are
covering algorithms 'clique' which derives maximal cliques, and
'maxpact' which creates a covering of maximally compact sets.
Graphical analyses and conversion routines are also included.
Author: David W. Roberts <droberts@montana.edu>
Maintainer: David W. Roberts <droberts@montana.edu>
Diff between optpart versions 2.1-1 dated 2013-09-12 and 2.2-0 dated 2016-01-23
optpart-2.1-1/optpart/INDEX |only optpart-2.1-1/optpart/R/testopt.R |only optpart-2.1-1/optpart/man/testopt.Rd |only optpart-2.2-0/optpart/DESCRIPTION | 14 +-- optpart-2.2-0/optpart/MD5 | 117 ++++++++++++-------------- optpart-2.2-0/optpart/NAMESPACE | 60 +++++++++++-- optpart-2.2-0/optpart/R/bestfit.R | 46 +++++++--- optpart-2.2-0/optpart/R/classmatch.R | 103 ++++++++-------------- optpart-2.2-0/optpart/R/clique.R | 26 ++++- optpart-2.2-0/optpart/R/clustify.R |only optpart-2.2-0/optpart/R/confus.R | 29 +----- optpart-2.2-0/optpart/R/disdiam.R | 74 ++-------------- optpart-2.2-0/optpart/R/maxpact.R | 96 +++++++++++++-------- optpart-2.2-0/optpart/R/mergeclust.R | 8 - optpart-2.2-0/optpart/R/murdoch.R | 4 optpart-2.2-0/optpart/R/neighbor.R | 10 -- optpart-2.2-0/optpart/R/optindval.R | 9 -- optpart-2.2-0/optpart/R/optpart.R | 59 +------------ optpart-2.2-0/optpart/R/optsil.R | 59 ++----------- optpart-2.2-0/optpart/R/opttdev.R | 9 -- optpart-2.2-0/optpart/R/partana.R | 43 +++------ optpart-2.2-0/optpart/R/partition.R | 36 +------- optpart-2.2-0/optpart/R/phi.R | 13 -- optpart-2.2-0/optpart/R/refine.R | 24 ----- optpart-2.2-0/optpart/R/reordclust.R | 8 - optpart-2.2-0/optpart/R/silhouette.R | 18 ++-- optpart-2.2-0/optpart/R/stride.R | 80 +++++++++++------ optpart-2.2-0/optpart/R/tabdev.R | 10 -- optpart-2.2-0/optpart/R/testpart.R | 43 ++------- optpart-2.2-0/optpart/R/typal.R | 9 -- optpart-2.2-0/optpart/man/bestfit.Rd | 3 optpart-2.2-0/optpart/man/classmatch.Rd | 2 optpart-2.2-0/optpart/man/clique.Rd | 14 +-- optpart-2.2-0/optpart/man/clique.test.Rd | 26 +++-- optpart-2.2-0/optpart/man/clustering.Rd | 2 optpart-2.2-0/optpart/man/compare.Rd | 2 optpart-2.2-0/optpart/man/confus.Rd | 2 optpart-2.2-0/optpart/man/consider.Rd | 2 optpart-2.2-0/optpart/man/disdiam.Rd | 16 +-- optpart-2.2-0/optpart/man/extract.Rd | 10 +- optpart-2.2-0/optpart/man/fuzconfus.Rd | 2 optpart-2.2-0/optpart/man/maxpact.Rd | 9 +- optpart-2.2-0/optpart/man/mergeclust.Rd | 2 optpart-2.2-0/optpart/man/murdoch.Rd | 2 optpart-2.2-0/optpart/man/neighbor.Rd | 8 - optpart-2.2-0/optpart/man/optindval.Rd | 2 optpart-2.2-0/optpart/man/optpart.Rd | 2 optpart-2.2-0/optpart/man/optpart.internal.Rd | 2 optpart-2.2-0/optpart/man/opttdev.Rd | 2 optpart-2.2-0/optpart/man/partana.Rd | 3 optpart-2.2-0/optpart/man/partition.Rd | 13 +- optpart-2.2-0/optpart/man/phi.Rd | 8 - optpart-2.2-0/optpart/man/refine.Rd | 2 optpart-2.2-0/optpart/man/reordclust.Rd | 2 optpart-2.2-0/optpart/man/silhouette.Rd | 25 +++-- optpart-2.2-0/optpart/man/slice.Rd | 2 optpart-2.2-0/optpart/man/stride.Rd | 10 -- optpart-2.2-0/optpart/man/tabdev.Rd | 10 +- optpart-2.2-0/optpart/man/testpart.Rd | 5 - optpart-2.2-0/optpart/man/typal.Rd | 9 ++ optpart-2.2-0/optpart/src/permute.f | 9 +- optpart-2.2-0/optpart/src/random.c |only 62 files changed, 529 insertions(+), 686 deletions(-)
Title: Numeric Routines for Optically Stimulated Luminescence Dating
Description: Package for optimizing regular numeric problems in optically stimulated luminescence
dating, such as: equivalent dose calculation, annual dose rate determination, growth curve
fitting, decay curve decomposition, fast-component equivalent dose estimation, statistical
age model optimization, and statistical plot visualization.
Author: Jun Peng [aut, cre], Jorge More [ctb], Burton Garbow [ctb], Kenneth Hillstrom [ctb], John Burkardt [ctb], Paul Gilbert [ctb], Ravi Varadhan [ctb]
Maintainer: Jun Peng <pengjun10@mails.ucas.ac.cn>
Diff between numOSL versions 1.8 dated 2015-05-05 and 1.9 dated 2016-01-23
numOSL-1.8/numOSL/NEWS |only numOSL-1.9/numOSL/DESCRIPTION | 25 ++++++--- numOSL-1.9/numOSL/MD5 | 43 +++++++--------- numOSL-1.9/numOSL/NAMESPACE | 7 ++ numOSL-1.9/numOSL/R/analyst.R | 47 +++++------------ numOSL-1.9/numOSL/R/calDA.R | 24 ++++++++ numOSL-1.9/numOSL/R/calED.R | 56 ++++++++++---------- numOSL-1.9/numOSL/R/dbED.R | 86 +++++++++++++++++--------------- numOSL-1.9/numOSL/man/analyst.Rd | 25 ++++----- numOSL-1.9/numOSL/man/calDA.Rd | 14 ++--- numOSL-1.9/numOSL/man/calED.Rd | 21 +++---- numOSL-1.9/numOSL/man/dbED.Rd | 16 +++-- numOSL-1.9/numOSL/man/decomp.Rd | 10 +-- numOSL-1.9/numOSL/man/fastED.Rd | 17 ++---- numOSL-1.9/numOSL/man/fitGrowth.Rd | 6 +- numOSL-1.9/numOSL/man/mcFMM.Rd | 8 +- numOSL-1.9/numOSL/man/mcMAM.Rd | 2 numOSL-1.9/numOSL/man/numOSL-package.Rd | 2 numOSL-1.9/numOSL/man/psRadialPlot.Rd | 4 - numOSL-1.9/numOSL/man/reportSAM.Rd | 6 +- numOSL-1.9/numOSL/man/select.Rd | 2 numOSL-1.9/numOSL/src/calED.f90 | 83 +++++++++++++++++++++++++----- numOSL-1.9/numOSL/src/inverse.f90 | 2 23 files changed, 293 insertions(+), 213 deletions(-)
Title: Tree Boosting for Multivariate Outcomes
Description: Fits a multivariate model of decision trees for multiple, continuous outcome variables. A model for each outcome variable is fit separately, selecting predictors that explain covariance in the outcomes. Built on top of 'gbm', which fits an ensemble of decision trees to univariate outcomes.
Author: Patrick Miller [aut, cre]
Maintainer: Patrick Miller <patrick.mil10@gmail.com>
Diff between mvtboost versions 0.4.0 dated 2016-01-16 and 0.4.1 dated 2016-01-23
mvtboost-0.4.0/mvtboost/tests/testthat/Rplots.pdf |only mvtboost-0.4.1/mvtboost/DESCRIPTION | 14 - mvtboost-0.4.1/mvtboost/MD5 | 53 +-- mvtboost-0.4.1/mvtboost/NAMESPACE | 1 mvtboost-0.4.1/mvtboost/R/mvtb_nonlin_test.R | 4 mvtboost-0.4.1/mvtboost/R/mvtb_plots.R | 2 mvtboost-0.4.1/mvtboost/R/mvtb_summary.R | 5 mvtboost-0.4.1/mvtboost/R/mvtboost.R | 2 mvtboost-0.4.1/mvtboost/build/partial.rdb |binary mvtboost-0.4.1/mvtboost/data/wellbeing.RData |binary mvtboost-0.4.1/mvtboost/inst/doc/mvtboost_vignette.R | 4 mvtboost-0.4.1/mvtboost/inst/doc/mvtboost_vignette.Rmd | 38 +- mvtboost-0.4.1/mvtboost/inst/doc/mvtboost_vignette.html | 116 ++++---- mvtboost-0.4.1/mvtboost/inst/doc/mvtboost_wellbeing.R | 4 mvtboost-0.4.1/mvtboost/inst/doc/mvtboost_wellbeing.Rmd | 57 ++-- mvtboost-0.4.1/mvtboost/inst/doc/mvtboost_wellbeing.html | 202 +++++++-------- mvtboost-0.4.1/mvtboost/man/mvtb.Rd | 2 mvtboost-0.4.1/mvtboost/man/mvtb.nonlin.Rd | 2 mvtboost-0.4.1/mvtboost/man/mvtboost-package.Rd | 6 mvtboost-0.4.1/mvtboost/man/summary.mvtb.Rd | 2 mvtboost-0.4.1/mvtboost/man/wellbeing.Rd | 2 mvtboost-0.4.1/mvtboost/tests/testthat/test_plot.R | 2 mvtboost-0.4.1/mvtboost/tests/testthat/test_summary.R | 2 mvtboost-0.4.1/mvtboost/vignettes/mvtboost_vignette.Rmd | 38 +- mvtboost-0.4.1/mvtboost/vignettes/mvtboost_wellbeing.Rmd | 57 ++-- mvtboost-0.4.1/mvtboost/vignettes/wb_cv5.Rdata |binary mvtboost-0.4.1/mvtboost/vignettes/wb_cv5test.Rdata |binary mvtboost-0.4.1/mvtboost/vignettes/wb_nonlin.Rdata |binary 28 files changed, 305 insertions(+), 310 deletions(-)
Title: Fast and Simple MongoDB Client for R
Description: High-level, high-performance MongoDB client based on libmongoc and
jsonlite. Includes support for aggregation, indexing, map-reduce, streaming,
SSL encryption and SASL authentication. The vignette gives a brief overview
of the available methods in the package.
Author: Jeroen Ooms [aut, cre],
MongoDB, Inc [cph] (Author of mongo-c-driver)
Maintainer: Jeroen Ooms <jeroen.ooms@stat.ucla.edu>
Diff between mongolite versions 0.7 dated 2015-12-09 and 0.8 dated 2016-01-23
DESCRIPTION | 10 +-- MD5 | 36 +++++++------- NEWS | 4 + build/vignette.rds |binary inst/doc/intro.Rmd | 2 inst/doc/intro.html | 20 +++---- src/bson/bson-config.h | 9 +++ src/bson/bson-json.c | 2 src/bson/bson-stdint.h | 2 src/bson/bson-string.c | 2 src/bson/bson-version.h | 6 +- src/mongoc/mongoc-cursor.c | 6 +- src/mongoc/mongoc-gridfs.c | 13 ++++- src/mongoc/mongoc-server-description-private.h | 10 +++ src/mongoc/mongoc-server-description.c | 43 ++++++++++++++++ src/mongoc/mongoc-topology-description-private.h | 1 src/mongoc/mongoc-topology-description.c | 59 +++++++++++++++++++++-- src/mongoc/mongoc-version.h | 6 +- vignettes/intro.Rmd | 2 19 files changed, 182 insertions(+), 51 deletions(-)
Title: Mixed GAM Computation Vehicle with GCV/AIC/REML Smoothness
Estimation
Description: GAMs, GAMMs and other generalized ridge regression with
multiple smoothing parameter estimation by GCV, REML or UBRE/AIC.
Includes a gam() function, a wide variety of smoothers, JAGS
support and distributions beyond the exponential family.
Author: Simon Wood <simon.wood@r-project.org>
Maintainer: Simon Wood <simon.wood@r-project.org>
Diff between mgcv versions 1.8-10 dated 2015-12-12 and 1.8-11 dated 2016-01-23
ChangeLog | 35 +++++ DESCRIPTION | 6 MD5 | 31 ++-- R/bam.r | 319 +++++++++++++++++++++++++++++++----------------- R/fast-REML.r | 41 +++--- R/gam.sim.r | 5 R/mgcv.r | 10 - R/misc.r | 29 ++-- R/smooth.r | 35 +++-- man/bam.Rd | 12 + man/bug.reports.mgcv.Rd |only man/jagam.Rd | 4 man/mgcv-parallel.Rd | 9 - src/discrete.c | 235 ++++++++++++++++++++++------------- src/init.c | 8 - src/mat.c | 32 +++- src/mgcv.h | 12 + 17 files changed, 526 insertions(+), 297 deletions(-)
Title: Modelling Actual, Potential and Reference Crop
Evapotranspiration
Description: Uses data and constants to calculate potential evapotranspiration (PET) and actual evapotranspiration (AET) from 21 different formulations including Penman, Penman-Monteith FAO 56, Priestley-Taylor and Morton formulations.
Author: Danlu Guo <danlu.guo@adelaide.edu.au>, Seth Westra <swestra@civeng.adelaide.edu.au>
Maintainer: Danlu Guo <danlu.guo@adelaide.edu.au>
Diff between Evapotranspiration versions 1.7 dated 2015-09-23 and 1.8 dated 2016-01-23
Evapotranspiration-1.7/Evapotranspiration/man/ET.Penpan.Rd |only Evapotranspiration-1.8/Evapotranspiration/DESCRIPTION | 10 Evapotranspiration-1.8/Evapotranspiration/MD5 | 89 Evapotranspiration-1.8/Evapotranspiration/NAMESPACE | 9 Evapotranspiration-1.8/Evapotranspiration/NEWS | 43 Evapotranspiration-1.8/Evapotranspiration/R/Evapotranspiration.R | 1039 ++++- Evapotranspiration-1.8/Evapotranspiration/R/Plotting.R | 1 Evapotranspiration-1.8/Evapotranspiration/R/Reading.R | 1888 ++++++---- Evapotranspiration-1.8/Evapotranspiration/data/E_OBS.RData |binary Evapotranspiration-1.8/Evapotranspiration/data/climatedata.rda |binary Evapotranspiration-1.8/Evapotranspiration/data/constants.RData |binary Evapotranspiration-1.8/Evapotranspiration/data/defaultconstants.RData |only Evapotranspiration-1.8/Evapotranspiration/data/processeddata.RData |binary Evapotranspiration-1.8/Evapotranspiration/man/ET.Abtew.Rd | 79 Evapotranspiration-1.8/Evapotranspiration/man/ET.BlaneyCriddle.Rd | 87 Evapotranspiration-1.8/Evapotranspiration/man/ET.BrutsaertStrickler.Rd | 90 Evapotranspiration-1.8/Evapotranspiration/man/ET.ChapmanAustralian.Rd | 113 Evapotranspiration-1.8/Evapotranspiration/man/ET.GrangerGray.Rd | 103 Evapotranspiration-1.8/Evapotranspiration/man/ET.Hamon.Rd | 61 Evapotranspiration-1.8/Evapotranspiration/man/ET.HargreavesSamani.Rd | 63 Evapotranspiration-1.8/Evapotranspiration/man/ET.JensenHaise.Rd | 78 Evapotranspiration-1.8/Evapotranspiration/man/ET.Linacre.Rd | 61 Evapotranspiration-1.8/Evapotranspiration/man/ET.Makkink.Rd | 81 Evapotranspiration-1.8/Evapotranspiration/man/ET.MattShuttleworth.Rd | 101 Evapotranspiration-1.8/Evapotranspiration/man/ET.McGuinnessBordne.Rd | 63 Evapotranspiration-1.8/Evapotranspiration/man/ET.MortonCRAE.Rd | 116 Evapotranspiration-1.8/Evapotranspiration/man/ET.MortonCRWE.Rd | 116 Evapotranspiration-1.8/Evapotranspiration/man/ET.PenPan.Rd |only Evapotranspiration-1.8/Evapotranspiration/man/ET.Penman.Rd | 115 Evapotranspiration-1.8/Evapotranspiration/man/ET.PenmanMonteith.Rd | 101 Evapotranspiration-1.8/Evapotranspiration/man/ET.PriestleyTaylor.Rd | 93 Evapotranspiration-1.8/Evapotranspiration/man/ET.Rd | 92 Evapotranspiration-1.8/Evapotranspiration/man/ET.Romanenko.Rd | 58 Evapotranspiration-1.8/Evapotranspiration/man/ET.SzilagyiJozsa.Rd | 115 Evapotranspiration-1.8/Evapotranspiration/man/ET.Turc.Rd | 94 Evapotranspiration-1.8/Evapotranspiration/man/ETComparison.Rd | 72 Evapotranspiration-1.8/Evapotranspiration/man/ETForcings.Rd | 49 Evapotranspiration-1.8/Evapotranspiration/man/ETPlot.Rd | 43 Evapotranspiration-1.8/Evapotranspiration/man/E_OBS.Rd | 2 Evapotranspiration-1.8/Evapotranspiration/man/Radiation.Rd | 10 Evapotranspiration-1.8/Evapotranspiration/man/ReadInput_InterpAbnormal.Rd |only Evapotranspiration-1.8/Evapotranspiration/man/ReadInput_InterpMissing.Rd |only Evapotranspiration-1.8/Evapotranspiration/man/ReadInputs.Rd | 134 Evapotranspiration-1.8/Evapotranspiration/man/ReadOBSEvaporation.Rd | 18 Evapotranspiration-1.8/Evapotranspiration/man/climatedata.Rd | 33 Evapotranspiration-1.8/Evapotranspiration/man/constants.Rd | 111 Evapotranspiration-1.8/Evapotranspiration/man/data.Rd | 18 Evapotranspiration-1.8/Evapotranspiration/man/defaultconstants.Rd |only Evapotranspiration-1.8/Evapotranspiration/man/processeddata.Rd |only 49 files changed, 3767 insertions(+), 1682 deletions(-)
More information about Evapotranspiration at CRAN
Permanent link
Title: A Modern and Flexible Web Client for R
Description: The curl() and curl_download() functions provide highly
configurable drop-in replacements for base url() and download.file() with
better performance, support for encryption (https, ftps), gzip compression,
authentication, and other libcurl goodies. The core of the package implements a
framework for performing fully customized requests where data can be processed
either in memory, on disk, or streaming via the callback or connection
interfaces. Some knowledge of libcurl is recommended; for a more-user-friendly
web client see the 'httr' package which builds on this package with http
specific tools and logic.
Author: Jeroen Ooms [cre, aut],
Hadley Wickham [ctb],
RStudio [cph]
Maintainer: Jeroen Ooms <jeroen.ooms@stat.ucla.edu>
Diff between curl versions 0.9.4 dated 2015-11-20 and 0.9.5 dated 2016-01-23
DESCRIPTION | 28 +++++++++++++++------------- LICENSE | 2 +- MD5 | 37 ++++++++++++++++++++----------------- NAMESPACE | 4 +++- NEWS | 3 +++ R/nslooup.R |only build/vignette.rds |binary inst/doc/intro.html | 46 +++++++++++++++++++++++----------------------- man/curl.Rd | 3 ++- man/curl_download.Rd | 2 +- man/curl_escape.Rd | 2 +- man/curl_fetch.Rd | 2 +- man/curl_options.Rd | 2 +- man/form_file.Rd | 2 +- man/handle.Rd | 2 +- man/handle_cookies.Rd | 7 ++----- man/ie_proxy.Rd | 2 +- man/nslookup.Rd |only man/parse_date.Rd | 2 +- man/parse_headers.Rd | 2 +- src/nslookup.c |only 21 files changed, 78 insertions(+), 70 deletions(-)
Title: Fast and Versatile Argument Checks
Description: Tests and assertions to perform frequent argument checks. A
substantial part of the package was written in C to minimize any worries
about execution time overhead.
Author: Michel Lang <michellang@gmail.com>,
Bernd Bischl <bernd_bischl@gmx.net>
Maintainer: Michel Lang <michellang@gmail.com>
Diff between checkmate versions 1.6.3 dated 2015-10-23 and 1.7.0 dated 2016-01-23
checkmate-1.6.3/checkmate/R/checkPercentage.r |only checkmate-1.6.3/checkmate/man/checkPercentage.Rd |only checkmate-1.6.3/checkmate/man/checkmate.Rd |only checkmate-1.6.3/checkmate/tests/testthat/test_checkPercentage.r |only checkmate-1.6.3/checkmate/tests/testthat/test_qtest.r |only checkmate-1.6.3/checkmate/tests/testthat/test_qtestr.r |only checkmate-1.7.0/checkmate/DESCRIPTION | 25 checkmate-1.7.0/checkmate/MD5 | 257 ++++---- checkmate-1.7.0/checkmate/NAMESPACE | 89 ++ checkmate-1.7.0/checkmate/R/allMissing.r | 2 checkmate-1.7.0/checkmate/R/anyInfinite.r | 4 checkmate-1.7.0/checkmate/R/anyMissing.r | 2 checkmate-1.7.0/checkmate/R/anyNaN.r | 2 checkmate-1.7.0/checkmate/R/checkAccess.r | 31 - checkmate-1.7.0/checkmate/R/checkArray.r | 42 - checkmate-1.7.0/checkmate/R/checkAtomic.r | 37 - checkmate-1.7.0/checkmate/R/checkAtomicVector.r | 36 - checkmate-1.7.0/checkmate/R/checkCharacter.r | 64 -- checkmate-1.7.0/checkmate/R/checkChoice.r | 31 - checkmate-1.7.0/checkmate/R/checkClass.r | 31 - checkmate-1.7.0/checkmate/R/checkComplex.r | 36 - checkmate-1.7.0/checkmate/R/checkCount.r | 36 - checkmate-1.7.0/checkmate/R/checkDataFrame.r | 41 - checkmate-1.7.0/checkmate/R/checkDataTable.r |only checkmate-1.7.0/checkmate/R/checkDirectory.r | 31 - checkmate-1.7.0/checkmate/R/checkEnvironment.r | 31 - checkmate-1.7.0/checkmate/R/checkFactor.r | 118 +-- checkmate-1.7.0/checkmate/R/checkFile.r | 29 checkmate-1.7.0/checkmate/R/checkFlag.r | 36 - checkmate-1.7.0/checkmate/R/checkFunction.r | 31 - checkmate-1.7.0/checkmate/R/checkInt.r | 36 - checkmate-1.7.0/checkmate/R/checkInteger.r | 36 - checkmate-1.7.0/checkmate/R/checkIntegerish.r | 38 - checkmate-1.7.0/checkmate/R/checkList.r | 54 - checkmate-1.7.0/checkmate/R/checkLogical.r | 36 - checkmate-1.7.0/checkmate/R/checkMatrix.r | 38 - checkmate-1.7.0/checkmate/R/checkNamed.r | 39 - checkmate-1.7.0/checkmate/R/checkNames.r | 40 - checkmate-1.7.0/checkmate/R/checkNull.r | 27 checkmate-1.7.0/checkmate/R/checkNumber.r | 33 - checkmate-1.7.0/checkmate/R/checkNumeric.r | 36 - checkmate-1.7.0/checkmate/R/checkPathForOutput.r | 33 - checkmate-1.7.0/checkmate/R/checkScalar.r | 36 - checkmate-1.7.0/checkmate/R/checkScalarNA.r | 31 - checkmate-1.7.0/checkmate/R/checkSetEqual.r | 31 - checkmate-1.7.0/checkmate/R/checkString.r | 36 - checkmate-1.7.0/checkmate/R/checkSubset.r | 31 - checkmate-1.7.0/checkmate/R/checkVector.r | 36 - checkmate-1.7.0/checkmate/R/helper.r | 26 checkmate-1.7.0/checkmate/R/isIntegerish.r | 2 checkmate-1.7.0/checkmate/R/makeAssertion.r |only checkmate-1.7.0/checkmate/R/makeExpectation.r |only checkmate-1.7.0/checkmate/R/makeTest.r |only checkmate-1.7.0/checkmate/R/qassert.r | 34 - checkmate-1.7.0/checkmate/R/qassertr.r | 17 checkmate-1.7.0/checkmate/R/wfwl.r | 6 checkmate-1.7.0/checkmate/R/zzz.r | 8 checkmate-1.7.0/checkmate/build/vignette.rds |binary checkmate-1.7.0/checkmate/inst/NEWS.md | 17 checkmate-1.7.0/checkmate/inst/README.md | 3 checkmate-1.7.0/checkmate/inst/doc/checkmate.R | 67 ++ checkmate-1.7.0/checkmate/inst/doc/checkmate.Rmd | 248 ++++++-- checkmate-1.7.0/checkmate/inst/doc/checkmate.html | 301 +++++++--- checkmate-1.7.0/checkmate/inst/include |only checkmate-1.7.0/checkmate/man/AssertCollection.Rd | 2 checkmate-1.7.0/checkmate/man/anyInfinite.Rd | 4 checkmate-1.7.0/checkmate/man/anyMissing.Rd | 2 checkmate-1.7.0/checkmate/man/anyNaN.Rd | 2 checkmate-1.7.0/checkmate/man/asInteger.Rd | 2 checkmate-1.7.0/checkmate/man/assert.Rd | 2 checkmate-1.7.0/checkmate/man/checkAccess.Rd | 32 - checkmate-1.7.0/checkmate/man/checkArray.Rd | 80 -- checkmate-1.7.0/checkmate/man/checkAtomic.Rd | 125 +--- checkmate-1.7.0/checkmate/man/checkAtomicVector.Rd | 77 -- checkmate-1.7.0/checkmate/man/checkCharacter.Rd | 70 -- checkmate-1.7.0/checkmate/man/checkChoice.Rd | 28 checkmate-1.7.0/checkmate/man/checkClass.Rd | 20 checkmate-1.7.0/checkmate/man/checkComplex.Rd | 69 -- checkmate-1.7.0/checkmate/man/checkCount.Rd | 44 - checkmate-1.7.0/checkmate/man/checkDataFrame.Rd | 72 -- checkmate-1.7.0/checkmate/man/checkDataTable.Rd |only checkmate-1.7.0/checkmate/man/checkDirectory.Rd | 33 - checkmate-1.7.0/checkmate/man/checkEnvironment.Rd | 63 -- checkmate-1.7.0/checkmate/man/checkFactor.Rd | 73 -- checkmate-1.7.0/checkmate/man/checkFile.Rd | 31 - checkmate-1.7.0/checkmate/man/checkFlag.Rd | 42 - checkmate-1.7.0/checkmate/man/checkFunction.Rd | 67 -- checkmate-1.7.0/checkmate/man/checkInt.Rd | 44 - checkmate-1.7.0/checkmate/man/checkInteger.Rd | 72 -- checkmate-1.7.0/checkmate/man/checkIntegerish.Rd | 71 -- checkmate-1.7.0/checkmate/man/checkList.Rd | 73 -- checkmate-1.7.0/checkmate/man/checkLogical.Rd | 70 -- checkmate-1.7.0/checkmate/man/checkMatrix.Rd | 78 -- checkmate-1.7.0/checkmate/man/checkNamed.Rd | 22 checkmate-1.7.0/checkmate/man/checkNames.Rd | 22 checkmate-1.7.0/checkmate/man/checkNull.Rd | 20 checkmate-1.7.0/checkmate/man/checkNumber.Rd | 43 - checkmate-1.7.0/checkmate/man/checkNumeric.Rd | 71 -- checkmate-1.7.0/checkmate/man/checkPathForOutput.Rd | 32 - checkmate-1.7.0/checkmate/man/checkScalar.Rd | 42 - checkmate-1.7.0/checkmate/man/checkScalarNA.Rd | 40 - checkmate-1.7.0/checkmate/man/checkSetEqual.Rd | 29 checkmate-1.7.0/checkmate/man/checkString.Rd | 42 - checkmate-1.7.0/checkmate/man/checkSubset.Rd | 28 checkmate-1.7.0/checkmate/man/checkVector.Rd | 81 -- checkmate-1.7.0/checkmate/man/checkmate-package.Rd |only checkmate-1.7.0/checkmate/man/coalesce.Rd | 2 checkmate-1.7.0/checkmate/man/makeAssertion.Rd |only checkmate-1.7.0/checkmate/man/makeExpectation.Rd |only checkmate-1.7.0/checkmate/man/makeTest.Rd |only checkmate-1.7.0/checkmate/man/qassert.Rd | 20 checkmate-1.7.0/checkmate/man/qassertr.Rd | 4 checkmate-1.7.0/checkmate/src/all_missing.h | 2 checkmate-1.7.0/checkmate/src/all_nchar.h | 2 checkmate-1.7.0/checkmate/src/any_infinite.h | 2 checkmate-1.7.0/checkmate/src/any_missing.h | 2 checkmate-1.7.0/checkmate/src/any_nan.h | 2 checkmate-1.7.0/checkmate/src/checkmate_init.c |only checkmate-1.7.0/checkmate/src/checks.c | 56 + checkmate-1.7.0/checkmate/src/checks.h | 2 checkmate-1.7.0/checkmate/src/cmessages.h | 2 checkmate-1.7.0/checkmate/src/helper.h | 2 checkmate-1.7.0/checkmate/src/is_integerish.h | 2 checkmate-1.7.0/checkmate/src/qassert.c | 17 checkmate-1.7.0/checkmate/src/qassert.h | 4 checkmate-1.7.0/checkmate/src/which_first.h | 3 checkmate-1.7.0/checkmate/tests/testthat/checkmate.test.include |only checkmate-1.7.0/checkmate/tests/testthat/helper.r | 62 +- checkmate-1.7.0/checkmate/tests/testthat/test_checkDataFrame.r | 28 checkmate-1.7.0/checkmate/tests/testthat/test_checkDataTable.r |only checkmate-1.7.0/checkmate/tests/testthat/test_checkFilesystem.r | 6 checkmate-1.7.0/checkmate/tests/testthat/test_checkNumeric.r | 2 checkmate-1.7.0/checkmate/tests/testthat/test_checkScalarNA.r | 3 checkmate-1.7.0/checkmate/tests/testthat/test_include.r |only checkmate-1.7.0/checkmate/tests/testthat/test_interoperability.r |only checkmate-1.7.0/checkmate/tests/testthat/test_qassert.r |only checkmate-1.7.0/checkmate/tests/testthat/test_qassertr.r |only checkmate-1.7.0/checkmate/vignettes/checkmate.Rmd | 201 ++++-- 138 files changed, 2509 insertions(+), 2155 deletions(-)
Title: A Compression Format Optimized for the Web
Description: A lossless compressed data format that uses a combination of the LZ77
algorithm and Huffman coding. Brotli is similar in speed to deflate (gzip) but
offers more dense compression.
Author: Jeroen Ooms [aut, cre],
Google, Inc [aut, cph] (Brotli C++ library)
Maintainer: Jeroen Ooms <jeroen.ooms@stat.ucla.edu>
Diff between brotli versions 0.4 dated 2015-11-26 and 0.5 dated 2016-01-23
DESCRIPTION | 8 LICENSE |only MD5 | 131 +++--- NEWS |only build/vignette.rds |binary inst/doc/benchmarks.html | 24 - src/Makevars | 9 src/dec/bit_reader.c | 13 src/dec/bit_reader.h | 13 src/dec/context.h | 13 src/dec/decode.c | 13 src/dec/decode.h | 13 src/dec/dictionary.c | 13 src/dec/dictionary.h | 13 src/dec/huffman.c | 13 src/dec/huffman.h | 13 src/dec/port.h | 13 src/dec/prefix.h | 13 src/dec/state.c | 13 src/dec/state.h | 13 src/dec/streams.c | 13 src/dec/streams.h | 13 src/dec/transform.h | 13 src/dec/types.h | 13 src/enc/backward_references.cc | 375 ++++++++--------- src/enc/backward_references.h | 27 - src/enc/bit_cost.h | 58 +- src/enc/block_splitter.cc | 138 ++---- src/enc/block_splitter.h | 34 - src/enc/brotli_bit_stream.cc | 736 ++++++++++++++++++++++------------ src/enc/brotli_bit_stream.h | 125 +++-- src/enc/cluster.h | 190 ++++---- src/enc/command.h | 83 +-- src/enc/compress_fragment.cc |only src/enc/compress_fragment.h |only src/enc/compress_fragment_two_pass.cc |only src/enc/compress_fragment_two_pass.h |only src/enc/context.h | 22 - src/enc/dictionary.cc | 18 src/enc/dictionary.h | 24 - src/enc/dictionary_hash.h | 20 src/enc/encode.cc | 598 ++++++++++++++++++++------- src/enc/encode.h | 64 +- src/enc/encode_parallel.cc | 97 ++-- src/enc/encode_parallel.h | 20 src/enc/entropy_encode.cc | 208 ++++----- src/enc/entropy_encode.h | 52 +- src/enc/entropy_encode_static.h |only src/enc/fast_log.h | 63 -- src/enc/find_match_length.h | 38 - src/enc/hash.h | 317 ++++++++------ src/enc/histogram.cc | 28 - src/enc/histogram.h | 42 - src/enc/literal_cost.cc | 106 ++-- src/enc/literal_cost.h | 20 src/enc/metablock.cc | 182 +++----- src/enc/metablock.h | 42 - src/enc/port.h | 43 - src/enc/prefix.h | 65 +-- src/enc/ringbuffer.h | 75 +-- src/enc/static_dict.cc | 110 ++--- src/enc/static_dict.h | 30 - src/enc/static_dict_lut.h | 20 src/enc/streams.cc | 20 src/enc/streams.h | 20 src/enc/transform.h | 97 ++-- src/enc/types.h | 13 src/enc/utf8_util.cc | 25 - src/enc/utf8_util.h | 24 - src/enc/write_bits.h | 32 - 70 files changed, 2440 insertions(+), 2254 deletions(-)
Title: Fungible Coefficients and Monte Carlo Functions
Description: Functions for computing fungible coefficients and Monte Carlo data.
Author: Niels G. Waller <nwaller@umn.edu> and Jeff Jones <jeff.jones@kornferry.com>
Maintainer: Niels G. Waller <nwaller@umn.edu>
Diff between fungible versions 1.2 dated 2015-12-15 and 1.3 dated 2016-01-23
DESCRIPTION | 8 - MD5 | 8 - inst/CITATION | 4 inst/doc/fungible-manual.pdf |binary man/fungibleR.Rd | 201 ++++++++++++++++++++++++++++++++++++++++--- 5 files changed, 201 insertions(+), 20 deletions(-)
Title: Social Relations Analyses with Roles ("Family SRM")
Description: Social Relations Analysis with roles ("Family SRM") are computed,
using a structural equation modeling approach. Groups ranging from three members
up to an unlimited number of members are supported and the mean structure can
be computed. Means and variances can be compared between different groups of
families and between roles.
Author: Felix Schönbrodt, Lara Stas, Tom Loeys
Maintainer: Felix Schönbrodt <felix@nicebread.de>
Diff between fSRM versions 0.6.1 dated 2014-12-08 and 0.6.4 dated 2016-01-23
DESCRIPTION | 25 ++++++------ MD5 | 44 ++++++++++----------- NAMESPACE | 14 +++++- R/buildSRMSyntax.R | 3 - R/fSRM.R | 15 +++++-- R/generics.R | 2 R/import.R | 102 +++++++++++++++++++++++++++++++++----------------- R/zzz.R | 8 ++- inst/CITATION | 22 ++++++++-- inst/NEWS.Rd | 32 +++++++++++++++ man/buildSRMSyntax.Rd | 3 - man/clinical.Rd | 15 +++---- man/equalMeans.Rd | 3 - man/fSRM.Rd | 33 ++++++++++------ man/four.person.Rd | 7 +-- man/import.Rd | 9 ++-- man/mod.Rd | 3 - man/plot.fSRM.Rd | 3 - man/predict.fSRM.Rd | 3 - man/three.person.Rd | 7 +-- man/two.groups.Rd | 5 +- man/two.indicators.Rd | 9 ++-- man/update.fSRM.Rd | 3 - 23 files changed, 243 insertions(+), 127 deletions(-)
Title: Tools to Make Developing R Packages Easier
Description: Collection of package development tools.
Author: Hadley Wickham [aut, cre],
Winston Chang [aut],
RStudio [cph],
R Core team [ctb] (Some namespace and vignette code extracted from base
R)
Maintainer: Hadley Wickham <hadley@rstudio.com>
Diff between devtools versions 1.9.1 dated 2015-09-11 and 1.10.0 dated 2016-01-23
devtools-1.10.0/devtools/DESCRIPTION | 18 devtools-1.10.0/devtools/MD5 | 343 +++++----- devtools-1.10.0/devtools/NAMESPACE | 16 devtools-1.10.0/devtools/NEWS.md |only devtools-1.10.0/devtools/R/R.r | 2 devtools-1.10.0/devtools/R/bash.r | 2 devtools-1.10.0/devtools/R/build-dependencies.R |only devtools-1.10.0/devtools/R/build.r | 20 devtools-1.10.0/devtools/R/check-cran.r | 126 +-- devtools-1.10.0/devtools/R/check-devtools.r | 78 ++ devtools-1.10.0/devtools/R/check-doc.r | 10 devtools-1.10.0/devtools/R/check.r | 34 devtools-1.10.0/devtools/R/compile-dll.r | 24 devtools-1.10.0/devtools/R/create.r | 37 - devtools-1.10.0/devtools/R/decompress.r | 23 devtools-1.10.0/devtools/R/deps.R | 148 +++- devtools-1.10.0/devtools/R/doctor.R | 1 devtools-1.10.0/devtools/R/document.r | 9 devtools-1.10.0/devtools/R/git.R | 4 devtools-1.10.0/devtools/R/github.R | 7 devtools-1.10.0/devtools/R/has-devel.r | 13 devtools-1.10.0/devtools/R/infrastructure-git.R | 21 devtools-1.10.0/devtools/R/infrastructure.R | 161 +++- devtools-1.10.0/devtools/R/install-bitbucket.r | 21 devtools-1.10.0/devtools/R/install-git.r | 58 + devtools-1.10.0/devtools/R/install-github.r | 74 +- devtools-1.10.0/devtools/R/install-local.r | 19 devtools-1.10.0/devtools/R/install-remote.R | 68 + devtools-1.10.0/devtools/R/install-version.r | 17 devtools-1.10.0/devtools/R/install.r | 26 devtools-1.10.0/devtools/R/lint.r | 8 devtools-1.10.0/devtools/R/load-code.r | 4 devtools-1.10.0/devtools/R/load.r | 14 devtools-1.10.0/devtools/R/missing-s3.r | 1 devtools-1.10.0/devtools/R/package.r | 82 +- devtools-1.10.0/devtools/R/path.r | 4 devtools-1.10.0/devtools/R/rcpp-attributes.r | 9 devtools-1.10.0/devtools/R/release.r | 7 devtools-1.10.0/devtools/R/revdep-summarise.R | 18 devtools-1.10.0/devtools/R/revdep.R | 42 - devtools-1.10.0/devtools/R/rtools.r | 32 devtools-1.10.0/devtools/R/run-example.r | 1 devtools-1.10.0/devtools/R/run-examples.r | 2 devtools-1.10.0/devtools/R/run-source.r | 2 devtools-1.10.0/devtools/R/session-info.r | 33 devtools-1.10.0/devtools/R/shims.r | 6 devtools-1.10.0/devtools/R/system.r | 2 devtools-1.10.0/devtools/R/test.r | 19 devtools-1.10.0/devtools/R/uninstall.r | 2 devtools-1.10.0/devtools/R/unload.r | 6 devtools-1.10.0/devtools/R/upload-ftp.r | 2 devtools-1.10.0/devtools/R/utils.r | 54 + devtools-1.10.0/devtools/R/vignette-r.r | 2 devtools-1.10.0/devtools/R/vignettes.r | 2 devtools-1.10.0/devtools/R/with-debug.r | 4 devtools-1.10.0/devtools/R/with.r | 269 +------ devtools-1.10.0/devtools/R/zzz.r | 2 devtools-1.10.0/devtools/README.md | 15 devtools-1.10.0/devtools/build/vignette.rds |binary devtools-1.10.0/devtools/inst/doc/dependencies.html | 60 + devtools-1.10.0/devtools/inst/templates/NEWS.md |only devtools-1.10.0/devtools/inst/templates/appveyor.yml | 3 devtools-1.10.0/devtools/inst/templates/cran-comments.md | 26 devtools-1.10.0/devtools/inst/templates/readme-rmd-pre-commit.sh | 12 devtools-1.10.0/devtools/inst/templates/revdep.R | 1 devtools-1.10.0/devtools/man/RCMD.Rd | 2 devtools-1.10.0/devtools/man/as.package.Rd | 2 devtools-1.10.0/devtools/man/bash.Rd | 2 devtools-1.10.0/devtools/man/build.Rd | 4 devtools-1.10.0/devtools/man/build_github_devtools.Rd | 2 devtools-1.10.0/devtools/man/build_vignettes.Rd | 4 devtools-1.10.0/devtools/man/build_win.Rd | 2 devtools-1.10.0/devtools/man/check.Rd | 4 devtools-1.10.0/devtools/man/check_cran.Rd | 2 devtools-1.10.0/devtools/man/check_dep_version.Rd | 2 devtools-1.10.0/devtools/man/check_failures.Rd | 4 devtools-1.10.0/devtools/man/check_man.Rd |only devtools-1.10.0/devtools/man/clean_dll.Rd | 2 devtools-1.10.0/devtools/man/clean_source.Rd | 2 devtools-1.10.0/devtools/man/clean_vignettes.Rd | 2 devtools-1.10.0/devtools/man/compile_dll.Rd | 2 devtools-1.10.0/devtools/man/compiler_flags.Rd | 2 devtools-1.10.0/devtools/man/create.Rd | 2 devtools-1.10.0/devtools/man/create_description.Rd | 2 devtools-1.10.0/devtools/man/dev_example.Rd | 2 devtools-1.10.0/devtools/man/dev_help.Rd | 2 devtools-1.10.0/devtools/man/dev_meta.Rd | 2 devtools-1.10.0/devtools/man/dev_mode.Rd | 2 devtools-1.10.0/devtools/man/dev_packages.Rd | 2 devtools-1.10.0/devtools/man/devtest.Rd | 2 devtools-1.10.0/devtools/man/devtools-deprecated.Rd | 84 ++ devtools-1.10.0/devtools/man/devtools.Rd | 2 devtools-1.10.0/devtools/man/document.Rd | 4 devtools-1.10.0/devtools/man/dr_devtools.Rd | 2 devtools-1.10.0/devtools/man/dr_github.Rd | 2 devtools-1.10.0/devtools/man/eval_clean.Rd | 2 devtools-1.10.0/devtools/man/find_topic.Rd | 2 devtools-1.10.0/devtools/man/github_pat.Rd | 4 devtools-1.10.0/devtools/man/github_refs.Rd | 2 devtools-1.10.0/devtools/man/has_devel.Rd | 2 devtools-1.10.0/devtools/man/has_tests.Rd | 2 devtools-1.10.0/devtools/man/help.Rd | 2 devtools-1.10.0/devtools/man/imports_env.Rd | 2 devtools-1.10.0/devtools/man/infrastructure.Rd | 23 devtools-1.10.0/devtools/man/inst.Rd | 2 devtools-1.10.0/devtools/man/install.Rd | 20 devtools-1.10.0/devtools/man/install_bitbucket.Rd | 21 devtools-1.10.0/devtools/man/install_deps.Rd | 7 devtools-1.10.0/devtools/man/install_git.Rd | 18 devtools-1.10.0/devtools/man/install_github.Rd | 24 devtools-1.10.0/devtools/man/install_local.Rd | 2 devtools-1.10.0/devtools/man/install_svn.Rd | 10 devtools-1.10.0/devtools/man/install_url.Rd | 10 devtools-1.10.0/devtools/man/install_version.Rd | 10 devtools-1.10.0/devtools/man/is.package.Rd | 2 devtools-1.10.0/devtools/man/lint.Rd | 2 devtools-1.10.0/devtools/man/load_all.Rd | 2 devtools-1.10.0/devtools/man/load_code.Rd | 2 devtools-1.10.0/devtools/man/load_data.Rd | 2 devtools-1.10.0/devtools/man/load_dll.Rd | 2 devtools-1.10.0/devtools/man/load_imports.Rd | 2 devtools-1.10.0/devtools/man/loaded_packages.Rd | 2 devtools-1.10.0/devtools/man/missing_s3.Rd | 2 devtools-1.10.0/devtools/man/ns_env.Rd | 2 devtools-1.10.0/devtools/man/on_path.Rd | 7 devtools-1.10.0/devtools/man/package_deps.Rd | 34 devtools-1.10.0/devtools/man/package_file.Rd |only devtools-1.10.0/devtools/man/parse_deps.Rd | 2 devtools-1.10.0/devtools/man/parse_ns_file.Rd | 2 devtools-1.10.0/devtools/man/path.Rd | 4 devtools-1.10.0/devtools/man/pkg_env.Rd | 2 devtools-1.10.0/devtools/man/r_env_vars.Rd | 2 devtools-1.10.0/devtools/man/release.Rd | 2 devtools-1.10.0/devtools/man/release_checks.Rd | 5 devtools-1.10.0/devtools/man/reload.Rd | 2 devtools-1.10.0/devtools/man/revdep.Rd | 2 devtools-1.10.0/devtools/man/revdep_check.Rd | 6 devtools-1.10.0/devtools/man/run_examples.Rd | 2 devtools-1.10.0/devtools/man/run_pkg_hook.Rd | 2 devtools-1.10.0/devtools/man/session_info.Rd | 2 devtools-1.10.0/devtools/man/setup_rtools.Rd |only devtools-1.10.0/devtools/man/show_news.Rd | 2 devtools-1.10.0/devtools/man/source_gist.Rd | 4 devtools-1.10.0/devtools/man/source_url.Rd | 2 devtools-1.10.0/devtools/man/submit_cran.Rd | 2 devtools-1.10.0/devtools/man/system.file.Rd | 2 devtools-1.10.0/devtools/man/system_check.Rd | 2 devtools-1.10.0/devtools/man/test.Rd | 2 devtools-1.10.0/devtools/man/uninstall.Rd | 12 devtools-1.10.0/devtools/man/unload.Rd | 4 devtools-1.10.0/devtools/man/update_packages.Rd | 2 devtools-1.10.0/devtools/man/use_build_ignore.Rd | 21 devtools-1.10.0/devtools/man/use_data.Rd | 23 devtools-1.10.0/devtools/man/use_data_raw.Rd | 21 devtools-1.10.0/devtools/man/use_git.Rd | 6 devtools-1.10.0/devtools/man/use_git_hook.Rd | 6 devtools-1.10.0/devtools/man/use_github.Rd | 23 devtools-1.10.0/devtools/man/use_github_links.Rd | 6 devtools-1.10.0/devtools/man/use_news_md.Rd |only devtools-1.10.0/devtools/man/use_package.Rd | 23 devtools-1.10.0/devtools/man/use_readme_rmd.Rd | 23 devtools-1.10.0/devtools/man/wd.Rd | 2 devtools-1.10.0/devtools/man/with_debug.Rd | 2 devtools-1.10.0/devtools/tests/testthat/test-build.r |only devtools-1.10.0/devtools/tests/testthat/test-check.r | 2 devtools-1.10.0/devtools/tests/testthat/test-depend.r | 5 devtools-1.10.0/devtools/tests/testthat/test-github.r | 4 devtools-1.10.0/devtools/tests/testthat/test-infrastructure.r | 6 devtools-1.10.0/devtools/tests/testthat/test-install-version.R |only devtools-1.10.0/devtools/tests/testthat/test-load.r | 8 devtools-1.10.0/devtools/tests/testthat/test-remote-metadata.R |only devtools-1.10.0/devtools/tests/testthat/test-remotes.r | 27 devtools-1.10.0/devtools/tests/testthat/test-shim.r | 10 devtools-1.10.0/devtools/tests/testthat/test-uninstall.r | 3 devtools-1.10.0/devtools/tests/testthat/test-update.R |only devtools-1.10.0/devtools/tests/testthat/test-vignettes.r | 8 devtools-1.9.1/devtools/man/check_doc.Rd |only devtools-1.9.1/devtools/man/find_rtools.Rd |only devtools-1.9.1/devtools/man/with_something.Rd |only devtools-1.9.1/devtools/tests/testthat/test-with.r |only 180 files changed, 1701 insertions(+), 1099 deletions(-)