Mon, 07 May 2018

Package rquery updated to version 0.4.3 with previous version 0.4.2 dated 2018-04-05

Title: Relational Query Generator for Data Manipulation at Scale
Description: A 'SQL' query generator based on Edgar F. Codd's relational algebra and experience using 'SQL' and 'dplyr' at big data scale. The design represents an attempt to make 'SQL' more teachable by denoting composition by a sequential pipeline notation instead of nested queries or functions. The implementation delivers reliable high performance data processing on large data systems such as `Spark` and databases. Package features include: data processing trees or pipelines as observable objects (able to report both columns produced and columns used), optimized 'SQL' generation as an explicit user visible modeling step, and convenience methods for applying query trees to in-memory 'data.frame's.
Author: John Mount [aut, cre], Win-Vector LLC [cph]
Maintainer: John Mount <jmount@win-vector.com>

Diff between rquery versions 0.4.2 dated 2018-04-05 and 0.4.3 dated 2018-05-07

 rquery-0.4.2/rquery/man/replace_null_cols.Rd           |only
 rquery-0.4.3/rquery/DESCRIPTION                        |   10 
 rquery-0.4.3/rquery/MD5                                |  163 ++++++----
 rquery-0.4.3/rquery/NAMESPACE                          |   63 +++-
 rquery-0.4.3/rquery/NEWS.md                            |   10 
 rquery-0.4.3/rquery/R/assign_slice.R                   |only
 rquery-0.4.3/rquery/R/db_info.R                        |   26 +
 rquery-0.4.3/rquery/R/dbi_ops.R                        |   17 +
 rquery-0.4.3/rquery/R/drop_columns.R                   |only
 rquery-0.4.3/rquery/R/ex_data_frame.R                  |   69 +++-
 rquery-0.4.3/rquery/R/extend.R                         |   85 ++---
 rquery-0.4.3/rquery/R/if_else_block.R                  |   91 +++++-
 rquery-0.4.3/rquery/R/join_controller.R                |only
 rquery-0.4.3/rquery/R/map_cols.R                       |only
 rquery-0.4.3/rquery/R/materialize.R                    |  106 +++++--
 rquery-0.4.3/rquery/R/natural_join.R                   |   35 +-
 rquery-0.4.3/rquery/R/non_sql_node.R                   |    7 
 rquery-0.4.3/rquery/R/normalize.R                      |only
 rquery-0.4.3/rquery/R/null_replace.R                   |only
 rquery-0.4.3/rquery/R/op_diagram.R                     |only
 rquery-0.4.3/rquery/R/order_by.R                       |   60 +---
 rquery-0.4.3/rquery/R/ordered_select_rows.R            |only
 rquery-0.4.3/rquery/R/project.R                        |   21 -
 rquery-0.4.3/rquery/R/quantile.R                       |    6 
 rquery-0.4.3/rquery/R/relop.R                          |   65 +++-
 rquery-0.4.3/rquery/R/rename.R                         |   45 +--
 rquery-0.4.3/rquery/R/rsummary.R                       |    6 
 rquery-0.4.3/rquery/R/select_columns.R                 |   17 -
 rquery-0.4.3/rquery/R/select_rows.R                    |   54 +--
 rquery-0.4.3/rquery/R/set_indicator.R                  |only
 rquery-0.4.3/rquery/R/sql_expr_set.R                   |   20 -
 rquery-0.4.3/rquery/R/sql_node.R                       |   75 +++--
 rquery-0.4.3/rquery/R/table_source.R                   |   25 -
 rquery-0.4.3/rquery/R/theta_join.R                     |   34 +-
 rquery-0.4.3/rquery/R/tokenize_for_sql.R               |   10 
 rquery-0.4.3/rquery/R/union_all.R                      |only
 rquery-0.4.3/rquery/R/utils.R                          |   47 ++-
 rquery-0.4.3/rquery/R/work_with_NULLs.R                |  109 -------
 rquery-0.4.3/rquery/README.md                          |  252 +++++++++--------
 rquery-0.4.3/rquery/build/vignette.rds                 |binary
 rquery-0.4.3/rquery/inst/doc/AssigmentPartitioner.Rmd  |    4 
 rquery-0.4.3/rquery/inst/doc/AssigmentPartitioner.html |   14 
 rquery-0.4.3/rquery/inst/doc/QueryGeneration.R         |   56 ++-
 rquery-0.4.3/rquery/inst/doc/QueryGeneration.Rmd       |   69 ++--
 rquery-0.4.3/rquery/inst/doc/QueryGeneration.html      |   34 +-
 rquery-0.4.3/rquery/inst/doc/rquery_intro.R            |   28 +
 rquery-0.4.3/rquery/inst/doc/rquery_intro.Rmd          |   68 +++-
 rquery-0.4.3/rquery/inst/doc/rquery_intro.html         |  216 ++++++++++----
 rquery-0.4.3/rquery/man/actualize_join_plan.Rd         |only
 rquery-0.4.3/rquery/man/assign_slice.Rd                |only
 rquery-0.4.3/rquery/man/build_join_plan.Rd             |only
 rquery-0.4.3/rquery/man/count_null_cols.Rd             |    2 
 rquery-0.4.3/rquery/man/dbi_copy_to.Rd                 |    3 
 rquery-0.4.3/rquery/man/dbi_execute.Rd                 |    3 
 rquery-0.4.3/rquery/man/dbi_nrow.Rd                    |    3 
 rquery-0.4.3/rquery/man/dbi_remove_table.Rd            |    3 
 rquery-0.4.3/rquery/man/dbi_table.Rd                   |   11 
 rquery-0.4.3/rquery/man/dbi_table_exists.Rd            |    3 
 rquery-0.4.3/rquery/man/describe_tables.Rd             |only
 rquery-0.4.3/rquery/man/drop_columns.Rd                |only
 rquery-0.4.3/rquery/man/execute.Rd                     |   18 -
 rquery-0.4.3/rquery/man/extend_nse.Rd                  |    6 
 rquery-0.4.3/rquery/man/extend_se.Rd                   |   10 
 rquery-0.4.3/rquery/man/format_node.Rd                 |only
 rquery-0.4.3/rquery/man/graph_join_plan.Rd             |only
 rquery-0.4.3/rquery/man/if_else_block.Rd               |   16 -
 rquery-0.4.3/rquery/man/if_else_op.Rd                  |only
 rquery-0.4.3/rquery/man/inspect_join_plan.Rd           |only
 rquery-0.4.3/rquery/man/key_inspector_all_cols.Rd      |only
 rquery-0.4.3/rquery/man/key_inspector_postgresql.Rd    |only
 rquery-0.4.3/rquery/man/key_inspector_sqlite.Rd        |only
 rquery-0.4.3/rquery/man/map_column_values.Rd           |only
 rquery-0.4.3/rquery/man/mark_null_cols.Rd              |    2 
 rquery-0.4.3/rquery/man/materialize.Rd                 |   22 +
 rquery-0.4.3/rquery/man/materialize_sql_statement.Rd   |    3 
 rquery-0.4.3/rquery/man/natural_join.Rd                |    8 
 rquery-0.4.3/rquery/man/normalize_cols.Rd              |only
 rquery-0.4.3/rquery/man/null_replace.Rd                |only
 rquery-0.4.3/rquery/man/op_diagram.Rd                  |only
 rquery-0.4.3/rquery/man/orderby.Rd                     |    8 
 rquery-0.4.3/rquery/man/pick_top_k.Rd                  |only
 rquery-0.4.3/rquery/man/rename_columns.Rd              |   10 
 rquery-0.4.3/rquery/man/rquery_apply_to_data_frame.Rd  |   22 +
 rquery-0.4.3/rquery/man/select_columns.Rd              |    6 
 rquery-0.4.3/rquery/man/select_rows_nse.Rd             |    6 
 rquery-0.4.3/rquery/man/select_rows_se.Rd              |    6 
 rquery-0.4.3/rquery/man/set_indicator.Rd               |only
 rquery-0.4.3/rquery/man/sql_expr_set.Rd                |    2 
 rquery-0.4.3/rquery/man/table_source.Rd                |    5 
 rquery-0.4.3/rquery/man/theta_join_nse.Rd              |    6 
 rquery-0.4.3/rquery/man/theta_join_se.Rd               |    6 
 rquery-0.4.3/rquery/man/to_sql.Rd                      |    3 
 rquery-0.4.3/rquery/man/topo_sort_tables.Rd            |only
 rquery-0.4.3/rquery/man/unionall.Rd                    |only
 rquery-0.4.3/rquery/tests/testthat/test_names.R        |only
 rquery-0.4.3/rquery/tools/pipe_diagram.png             |only
 rquery-0.4.3/rquery/vignettes/AssigmentPartitioner.Rmd |    4 
 rquery-0.4.3/rquery/vignettes/QueryGeneration.Rmd      |   69 ++--
 rquery-0.4.3/rquery/vignettes/rquery_intro.Rmd         |   68 +++-
 99 files changed, 1508 insertions(+), 843 deletions(-)

More information about rquery at CRAN
Permanent link

Package jtools updated to version 1.0.0 with previous version 0.9.4 dated 2018-02-13

Title: Analysis and Presentation of Social Scientific Data
Description: This is a collection of tools that the author (Jacob) has written for the purpose of more efficiently understanding and sharing the results of (primarily) regression analyses. There are a number of functions focused specifically on the interpretation and presentation of interactions. Just about everything supports models from the survey package.
Author: Jacob A. Long [aut, cre] (<https://orcid.org/0000-0002-1582-6214>)
Maintainer: Jacob A. Long <long.1377@osu.edu>

Diff between jtools versions 0.9.4 dated 2018-02-13 and 1.0.0 dated 2018-05-07

 jtools-0.9.4/jtools/R/ggplot2-exts.R                   |only
 jtools-0.9.4/jtools/man/center_lm.Rd                   |only
 jtools-0.9.4/jtools/man/ggplot2-exts.Rd                |only
 jtools-0.9.4/jtools/man/scale_lm.Rd                    |only
 jtools-0.9.4/jtools/tools                              |only
 jtools-1.0.0/jtools/DESCRIPTION                        |   18 
 jtools-1.0.0/jtools/MD5                                |  156 -
 jtools-1.0.0/jtools/NAMESPACE                          |   61 
 jtools-1.0.0/jtools/NEWS.md                            |  323 ++
 jtools-1.0.0/jtools/R/colors.R                         |only
 jtools-1.0.0/jtools/R/export_summ.R                    |  961 ++++---
 jtools-1.0.0/jtools/R/gscale.R                         |  913 ++-----
 jtools-1.0.0/jtools/R/int_utils.R                      |  904 ++++++-
 jtools-1.0.0/jtools/R/interact_plot.R                  | 2112 ++---------------
 jtools-1.0.0/jtools/R/internal.R                       |  825 ++++++
 jtools-1.0.0/jtools/R/johnson_neyman.R                 |   78 
 jtools-1.0.0/jtools/R/make_predictions.R               |only
 jtools-1.0.0/jtools/R/mer_utils.r                      |  824 ++++--
 jtools-1.0.0/jtools/R/plot_predictions.R               |only
 jtools-1.0.0/jtools/R/scale_lm.R                       |  334 +-
 jtools-1.0.0/jtools/R/simple_slopes.R                  |  614 ++--
 jtools-1.0.0/jtools/R/summ.R                           | 2020 +++++-----------
 jtools-1.0.0/jtools/R/summ_rq.R                        |only
 jtools-1.0.0/jtools/R/svytools.R                       |  141 -
 jtools-1.0.0/jtools/R/theme_apa.R                      |  146 +
 jtools-1.0.0/jtools/R/zzz.R                            |only
 jtools-1.0.0/jtools/README.md                          |  648 +++--
 jtools-1.0.0/jtools/build/vignette.rds                 |binary
 jtools-1.0.0/jtools/inst/CITATION                      |    6 
 jtools-1.0.0/jtools/inst/doc/categorical.R             |    9 
 jtools-1.0.0/jtools/inst/doc/categorical.Rmd           |   19 
 jtools-1.0.0/jtools/inst/doc/categorical.html          |   93 
 jtools-1.0.0/jtools/inst/doc/interactions.R            |   72 
 jtools-1.0.0/jtools/inst/doc/interactions.Rmd          |  272 +-
 jtools-1.0.0/jtools/inst/doc/interactions.html         |  823 +++---
 jtools-1.0.0/jtools/inst/doc/summ.R                    |   43 
 jtools-1.0.0/jtools/inst/doc/summ.Rmd                  |  226 +
 jtools-1.0.0/jtools/inst/doc/summ.html                 |  558 ++--
 jtools-1.0.0/jtools/inst/doc/svycor.html               |   22 
 jtools-1.0.0/jtools/man/cat_plot.Rd                    |  172 +
 jtools-1.0.0/jtools/man/center.Rd                      |only
 jtools-1.0.0/jtools/man/center_mod.Rd                  |only
 jtools-1.0.0/jtools/man/effect_plot.Rd                 |  151 -
 jtools-1.0.0/jtools/man/export_summs.Rd                |   69 
 jtools-1.0.0/jtools/man/figures                        |only
 jtools-1.0.0/jtools/man/glance.summ.Rd                 |    8 
 jtools-1.0.0/jtools/man/gridlines.Rd                   |only
 jtools-1.0.0/jtools/man/gscale.Rd                      |  100 
 jtools-1.0.0/jtools/man/interact_plot.Rd               |  190 -
 jtools-1.0.0/jtools/man/johnson_neyman.Rd              |    8 
 jtools-1.0.0/jtools/man/jtools_colors.Rd               |only
 jtools-1.0.0/jtools/man/make_predictions.Rd            |only
 jtools-1.0.0/jtools/man/make_predictions.brmsfit.Rd    |only
 jtools-1.0.0/jtools/man/make_predictions.merMod.Rd     |only
 jtools-1.0.0/jtools/man/make_predictions.rq.Rd         |only
 jtools-1.0.0/jtools/man/make_predictions.stanreg.Rd    |only
 jtools-1.0.0/jtools/man/pf_sv_test.Rd                  |    6 
 jtools-1.0.0/jtools/man/plot_predictions.Rd            |only
 jtools-1.0.0/jtools/man/plot_summs.Rd                  |   47 
 jtools-1.0.0/jtools/man/probe_interaction.Rd           |    3 
 jtools-1.0.0/jtools/man/scale_mod.Rd                   |only
 jtools-1.0.0/jtools/man/set_summ_defaults.Rd           |only
 jtools-1.0.0/jtools/man/sim_slopes.Rd                  |   92 
 jtools-1.0.0/jtools/man/standardize.Rd                 |only
 jtools-1.0.0/jtools/man/summ.Rd                        |    7 
 jtools-1.0.0/jtools/man/summ.glm.Rd                    |   69 
 jtools-1.0.0/jtools/man/summ.lm.Rd                     |   62 
 jtools-1.0.0/jtools/man/summ.merMod.Rd                 |   92 
 jtools-1.0.0/jtools/man/summ.rq.Rd                     |only
 jtools-1.0.0/jtools/man/summ.svyglm.Rd                 |   53 
 jtools-1.0.0/jtools/man/svycor.Rd                      |   53 
 jtools-1.0.0/jtools/man/svysd.Rd                       |    2 
 jtools-1.0.0/jtools/man/theme_apa.Rd                   |   31 
 jtools-1.0.0/jtools/man/weights_tests.Rd               |    6 
 jtools-1.0.0/jtools/man/wgttest.Rd                     |   10 
 jtools-1.0.0/jtools/tests/testthat/Rplots.pdf          |binary
 jtools-1.0.0/jtools/tests/testthat/brmfit.rds          |only
 jtools-1.0.0/jtools/tests/testthat/rsafit.rds          |only
 jtools-1.0.0/jtools/tests/testthat/test-export-summs.R |  120 
 jtools-1.0.0/jtools/tests/testthat/test-gscale.R       |   34 
 jtools-1.0.0/jtools/tests/testthat/test-jsumm.R        |  122 
 jtools-1.0.0/jtools/tests/testthat/test-misc.R         |  270 +-
 jtools-1.0.0/jtools/tests/testthat/test-quantreg.R     |only
 jtools-1.0.0/jtools/vignettes/categorical.Rmd          |   19 
 jtools-1.0.0/jtools/vignettes/interactions.Rmd         |  272 +-
 jtools-1.0.0/jtools/vignettes/summ.Rmd                 |  226 +
 86 files changed, 8627 insertions(+), 6888 deletions(-)

More information about jtools at CRAN
Permanent link

Package IRISSeismic updated to version 1.4.8 with previous version 1.4.6 dated 2017-07-08

Title: Classes and Methods for Seismic Data Analysis
Description: Provides classes and methods for seismic data analysis. The base classes and methods are inspired by the python code found in the 'ObsPy' python toolbox <https://github.com/obsypy/obspy>. Additional classes and methods support data returned by web services provided by the 'IRIS DMC' <http://service.iris.edu/>.
Author: Jonathan Callahan [aut], Rob Casey [aut], Gillian Sharer [aut, cre], Mary Templeton [aut], Chad Trabant [ctb]
Maintainer: Gillian Sharer <gillian@iris.washington.edu>

Diff between IRISSeismic versions 1.4.6 dated 2017-07-08 and 1.4.8 dated 2018-05-07

 DESCRIPTION                     |    6 
 MD5                             |   62 +-
 R/Class-IrisClient.R            |  740 ++++++++++++-------------------
 R/Class-Stream.R                |   30 -
 R/Class-Trace.R                 |   24 -
 R/spectralUtils.R               |   14 
 build/vignette.rds              |binary
 inst/doc/IRISSeismic-intro.html |  935 ++++++++++++----------------------------
 man/IRISSeismic-package.Rd      |   22 
 man/IrisClient-class.Rd         |    9 
 man/STALTA.Rd                   |    2 
 man/Trace-class.Rd              |    1 
 man/basicStats.Rd               |    4 
 man/envelope.Rd                 |    4 
 man/getAvailability.Rd          |    2 
 man/getDataselect.Rd            |   35 -
 man/getEvent.Rd                 |   16 
 man/getSNCL.Rd                  |   31 -
 man/getTraveltime.Rd            |    4 
 man/hilbert.Rd                  |    4 
 man/noiseModels.Rd              |    4 
 man/rmsVariance.Rd              |    4 
 src/libmseed/ChangeLog          |   27 +
 src/libmseed/genutils.c         |    2 
 src/libmseed/libmseed.h         |    6 
 src/libmseed/libmseed.map       |only
 src/libmseed/lmplatform.c       |    5 
 src/libmseed/msrutils.c         |    2 
 src/libmseed/temp.sh            |only
 src/libmseed/tracelist.c        |    2 
 src/libmseed/traceutils.c       |    2 
 src/libmseed/unpackdata.c       |    6 
 src/parseMiniSEED.c             |    5 
 33 files changed, 795 insertions(+), 1215 deletions(-)

More information about IRISSeismic at CRAN
Permanent link

Package vqtl updated to version 2.0.3 with previous version 2.0.0 dated 2018-02-08

Title: Genome Scans to Accommodate and Target Genetic and Non-Genetic Effects on Trait Variance in Test Crosses
Description: In recognition that there are many factors (genetic loci, macro- genetic factors such as sex, and environmental factors) that influence the extent of environmental variation, the 'vqtl' package conducts genome scans that accommodate and target these factors. The main functions of this package, scanonevar() and scanonevar.perm() take as input a cross object from the popular 'qtl' package.
Author: Robert Corty [aut, cre]
Maintainer: Robert Corty <rcorty@gmail.com>

Diff between vqtl versions 2.0.0 dated 2018-02-08 and 2.0.3 dated 2018-05-07

 DESCRIPTION                             |   12 -
 MD5                                     |   23 +-
 R/scanonevar.boot.R                     |   64 ++++---
 R/scanonevar.perm.R                     |    2 
 R/scanonevar_2.R                        |only
 R/utilts_genetic_data.R                 |   46 ++---
 build/vignette.rds                      |binary
 inst/doc/vqtl_vignette.html             |  285 +++++++++++++++++++++++++++-----
 man/scanonevar.boot.Rd                  |    3 
 man/scanonevar.perm.Rd                  |    2 
 tests/testthat/test-2-scanonevar.R      |    2 
 tests/testthat/test-4-plots.R           |  268 ++++++++++++++++--------------
 tests/testthat/test-5-scanonevar.boot.R |    3 
 13 files changed, 478 insertions(+), 232 deletions(-)

More information about vqtl at CRAN
Permanent link

Package ssgraph updated to version 1.1 with previous version 1.0 dated 2018-04-23

Title: Bayesian Graphical Estimation using Spike-and-Slab Priors
Description: For Bayesian inference in undirected graphical models using spike-and-slab priors, continuous, discrete, and mixed data. The package is implemented the recent improvements in the Bayesian graphical models' literature, including Wang (2015) <doi:10.1214/14-BA916>. To speed up the computations, the computationally intensive tasks of the package are implemented in C++ in parallel using OpenMP.
Author: Reza Mohammadi <https://orcid.org/0000-0001-9538-0648>
Maintainer: Reza Mohammadi <a.mohammadi@uva.nl>

Diff between ssgraph versions 1.0 dated 2018-04-23 and 1.1 dated 2018-05-07

 ssgraph-1.0/ssgraph/man/ssgraph-internal.Rd |only
 ssgraph-1.1/ssgraph/DESCRIPTION             |   15 -
 ssgraph-1.1/ssgraph/MD5                     |   34 ++
 ssgraph-1.1/ssgraph/NAMESPACE               |   22 +
 ssgraph-1.1/ssgraph/NEWS                    |only
 ssgraph-1.1/ssgraph/R/ssgraph.R             |  390 +++++++++++++++++++---------
 ssgraph-1.1/ssgraph/cleanup                 |only
 ssgraph-1.1/ssgraph/configure               |only
 ssgraph-1.1/ssgraph/configure.ac            |only
 ssgraph-1.1/ssgraph/inst                    |only
 ssgraph-1.1/ssgraph/man/plot.ssgraph.Rd     |only
 ssgraph-1.1/ssgraph/man/print.ssgraph.Rd    |only
 ssgraph-1.1/ssgraph/man/ssgraph-package.Rd  |   27 +
 ssgraph-1.1/ssgraph/man/ssgraph.Rd          |   23 +
 ssgraph-1.1/ssgraph/man/summary.ssgraph.Rd  |only
 ssgraph-1.1/ssgraph/src                     |only
 16 files changed, 376 insertions(+), 135 deletions(-)

More information about ssgraph at CRAN
Permanent link

Package blandr updated to version 0.5.0 with previous version 0.4.3 dated 2017-07-26

Title: Bland-Altman Method Comparison
Description: Carries out Bland Altman analyses (also known as a Tukey mean-difference plot) as described by JM Bland and DG Altman in 1986 <doi:10.1016/S0140-6736(86)90837-8>. This package was created in 2015 as existing Bland-Altman analysis functions did not calculate confidence intervals. This package was created to rectify this, and create reproducible plots. It further provides the structures for creating a Jamovi (<https://www.jamovi.org/>) module to allows use of the package functions via an easy to use GUI system.
Author: Deepankar Datta [aut, cre]
Maintainer: Deepankar Datta <deepankardatta@nhs.net>

Diff between blandr versions 0.4.3 dated 2017-07-26 and 0.5.0 dated 2018-05-07

 blandr-0.4.3/blandr/R/blandr.basic.plot.r           |only
 blandr-0.4.3/blandr/R/blandr.display.r              |only
 blandr-0.4.3/blandr/R/blandr.ggplot.r               |only
 blandr-0.4.3/blandr/R/blandr.proportional.bias.r    |only
 blandr-0.4.3/blandr/man/blandr.basic.plot.Rd        |only
 blandr-0.4.3/blandr/man/blandr.display.Rd           |only
 blandr-0.4.3/blandr/man/blandr.ggplot.Rd            |only
 blandr-0.4.3/blandr/man/blandr.proportional.bias.Rd |only
 blandr-0.5.0/blandr/DESCRIPTION                     |   31 
 blandr-0.5.0/blandr/MD5                             |   73 +-
 blandr-0.5.0/blandr/NAMESPACE                       |   22 
 blandr-0.5.0/blandr/NEWS.md                         |   19 
 blandr-0.5.0/blandr/R/blandr.dataset.fibre.r        |only
 blandr-0.5.0/blandr/R/blandr.dataset.load.r         |only
 blandr-0.5.0/blandr/R/blandr.dataset.o2sats.r       |only
 blandr-0.5.0/blandr/R/blandr.dataset.pefr.r         |only
 blandr-0.5.0/blandr/R/blandr.dataset.sbp.r          |only
 blandr-0.5.0/blandr/R/blandr.display.and.draw.r     |   42 -
 blandr-0.5.0/blandr/R/blandr.draw.r                 |   58 +
 blandr-0.5.0/blandr/R/blandr.output.report.r        |only
 blandr-0.5.0/blandr/R/blandr.output.text.r          |only
 blandr-0.5.0/blandr/R/blandr.plot.ggplot.r          |only
 blandr-0.5.0/blandr/R/blandr.plot.normality.r       |only
 blandr-0.5.0/blandr/R/blandr.plot.qq.r              |only
 blandr-0.5.0/blandr/R/blandr.plot.rplot.r           |only
 blandr-0.5.0/blandr/R/blandr.statistics.r           |   84 ++
 blandr-0.5.0/blandr/R/jamovibaanalysis.b.R          |only
 blandr-0.5.0/blandr/R/jamovibaanalysis.h.R          |only
 blandr-0.5.0/blandr/R/jamovibaplothistogram.b.R     |only
 blandr-0.5.0/blandr/R/jamovibaplothistogram.h.R     |only
 blandr-0.5.0/blandr/R/jamovibaplotqq.b.R            |only
 blandr-0.5.0/blandr/R/jamovibaplotqq.h.R            |only
 blandr-0.5.0/blandr/R/jamovibastats.b.R             |only
 blandr-0.5.0/blandr/R/jamovibastats.h.R             |only
 blandr-0.5.0/blandr/README.md                       |   34 -
 blandr-0.5.0/blandr/build/vignette.rds              |binary
 blandr-0.5.0/blandr/inst/CITATION                   |    2 
 blandr-0.5.0/blandr/inst/blandr-report.Rmd          |only
 blandr-0.5.0/blandr/inst/doc/introduction.R         |    2 
 blandr-0.5.0/blandr/inst/doc/introduction.Rmd       |    4 
 blandr-0.5.0/blandr/inst/doc/introduction.html      |  636 ++++++++++++++------
 blandr-0.5.0/blandr/man/blandr.dataset.fibre.Rd     |only
 blandr-0.5.0/blandr/man/blandr.dataset.load.Rd      |only
 blandr-0.5.0/blandr/man/blandr.dataset.o2sats.Rd    |only
 blandr-0.5.0/blandr/man/blandr.dataset.pefr.Rd      |only
 blandr-0.5.0/blandr/man/blandr.dataset.sbp.Rd       |only
 blandr-0.5.0/blandr/man/blandr.draw.Rd              |   23 
 blandr-0.5.0/blandr/man/blandr.output.report.Rd     |only
 blandr-0.5.0/blandr/man/blandr.output.text.Rd       |only
 blandr-0.5.0/blandr/man/blandr.plot.ggplot.Rd       |only
 blandr-0.5.0/blandr/man/blandr.plot.normality.Rd    |only
 blandr-0.5.0/blandr/man/blandr.plot.qq.Rd           |only
 blandr-0.5.0/blandr/man/blandr.plot.rplot.Rd        |only
 blandr-0.5.0/blandr/man/blandr.statistics.Rd        |   14 
 blandr-0.5.0/blandr/man/jamoviBAanalysis.Rd         |only
 blandr-0.5.0/blandr/man/jamoviBAplotHistogram.Rd    |only
 blandr-0.5.0/blandr/man/jamoviBAplotQQ.Rd           |only
 blandr-0.5.0/blandr/man/jamoviBAstats.Rd            |only
 blandr-0.5.0/blandr/vignettes/introduction.Rmd      |    4 
 59 files changed, 759 insertions(+), 289 deletions(-)

More information about blandr at CRAN
Permanent link

Package BayesFactor updated to version 0.9.12-4 with previous version 0.9.12-2 dated 2015-09-19

Title: Computation of Bayes Factors for Common Designs
Description: A suite of functions for computing various Bayes factors for simple designs, including contingency tables, one- and two-sample designs, one-way designs, general ANOVA designs, and linear regression.
Author: Richard D. Morey [aut, cre], Jeffrey N. Rouder [aut], Tahira Jamil [ctb]
Maintainer: Richard D. Morey <richarddmorey@gmail.com>

Diff between BayesFactor versions 0.9.12-2 dated 2015-09-19 and 0.9.12-4 dated 2018-05-07

 BayesFactor-0.9.12-2/BayesFactor/.Rinstignore                         |only
 BayesFactor-0.9.12-4/BayesFactor/DESCRIPTION                          |   15 
 BayesFactor-0.9.12-4/BayesFactor/MD5                                  |  251 ++++---
 BayesFactor-0.9.12-4/BayesFactor/NAMESPACE                            |   13 
 BayesFactor-0.9.12-4/BayesFactor/NEWS                                 |   22 
 BayesFactor-0.9.12-4/BayesFactor/R/BayesFactorPCL-package.R           |   42 -
 BayesFactor-0.9.12-4/BayesFactor/R/RcppExports.R                      |   56 +
 BayesFactor-0.9.12-4/BayesFactor/R/aaClasses.R                        |   58 -
 BayesFactor-0.9.12-4/BayesFactor/R/aaGenerics.R                       |  107 +--
 BayesFactor-0.9.12-4/BayesFactor/R/anovaBF-utility.R                  |   15 
 BayesFactor-0.9.12-4/BayesFactor/R/anovaBF.R                          |  212 +++---
 BayesFactor-0.9.12-4/BayesFactor/R/base64.R                           |only
 BayesFactor-0.9.12-4/BayesFactor/R/checkCallback.R                    |    2 
 BayesFactor-0.9.12-4/BayesFactor/R/checking.R                         |   55 -
 BayesFactor-0.9.12-4/BayesFactor/R/common.R                           |  207 ++++--
 BayesFactor-0.9.12-4/BayesFactor/R/contingency-utility.R              |  136 ++--
 BayesFactor-0.9.12-4/BayesFactor/R/contingency.R                      |   98 +-
 BayesFactor-0.9.12-4/BayesFactor/R/correlation-JASP.R                 |only
 BayesFactor-0.9.12-4/BayesFactor/R/correlation-utility.R              |only
 BayesFactor-0.9.12-4/BayesFactor/R/correlationBF.R                    |only
 BayesFactor-0.9.12-4/BayesFactor/R/gaussApproxAOV.R                   |   28 
 BayesFactor-0.9.12-4/BayesFactor/R/generalTest-utility.R              |   67 +-
 BayesFactor-0.9.12-4/BayesFactor/R/generalTestBF.R                    |   98 +-
 BayesFactor-0.9.12-4/BayesFactor/R/linearReg_R2stat.R                 |   44 -
 BayesFactor-0.9.12-4/BayesFactor/R/lmBF.R                             |   54 -
 BayesFactor-0.9.12-4/BayesFactor/R/logMean.R                          |    4 
 BayesFactor-0.9.12-4/BayesFactor/R/meta-ttest-utility.R               |   68 +-
 BayesFactor-0.9.12-4/BayesFactor/R/meta.ttestBF.R                     |   84 +-
 BayesFactor-0.9.12-4/BayesFactor/R/methods-BFBayesFactor.R            |  102 +--
 BayesFactor-0.9.12-4/BayesFactor/R/methods-BFBayesFactorTop.R         |   28 
 BayesFactor-0.9.12-4/BayesFactor/R/methods-BFlinearModel-compare.R    |   45 -
 BayesFactor-0.9.12-4/BayesFactor/R/methods-BFmodel.R                  |  192 +++--
 BayesFactor-0.9.12-4/BayesFactor/R/methods-BFmodelSample.R            |   81 +-
 BayesFactor-0.9.12-4/BayesFactor/R/methods-BFodds.R                   |   92 +-
 BayesFactor-0.9.12-4/BayesFactor/R/methods-BFprobability.R            |   54 -
 BayesFactor-0.9.12-4/BayesFactor/R/model.matrix.R                     |   40 -
 BayesFactor-0.9.12-4/BayesFactor/R/nWayAOV-utility.R                  |  207 +++---
 BayesFactor-0.9.12-4/BayesFactor/R/nWayAOV.R                          |  173 ++---
 BayesFactor-0.9.12-4/BayesFactor/R/newPriorOdds.R                     |    6 
 BayesFactor-0.9.12-4/BayesFactor/R/onAttach.R                         |   16 
 BayesFactor-0.9.12-4/BayesFactor/R/plot-BFBayesFactor.R               |   66 +-
 BayesFactor-0.9.12-4/BayesFactor/R/plot-BFBayesFactorTop.R            |   56 -
 BayesFactor-0.9.12-4/BayesFactor/R/proportion-utility.R               |   59 +
 BayesFactor-0.9.12-4/BayesFactor/R/proportionBF.R                     |   69 +-
 BayesFactor-0.9.12-4/BayesFactor/R/regressionBF-utility.R             |   52 -
 BayesFactor-0.9.12-4/BayesFactor/R/regressionBF.R                     |   94 +-
 BayesFactor-0.9.12-4/BayesFactor/R/ttest-informed-JASP.R              |only
 BayesFactor-0.9.12-4/BayesFactor/R/ttest-utility.R                    |    4 
 BayesFactor-0.9.12-4/BayesFactor/R/ttestBF.R                          |  114 +--
 BayesFactor-0.9.12-4/BayesFactor/R/ttest_tstat.R                      |   58 -
 BayesFactor-0.9.12-4/BayesFactor/R/version.R                          |    2 
 BayesFactor-0.9.12-4/BayesFactor/build/vignette.rds                   |binary
 BayesFactor-0.9.12-4/BayesFactor/inst/doc/compare_lme4.R              |    1 
 BayesFactor-0.9.12-4/BayesFactor/inst/doc/compare_lme4.Rmd            |    2 
 BayesFactor-0.9.12-4/BayesFactor/inst/doc/compare_lme4.html           |   43 -
 BayesFactor-0.9.12-4/BayesFactor/inst/doc/manual.R                    |   23 
 BayesFactor-0.9.12-4/BayesFactor/inst/doc/manual.Rmd                  |   84 ++
 BayesFactor-0.9.12-4/BayesFactor/inst/doc/manual.html                 |  329 ++++++----
 BayesFactor-0.9.12-4/BayesFactor/inst/doc/odds_probs.Rmd              |    2 
 BayesFactor-0.9.12-4/BayesFactor/inst/doc/odds_probs.html             |    6 
 BayesFactor-0.9.12-4/BayesFactor/inst/doc/priors.R                    |    1 
 BayesFactor-0.9.12-4/BayesFactor/inst/doc/priors.Rmd                  |    1 
 BayesFactor-0.9.12-4/BayesFactor/inst/doc/priors.html                 |    4 
 BayesFactor-0.9.12-4/BayesFactor/inst/include                         |only
 BayesFactor-0.9.12-4/BayesFactor/inst/tests/test-anovaBF.R            |    7 
 BayesFactor-0.9.12-4/BayesFactor/inst/tests/test-contingencyBF.R      |only
 BayesFactor-0.9.12-4/BayesFactor/inst/tests/test-correlationBF.R      |only
 BayesFactor-0.9.12-4/BayesFactor/inst/tests/test-generalTestBF.R      |only
 BayesFactor-0.9.12-4/BayesFactor/inst/tests/test-proportionBF.R       |only
 BayesFactor-0.9.12-4/BayesFactor/inst/tests/test-regressionBF.R       |only
 BayesFactor-0.9.12-4/BayesFactor/inst/tests/test-specialchars.R       |only
 BayesFactor-0.9.12-4/BayesFactor/inst/tests/test-ttest.R              |only
 BayesFactor-0.9.12-4/BayesFactor/man/BFBayesFactor-class.Rd           |   16 
 BayesFactor-0.9.12-4/BayesFactor/man/BFBayesFactorList-class.Rd       |    7 
 BayesFactor-0.9.12-4/BayesFactor/man/BFInfo.Rd                        |    3 
 BayesFactor-0.9.12-4/BayesFactor/man/BFManual.Rd                      |    3 
 BayesFactor-0.9.12-4/BayesFactor/man/BFodds-class.Rd                  |    9 
 BayesFactor-0.9.12-4/BayesFactor/man/BFprobability-class.Rd           |    7 
 BayesFactor-0.9.12-4/BayesFactor/man/BayesFactor-package.Rd           |   21 
 BayesFactor-0.9.12-4/BayesFactor/man/anovaBF.Rd                       |   11 
 BayesFactor-0.9.12-4/BayesFactor/man/as.BFBayesFactor.Rd              |    9 
 BayesFactor-0.9.12-4/BayesFactor/man/as.BFprobability.Rd              |    3 
 BayesFactor-0.9.12-4/BayesFactor/man/compare-methods.Rd               |   16 
 BayesFactor-0.9.12-4/BayesFactor/man/contingencyTableBF.Rd            |   12 
 BayesFactor-0.9.12-4/BayesFactor/man/correlationBF.Rd                 |only
 BayesFactor-0.9.12-4/BayesFactor/man/enumerateGeneralModels.Rd        |    3 
 BayesFactor-0.9.12-4/BayesFactor/man/extractBF-methods.Rd             |    3 
 BayesFactor-0.9.12-4/BayesFactor/man/extractOdds-methods.Rd           |    3 
 BayesFactor-0.9.12-4/BayesFactor/man/extractProbabilities-methods.Rd  |    3 
 BayesFactor-0.9.12-4/BayesFactor/man/filterBF.Rd                      |    3 
 BayesFactor-0.9.12-4/BayesFactor/man/generalTestBF.Rd                 |   12 
 BayesFactor-0.9.12-4/BayesFactor/man/grapes-same-grapes.Rd            |    3 
 BayesFactor-0.9.12-4/BayesFactor/man/grapes-termin-grapes.Rd          |    3 
 BayesFactor-0.9.12-4/BayesFactor/man/linearReg.R2stat.Rd              |   13 
 BayesFactor-0.9.12-4/BayesFactor/man/lmBF.Rd                          |   11 
 BayesFactor-0.9.12-4/BayesFactor/man/logMeanExpLogs.Rd                |   13 
 BayesFactor-0.9.12-4/BayesFactor/man/meta.ttestBF.Rd                  |    9 
 BayesFactor-0.9.12-4/BayesFactor/man/model-classes.Rd                 |   10 
 BayesFactor-0.9.12-4/BayesFactor/man/model.matrix-methods.Rd          |    6 
 BayesFactor-0.9.12-4/BayesFactor/man/nWayAOV.Rd                       |   18 
 BayesFactor-0.9.12-4/BayesFactor/man/newPriorOdds.Rd                  |    3 
 BayesFactor-0.9.12-4/BayesFactor/man/oneWayAOV.Fstat.Rd               |   17 
 BayesFactor-0.9.12-4/BayesFactor/man/options-BayesFactor.Rd           |   11 
 BayesFactor-0.9.12-4/BayesFactor/man/plot.BFBayesFactor.Rd            |   10 
 BayesFactor-0.9.12-4/BayesFactor/man/plot.BFBayesFactorTop.Rd         |    3 
 BayesFactor-0.9.12-4/BayesFactor/man/posterior-methods.Rd             |   17 
 BayesFactor-0.9.12-4/BayesFactor/man/priorLogodds-method.Rd           |    3 
 BayesFactor-0.9.12-4/BayesFactor/man/priorOdds-method.Rd              |    3 
 BayesFactor-0.9.12-4/BayesFactor/man/proportionBF.Rd                  |    9 
 BayesFactor-0.9.12-4/BayesFactor/man/puzzles.Rd                       |    6 
 BayesFactor-0.9.12-4/BayesFactor/man/raceDolls.Rd                     |    4 
 BayesFactor-0.9.12-4/BayesFactor/man/recompute-methods.Rd             |   35 -
 BayesFactor-0.9.12-4/BayesFactor/man/regressionBF.Rd                  |   12 
 BayesFactor-0.9.12-4/BayesFactor/man/ttest.tstat.Rd                   |   11 
 BayesFactor-0.9.12-4/BayesFactor/man/ttestBF.Rd                       |    9 
 BayesFactor-0.9.12-4/BayesFactor/src/RcppCallback.cpp                 |    1 
 BayesFactor-0.9.12-4/BayesFactor/src/RcppExports.cpp                  |  310 ++++++---
 BayesFactor-0.9.12-4/BayesFactor/src/bfcommon.h                       |    9 
 BayesFactor-0.9.12-4/BayesFactor/src/corr.cpp                         |only
 BayesFactor-0.9.12-4/BayesFactor/src/dinvgamma.cpp                    |    2 
 BayesFactor-0.9.12-4/BayesFactor/src/genhypergeo_series_pos.cpp       |only
 BayesFactor-0.9.12-4/BayesFactor/src/interruptable_progress_monitor.h |    2 
 BayesFactor-0.9.12-4/BayesFactor/src/interrupts.h                     |    2 
 BayesFactor-0.9.12-4/BayesFactor/src/jzs_Gauss_approx_aov.cpp         |    1 
 BayesFactor-0.9.12-4/BayesFactor/src/jzs_Gibbs.cpp                    |    1 
 BayesFactor-0.9.12-4/BayesFactor/src/jzs_bf_samplers.cpp              |    1 
 BayesFactor-0.9.12-4/BayesFactor/src/logRepresentedReal.cpp           |    2 
 BayesFactor-0.9.12-4/BayesFactor/src/logUtility.cpp                   |    1 
 BayesFactor-0.9.12-4/BayesFactor/src/progress.cpp                     |    1 
 BayesFactor-0.9.12-4/BayesFactor/src/progress.h                       |    3 
 BayesFactor-0.9.12-4/BayesFactor/src/rmvnorm.cpp                      |    1 
 BayesFactor-0.9.12-4/BayesFactor/vignettes/compare_lme4.Rmd           |    2 
 BayesFactor-0.9.12-4/BayesFactor/vignettes/manual.Rmd                 |   84 ++
 BayesFactor-0.9.12-4/BayesFactor/vignettes/odds_probs.Rmd             |    2 
 BayesFactor-0.9.12-4/BayesFactor/vignettes/priors.Rmd                 |    1 
 135 files changed, 2645 insertions(+), 2013 deletions(-)

More information about BayesFactor at CRAN
Permanent link

Package pre updated to version 0.5.0 with previous version 0.4-1 dated 2018-01-23

Title: Prediction Rule Ensembles
Description: Derives prediction rule ensembles (PREs). Largely follows the procedure for deriving PREs as described in Friedman & Popescu (2008; <DOI:10.1214/07-AOAS148>), with adjustments and improvements. The main function pre() derives prediction rule ensembles consisting of rules and/or linear terms for continuous, binary, count, multinomial, and multivariate continuous responses. Function gpe() derives generalized prediction ensembles, consisting of rules, hinge and linear functions of the predictor variables.
Author: Marjolein Fokkema [aut, cre], Benjamin Christoffersen [aut]
Maintainer: Marjolein Fokkema <m.fokkema@fsw.leidenuniv.nl>

Diff between pre versions 0.4-1 dated 2018-01-23 and 0.5.0 dated 2018-05-07

 pre-0.4-1/pre/R/partykit_utils.R                                                        |only
 pre-0.5.0/pre/DESCRIPTION                                                               |   24 
 pre-0.5.0/pre/MD5                                                                       |   88 
 pre-0.5.0/pre/NAMESPACE                                                                 |   67 
 pre-0.5.0/pre/NEWS                                                                      |   32 
 pre-0.5.0/pre/R/data.R                                                                  |    2 
 pre-0.5.0/pre/R/gpe.R                                                                   |  163 
 pre-0.5.0/pre/R/gpe_miscs.R                                                             |   13 
 pre-0.5.0/pre/R/pre.R                                                                   | 1873 +++++++---
 pre-0.5.0/pre/R/utils.R                                                                 |only
 pre-0.5.0/pre/README.md                                                                 |   63 
 pre-0.5.0/pre/data/carrillo.RData                                                       |binary
 pre-0.5.0/pre/inst/README-figures/README-unnamed-chunk-9-1.png                          |binary
 pre-0.5.0/pre/man/bsnullinteract.Rd                                                     |   13 
 pre-0.5.0/pre/man/carrillo.Rd                                                           |    2 
 pre-0.5.0/pre/man/coef.gpe.Rd                                                           |only
 pre-0.5.0/pre/man/coef.pre.Rd                                                           |   23 
 pre-0.5.0/pre/man/corplot.Rd                                                            |   25 
 pre-0.5.0/pre/man/cvpre.Rd                                                              |   17 
 pre-0.5.0/pre/man/gpe.Rd                                                                |   70 
 pre-0.5.0/pre/man/gpe_rules_pre.Rd                                                      |only
 pre-0.5.0/pre/man/gpe_trees.Rd                                                          |    2 
 pre-0.5.0/pre/man/importance.Rd                                                         |   17 
 pre-0.5.0/pre/man/interact.Rd                                                           |    7 
 pre-0.5.0/pre/man/maxdepth_sampler.Rd                                                   |only
 pre-0.5.0/pre/man/pairplot.Rd                                                           |    3 
 pre-0.5.0/pre/man/pre.Rd                                                                |  168 
 pre-0.5.0/pre/man/predict.gpe.Rd                                                        |    2 
 pre-0.5.0/pre/man/predict.pre.Rd                                                        |   27 
 pre-0.5.0/pre/man/print.gpe.Rd                                                          |only
 pre-0.5.0/pre/man/print.pre.Rd                                                          |   26 
 pre-0.5.0/pre/man/singleplot.Rd                                                         |    3 
 pre-0.5.0/pre/tests/testthat/previous_results/PimaIndiansDiabetes_w_pre_LR.RDS          |binary
 pre-0.5.0/pre/tests/testthat/previous_results/PimaIndiansDiabetes_w_pre_no_LR.RDS       |binary
 pre-0.5.0/pre/tests/testthat/previous_results/airquality_w_bsnullinteract.RDS           |binary
 pre-0.5.0/pre/tests/testthat/previous_results/airquality_w_inter.RDS                    |binary
 pre-0.5.0/pre/tests/testthat/previous_results/airquality_w_pre.RDS                      |binary
 pre-0.5.0/pre/tests/testthat/previous_results/airquality_w_pre_without_LR.RDS           |binary
 pre-0.5.0/pre/tests/testthat/previous_results/airquality_w_pre_without_linear_terms.RDS |binary
 pre-0.5.0/pre/tests/testthat/previous_results/gpe_airquality_print_output.RDS           |binary
 pre-0.5.0/pre/tests/testthat/previous_results/gpe_airquality_print_output_earth.RDS     |binary
 pre-0.5.0/pre/tests/testthat/previous_results/gpe_airquality_print_output_linear.RDS    |binary
 pre-0.5.0/pre/tests/testthat/previous_results/iris_w_pre.RDS                            |only
 pre-0.5.0/pre/tests/testthat/previous_results/iris_w_pre_no_learn.RDS                   |only
 pre-0.5.0/pre/tests/testthat/previous_results/iris_w_pre_no_learn_par.RDS               |only
 pre-0.5.0/pre/tests/testthat/previous_results/maxdepths_16_term_nodes.RDS               |only
 pre-0.5.0/pre/tests/testthat/previous_results/maxdepths_default.RDS                     |only
 pre-0.5.0/pre/tests/testthat/previous_results/maxdepths_tree_depth_7.RDS                |only
 pre-0.5.0/pre/tests/testthat/test_gpe.R                                                 |   32 
 pre-0.5.0/pre/tests/testthat/test_pre_misc.R                                            |   26 
 pre-0.5.0/pre/tests/testthat/tests_pre.R                                                |   54 
 51 files changed, 1896 insertions(+), 946 deletions(-)

More information about pre at CRAN
Permanent link

Package FlowScreen updated to version 1.2.5 with previous version 1.2.4 dated 2017-11-19

Title: Daily Streamflow Trend and Change Point Screening
Description: Screens daily streamflow time series for temporal trends and change-points. This package has been primarily developed for assessing the quality of daily streamflow time series. It also contains tools for plotting and calculating many different streamflow metrics. The package can be used to produce summary screening plots showing change-points and significant temporal trends for high flow, low flow, and/or baseflow statistics, or it can be used to perform more detailed hydrological time series analyses. The package was designed for screening daily streamflow time series from Water Survey Canada and the United States Geological Survey but will also work with streamflow time series from many other agencies.
Author: Jennifer Dierauer [aut, cre], Paul Whitfield [aut]
Maintainer: Jennifer Dierauer <jen.r.brand@gmail.com>

Diff between FlowScreen versions 1.2.4 dated 2017-11-19 and 1.2.5 dated 2018-05-07

 DESCRIPTION                    |   10 ++--
 MD5                            |   98 ++++++++++++++++++++---------------------
 R/create.ts.r                  |    3 +
 R/dr.seas.R                    |   23 +++++----
 R/hyear.internal.r             |   16 +++++-
 R/metrics.all.R                |   32 ++++++++++---
 R/pk.bf.stats.R                |   73 ++++++++++++------------------
 R/pk.cov.R                     |   66 ++++++++++-----------------
 R/pks.R                        |   17 ++++---
 man/FDC.Rd                     |    7 +-
 man/FlowScreen.Rd              |    4 -
 man/MAMn.Rd                    |    7 +-
 man/NA.runs.Rd                 |    7 +-
 man/NA.sum.Rd                  |    7 +-
 man/Qn.Rd                      |    1 
 man/YMD.internal.Rd            |    1 
 man/axis_doy.internal.Rd       |    1 
 man/bf.seas.Rd                 |    7 +-
 man/bf.stats.Rd                |    1 
 man/bf_boughton.Rd             |    7 +-
 man/bf_eckhardt.Rd             |    7 +-
 man/bf_oneparam.Rd             |    7 +-
 man/cania.sub.ts.Rd            |    1 
 man/caniapiscau.Rd             |    1 
 man/caniapiscau.res.Rd         |    1 
 man/create.ts.Rd               |    1 
 man/dr.events.Rd               |    7 +-
 man/dr.pds.Rd                  |    7 +-
 man/dr.seas.Rd                 |    7 +-
 man/get.station.internal.Rd    |    1 
 man/get.titles.internal.Rd     |    1 
 man/hyear.internal.Rd          |    3 -
 man/metrics.all.Rd             |    7 +-
 man/mqt.Rd                     |    7 +-
 man/pk.bf.stats.Rd             |    1 
 man/pk.cov.Rd                  |    1 
 man/pk.max.Rd                  |    7 +-
 man/pk.max.doy.Rd              |    7 +-
 man/pks.Rd                     |    1 
 man/pks.dur.Rd                 |    1 
 man/read.flows.Rd              |    1 
 man/regime.Rd                  |    1 
 man/screen.cpts.Rd             |    7 +-
 man/screen.frames.Rd           |    1 
 man/screen.frames.internal.Rd  |    1 
 man/screen.metric.Rd           |    7 +-
 man/screen.series.Rd           |    1 
 man/screen.summary.Rd          |    7 +-
 man/screen.summary.internal.Rd |    1 
 man/station.info.Rd            |    1 
 50 files changed, 230 insertions(+), 262 deletions(-)

More information about FlowScreen at CRAN
Permanent link

Package wrassp updated to version 0.1.7 with previous version 0.1.6 dated 2018-01-19

Title: Interface to the 'ASSP' Library
Description: A wrapper around Michel Scheffers's 'libassp' (<http://libassp.sourceforge.net/>). The 'libassp' (Advanced Speech Signal Processor) library aims at providing functionality for handling speech signal files in most common audio formats and for performing analyses common in phonetic science/speech science. This includes the calculation of formants, fundamental frequency, root mean square, auto correlation, a variety of spectral analyses, zero crossing rate, filtering etc. This wrapper provides R with a large subset of 'libassp's signal processing functions and provides them to the user in a (hopefully) user-friendly manner.
Author: Raphael Winkelmann [aut, cre], Lasse Bombien [aut], Michel Scheffers [aut]
Maintainer: Raphael Winkelmann <raphael@phonetik.uni-muenchen.de>

Diff between wrassp versions 0.1.6 dated 2018-01-19 and 0.1.7 dated 2018-05-07

 wrassp-0.1.6/wrassp/R/AsspChecks.R             |only
 wrassp-0.1.7/wrassp/DESCRIPTION                |    6 
 wrassp-0.1.7/wrassp/MD5                        |   18 
 wrassp-0.1.7/wrassp/NEWS.md                    |    6 
 wrassp-0.1.7/wrassp/R/asspChecks.R             |only
 wrassp-0.1.7/wrassp/build/vignette.rds         |binary
 wrassp-0.1.7/wrassp/inst/doc/wrassp_intro.html |  468 ++++++++++++++++++-------
 wrassp-0.1.7/wrassp/man/isAsspLpType.Rd        |    2 
 wrassp-0.1.7/wrassp/man/isAsspSpectType.Rd     |    2 
 wrassp-0.1.7/wrassp/man/isAsspWindowType.Rd    |    2 
 wrassp-0.1.7/wrassp/src/assp/numdecim.c        |    2 
 11 files changed, 361 insertions(+), 145 deletions(-)

More information about wrassp at CRAN
Permanent link

Package rpf updated to version 0.59 with previous version 0.56.2 dated 2018-05-06

Title: Response Probability Functions
Description: The purpose of this package is to factor out logic and math common to Item Factor Analysis fitting, diagnostics, and analysis. It is envisioned as core support code suitable for more specialized IRT packages to build upon. Complete access to optimized C functions are made available with R_RegisterCCallable().
Author: Joshua Pritikin [cre, aut], Jonathan Weeks [ctb], Li Cai [ctb], Carrie Houts [ctb], Phil Chalmers [ctb], Michael D. Hunter [ctb], Carl F. Falk [ctb]
Maintainer: ORPHANED

Diff between rpf versions 0.56.2 dated 2018-05-06 and 0.59 dated 2018-05-07

 rpf-0.56.2/rpf/configure                  |only
 rpf-0.59/rpf/DESCRIPTION                  |   15 ++-----
 rpf-0.59/rpf/MD5                          |   25 ++++++-------
 rpf-0.59/rpf/build/vignette.rds           |binary
 rpf-0.59/rpf/inst/doc/customitem.Rmd      |    2 -
 rpf-0.59/rpf/inst/doc/customitem.html     |    2 -
 rpf-0.59/rpf/inst/doc/diagnostics.html    |   57 ++++++++++++++----------------
 rpf-0.59/rpf/inst/doc/flexmirt-plots.Rmd  |    2 -
 rpf-0.59/rpf/inst/doc/flexmirt-plots.html |    7 +--
 rpf-0.59/rpf/src/Makevars                 |    2 -
 rpf-0.59/rpf/src/ba81quad.cpp             |    2 -
 rpf-0.59/rpf/src/diagnose.cpp             |    6 +--
 rpf-0.59/rpf/vignettes/customitem.Rmd     |    2 -
 rpf-0.59/rpf/vignettes/flexmirt-plots.Rmd |    2 -
 14 files changed, 55 insertions(+), 69 deletions(-)

More information about rpf at CRAN
Permanent link

Package nardl updated to version 0.1.5 with previous version 0.1.4 dated 2018-04-17

Title: Nonlinear Cointegrating Autoregressive Distributed Lag Model
Description: Computes the nonlinear cointegrating autoregressive distributed lag model with p lags of the dependent variables and q lags of independent variables proposed by (Shin, Yu & Greenwood-Nimmo, 2014 <doi:10.1007/978-1-4899-8008-3_9>).
Author: Taha Zaghdoudi
Maintainer: Taha Zaghdoudi <zedtaha@gmail.com>

Diff between nardl versions 0.1.4 dated 2018-04-17 and 0.1.5 dated 2018-05-07

 DESCRIPTION               |    8 ++++----
 MD5                       |   16 +++++++++-------
 NAMESPACE                 |    3 ++-
 R/dynmplier.R             |   16 +++++++---------
 R/helperfunctions_nardl.R |   41 ++++++++++++++++++++++++++++++++++++-----
 R/nardl.R                 |   12 +++++++-----
 man/ArchTest.Rd           |    4 +++-
 man/Nardl-package.Rd      |    4 ++--
 man/cumsq.Rd              |only
 man/cusum.Rd              |only
 10 files changed, 70 insertions(+), 34 deletions(-)

More information about nardl at CRAN
Permanent link

Package CRF updated to version 0.3-16 with previous version 0.3-15 dated 2018-05-06

Title: Conditional Random Fields
Description: Implements modeling and computational tools for conditional random fields (CRF) model as well as other probabilistic undirected graphical models of discrete data with pairwise and unary potentials.
Author: Ling-Yun Wu [aut, cre]
Maintainer: Ling-Yun Wu <wulingyun@gmail.com>

Diff between CRF versions 0.3-15 dated 2018-05-06 and 0.3-16 dated 2018-05-07

 DESCRIPTION           |   12 ++++++------
 MD5                   |   22 +++++++++++-----------
 R/decode.R            |    7 +++++++
 data/Chain.RData      |binary
 data/Clique.RData     |binary
 data/Loop.RData       |binary
 data/Small.RData      |binary
 data/Tree.RData       |binary
 inst/doc/Tutorial.pdf |binary
 man/decode.ilp.Rd     |    2 ++
 src/CRF.cpp           |    3 ++-
 tests/test.decode.R   |   20 +++++++++++++-------
 12 files changed, 41 insertions(+), 25 deletions(-)

More information about CRF at CRAN
Permanent link

Package aftgee updated to version 1.1-1 with previous version 1.1-0 dated 2018-04-21

Title: Accelerated Failure Time Model with Generalized Estimating Equations
Description: A collection of methods for both the rank-based estimates and least square estimates to the Accelerated Failure Time (AFT) model. For rank-based estimation, it provides approaches that include the computationally efficient Gehan's weight and the general's weight such as the logrank weight. Details of the rank-based estimation can be found in Chiou et al. (2014) <doi:10.1007/s11222-013-9388-2> and Chiou et al. (2015) <doi:10.1002/sim.6415>. For the least-square estimation, the estimating equation is solved with Generalized Estimating Equations (GEE). Moreover, in multivariate cases, the dependence working correlation structure can be specified in GEE's setting. Details on the least-squares estimation can be found in Chiou et al. (2014) <doi:10.1007/s10985-014-9292-x>.
Author: Sy Han (Steven) Chiou, Sangwook Kang, Jun Yan
Maintainer: Sy Han (Steven) Chiou <schiou@utdallas.edu>

Diff between aftgee versions 1.1-0 dated 2018-04-21 and 1.1-1 dated 2018-05-07

 DESCRIPTION |    8 ++++----
 MD5         |    4 ++--
 R/aftsrr.R  |    6 ++++--
 3 files changed, 10 insertions(+), 8 deletions(-)

More information about aftgee at CRAN
Permanent link

Package HEMDAG updated to version 2.1.2 with previous version 2.0.1 dated 2018-02-02

Title: Hierarchical Ensemble Methods for Directed Acyclic Graphs
Description: An implementation of Hierarchical Ensemble Methods for Directed Acyclic Graphs (DAGs). The 'HEMDAG' package can be used to enhance the predictions of virtually any flat learning methods, by taking into account the hierarchical nature of the classes of a bio-ontology. 'HEMDAG' is specifically designed for exploiting the hierarchical relationships of DAG-structured taxonomies, such as the Human Phenotype Ontology (HPO) or the Gene Ontology (GO), but it can be also safely applied to tree-structured taxonomies (as FunCat), since trees are DAGs. 'HEMDAG' scale nicely both in terms of the complexity of the taxonomy and in the cardinality of the examples. (Marco Notaro, Max Schubach, Peter N. Robinson and Giorgio Valentini (2017) <doi:10.1186/s12859-017-1854-y>).
Author: Marco Notaro [aut, cre] and Giorgio Valentini [aut] (AnacletoLab, Dipartimento di Informatica, Universita' degli Studi di Milano)
Maintainer: Marco Notaro <marco.notaro@unimi.it>

Diff between HEMDAG versions 2.0.1 dated 2018-02-02 and 2.1.2 dated 2018-05-07

 HEMDAG-2.0.1/HEMDAG/man/AUPRC.single.class.Rd           |only
 HEMDAG-2.0.1/HEMDAG/man/AUPRC.single.over.classes.Rd    |only
 HEMDAG-2.0.1/HEMDAG/man/AUROC.single.class.Rd           |only
 HEMDAG-2.0.1/HEMDAG/man/AUROC.single.over.classes.Rd    |only
 HEMDAG-2.0.1/HEMDAG/man/Do.FLAT.scores.normalization.Rd |only
 HEMDAG-2.1.2/HEMDAG/CHANGELOG                           |   21 
 HEMDAG-2.1.2/HEMDAG/DESCRIPTION                         |    6 
 HEMDAG-2.1.2/HEMDAG/MD5                                 |   61 -
 HEMDAG-2.1.2/HEMDAG/NAMESPACE                           |    5 
 HEMDAG-2.1.2/HEMDAG/R/TPR-DAG.R                         |  856 +++++++---------
 HEMDAG-2.1.2/HEMDAG/R/descens.R                         |   40 
 HEMDAG-2.1.2/HEMDAG/R/graph.utility.R                   |   54 -
 HEMDAG-2.1.2/HEMDAG/R/heuristic.methods.R               |  473 ++++----
 HEMDAG-2.1.2/HEMDAG/R/htd.R                             |  370 +++---
 HEMDAG-2.1.2/HEMDAG/R/norm.fun.R                        |   89 -
 HEMDAG-2.1.2/HEMDAG/R/perf.meas.R                       |  649 ++++++++----
 HEMDAG-2.1.2/HEMDAG/R/pkg.import.R                      |    1 
 HEMDAG-2.1.2/HEMDAG/R/tpr.R                             |   29 
 HEMDAG-2.1.2/HEMDAG/inst/doc/HEMDAG.pdf                 |binary
 HEMDAG-2.1.2/HEMDAG/man/AUPRC.Rd                        |only
 HEMDAG-2.1.2/HEMDAG/man/AUROC.Rd                        |only
 HEMDAG-2.1.2/HEMDAG/man/DESCENS.Rd                      |    4 
 HEMDAG-2.1.2/HEMDAG/man/Do.HTD.Rd                       |   80 -
 HEMDAG-2.1.2/HEMDAG/man/Do.HTD.holdout.Rd               |   81 -
 HEMDAG-2.1.2/HEMDAG/man/Do.flat.scores.normalization.Rd |only
 HEMDAG-2.1.2/HEMDAG/man/Do.heuristic.methods.Rd         |   81 -
 HEMDAG-2.1.2/HEMDAG/man/Do.heuristic.methods.holdout.Rd |   81 -
 HEMDAG-2.1.2/HEMDAG/man/FMM.Rd                          |only
 HEMDAG-2.1.2/HEMDAG/man/HTD-DAG.Rd                      |    2 
 HEMDAG-2.1.2/HEMDAG/man/Multilabel.F.measure.Rd         |    7 
 HEMDAG-2.1.2/HEMDAG/man/PXR.Rd                          |only
 HEMDAG-2.1.2/HEMDAG/man/TPR-DAG-cross-validation.Rd     |  129 +-
 HEMDAG-2.1.2/HEMDAG/man/TPR-DAG-holdout.Rd              |  133 +-
 HEMDAG-2.1.2/HEMDAG/man/TPR-DAG-variants.Rd             |   19 
 HEMDAG-2.1.2/HEMDAG/man/do.unstratified.cv.data.Rd      |    4 
 HEMDAG-2.1.2/HEMDAG/man/find.best.f.Rd                  |   10 
 HEMDAG-2.1.2/HEMDAG/man/scores.normalization.Rd         |only
 37 files changed, 1865 insertions(+), 1420 deletions(-)

More information about HEMDAG at CRAN
Permanent link

Package gWQS updated to version 1.1.0 with previous version 1.0.0 dated 2016-10-21

Title: Generalized Weighted Quantile Sum Regression
Description: Fits Weighted Quantile Sum (WQS) regressions for continuous or binomial outcomes.
Author: Stefano Renzetti, Paul Curtin, Allan C Just, Ghalib Bello, Chris Gennings
Maintainer: Stefano Renzetti <stefano.renzetti88@gmail.com>

Diff between gWQS versions 1.0.0 dated 2016-10-21 and 1.1.0 dated 2018-05-07

 DESCRIPTION                 |   10 
 MD5                         |   26 
 NAMESPACE                   |   33 
 R/data.R                    |   45 -
 R/gwqs.R                    |  479 +++++------
 R/wqs_helpers.R             |  659 ++++++++--------
 Summary_results.html        |only
 Weights_table.html          |only
 build/vignette.rds          |binary
 inst/doc/gwqs-vignette.R    |  136 +--
 inst/doc/gwqs-vignette.Rmd  |  302 +++----
 inst/doc/gwqs-vignette.html | 1797 ++++++++++++++++++++++----------------------
 man/gwqs.Rd                 |  282 +++---
 man/wqs_data.Rd             |   63 -
 vignettes/gwqs-vignette.Rmd |  302 +++----
 15 files changed, 2078 insertions(+), 2056 deletions(-)

More information about gWQS at CRAN
Permanent link

Package grec updated to version 1.2.0 with previous version 1.1.1 dated 2017-08-13

Title: GRadient-Based RECognition of Spatial Patterns in Environmental Data
Description: Provides algorithms for detection of spatial patterns from oceanographic data using image processing methods based on Gradient Recognition.
Author: Wencheng Lau-Medrano [aut, cre]
Maintainer: Wencheng Lau-Medrano <luis.laum@gmail.com>

Diff between grec versions 1.1.1 dated 2017-08-13 and 1.2.0 dated 2018-05-07

 grec-1.1.1/grec/man/extraParams.Rd  |only
 grec-1.2.0/grec/DESCRIPTION         |    8 
 grec-1.2.0/grec/MD5                 |   25 +-
 grec-1.2.0/grec/NAMESPACE           |    3 
 grec-1.2.0/grec/NEWS.md             |   11 +
 grec-1.2.0/grec/R/Raster-class.R    |    8 
 grec-1.2.0/grec/R/array-class.R     |   19 -
 grec-1.2.0/grec/R/grec-internal.R   |  355 ++++++++++++++++--------------------
 grec-1.2.0/grec/R/grec-main.R       |  101 +++-------
 grec-1.2.0/grec/R/list-class.R      |only
 grec-1.2.0/grec/R/matrix-class.R    |only
 grec-1.2.0/grec/demo/detectFronts.R |    6 
 grec-1.2.0/grec/man/colPalette.Rd   |    2 
 grec-1.2.0/grec/man/detectFronts.Rd |   98 ++++-----
 grec-1.2.0/grec/man/grec-package.Rd |    2 
 15 files changed, 288 insertions(+), 350 deletions(-)

More information about grec at CRAN
Permanent link

Package earth updated to version 4.6.3 with previous version 4.6.2 dated 2018-03-21

Title: Multivariate Adaptive Regression Splines
Description: Build regression models using the techniques in Friedman's papers "Fast MARS" and "Multivariate Adaptive Regression Splines" <doi:10.1214/aos/1176347963>. (The term "MARS" is trademarked and thus not used in the name of the package.)
Author: Stephen Milborrow. Derived from mda:mars by Trevor Hastie and Rob Tibshirani. Uses Alan Miller's Fortran utilities with Thomas Lumley's leaps wrapper.
Maintainer: Stephen Milborrow <milbo@sonic.net>

Diff between earth versions 4.6.2 dated 2018-03-21 and 4.6.3 dated 2018-05-07

 earth-4.6.2/earth/inst/slowtests/earth-timing-tests.txt   |only
 earth-4.6.3/earth/DESCRIPTION                             |    6 
 earth-4.6.3/earth/MD5                                     |   72 ++--
 earth-4.6.3/earth/NEWS                                    |   16 
 earth-4.6.3/earth/R/earth.R                               |  116 ++----
 earth-4.6.3/earth/build/partial.rdb                       |binary
 earth-4.6.3/earth/inst/doc/earth-notes.pdf                |binary
 earth-4.6.3/earth/inst/doc/earth-varmod.pdf               |binary
 earth-4.6.3/earth/inst/slowtests/earth.times.R            |  249 +++++++-------
 earth-4.6.3/earth/inst/slowtests/earth.times.bat          |    2 
 earth-4.6.3/earth/inst/slowtests/earth.times.txt          |only
 earth-4.6.3/earth/inst/slowtests/test.big.R               |   30 -
 earth-4.6.3/earth/inst/slowtests/test.big.Rout.save       |   33 +
 earth-4.6.3/earth/inst/slowtests/test.big.bat             |    2 
 earth-4.6.3/earth/inst/slowtests/test.cv.bat              |    2 
 earth-4.6.3/earth/inst/slowtests/test.earthc.mak          |    2 
 earth-4.6.3/earth/inst/slowtests/test.earthc.out.save     |    4 
 earth-4.6.3/earth/inst/slowtests/test.earthmain.clang.bat |   11 
 earth-4.6.3/earth/inst/slowtests/test.earthmain.gcc.bat   |    2 
 earth-4.6.3/earth/inst/slowtests/test.earthmain.gcc64.bat |   10 
 earth-4.6.3/earth/inst/slowtests/test.full.Rout.save      |   20 -
 earth-4.6.3/earth/inst/slowtests/test.full.bat            |    2 
 earth-4.6.3/earth/inst/slowtests/test.glm.bat             |    2 
 earth-4.6.3/earth/inst/slowtests/test.incorrect.bat       |    2 
 earth-4.6.3/earth/inst/slowtests/test.mods.bat            |    2 
 earth-4.6.3/earth/inst/slowtests/test.plotd.bat           |    2 
 earth-4.6.3/earth/inst/slowtests/test.pmethod.cv.bat      |    2 
 earth-4.6.3/earth/inst/slowtests/test.varmod.bat          |    2 
 earth-4.6.3/earth/inst/slowtests/test.varmod.mgcv.bat     |    2 
 earth-4.6.3/earth/inst/slowtests/test.weights.bat         |    2 
 earth-4.6.3/earth/src/allowed.c                           |   71 +--
 earth-4.6.3/earth/src/allowed.h                           |    2 
 earth-4.6.3/earth/src/earth.c                             |  174 +++++----
 earth-4.6.3/earth/src/earth.h                             |   64 +--
 earth-4.6.3/earth/src/rentries.c                          |   41 --
 earth-4.6.3/earth/tests/README.txt                        |    2 
 earth-4.6.3/earth/tests/test.earth.R                      |   13 
 earth-4.6.3/earth/tests/test.earth.Rout.save              |   28 +
 38 files changed, 516 insertions(+), 474 deletions(-)

More information about earth at CRAN
Permanent link

Package oXim updated to version 1.2.2 with previous version 1.2.1 dated 2017-03-23

Title: Oxycline Index from Matrix Echograms
Description: Tools for oxycline depth calculation from echogram matrices.
Author: Wencheng Lau-Medrano [aut, cre], Ricardo Oliveros-Ramos [ctb]
Maintainer: Wencheng Lau-Medrano <luis.laum@gmail.com>

Diff between oXim versions 1.2.1 dated 2017-03-23 and 1.2.2 dated 2018-05-07

 DESCRIPTION                                                |   10 +--
 MD5                                                        |   16 +++---
 R/oXim-internal.R                                          |   15 +++++
 R/oXim-main.R                                              |    5 +
 R/oxyclineData-internal.R                                  |   26 +++++++--
 build/vignette.rds                                         |binary
 inst/doc/vignette.html                                     |   34 ++++++-------
 man/readEchograms.Rd                                       |    4 +
 vignettes/vignette_files/figure-html/unnamed-chunk-6-1.png |binary
 9 files changed, 69 insertions(+), 41 deletions(-)

More information about oXim at CRAN
Permanent link

Package rpanel updated to version 1.1-4 with previous version 1.1-3 dated 2014-02-28

Title: Simple Interactive Controls for R using the 'tcltk' Package
Description: A set of functions to build simple GUI controls for R functions. These are built on the 'tcltk' package. Uses could include changing a parameter on a graph by animating it with a slider or a "doublebutton", up to more sophisticated control panels. Some functions for specific graphical tasks, referred to as 'cartoons', are provided.
Author: Bowman, Bowman, Gibson and Crawford
Maintainer: Adrian Bowman <adrian.bowman@glasgow.ac.uk>

Diff between rpanel versions 1.1-3 dated 2014-02-28 and 1.1-4 dated 2018-05-07

 rpanel-1.1-3/rpanel/R/rp-anova.r             |only
 rpanel-1.1-4/rpanel/ChangeLog                |   18 
 rpanel-1.1-4/rpanel/DESCRIPTION              |   18 
 rpanel-1.1-4/rpanel/MD5                      |   93 ++---
 rpanel-1.1-4/rpanel/NAMESPACE                |   29 +
 rpanel-1.1-4/rpanel/R/button.r               |    2 
 rpanel-1.1-4/rpanel/R/combo.r                |   50 +-
 rpanel-1.1-4/rpanel/R/radiogroup.r           |    4 
 rpanel-1.1-4/rpanel/R/rp-ancova.r            |    4 
 rpanel-1.1-4/rpanel/R/rp-anova.R             |only
 rpanel-1.1-4/rpanel/R/rp-bubbleplot.r        |   20 -
 rpanel-1.1-4/rpanel/R/rp-cartoons.r          |  105 +++--
 rpanel-1.1-4/rpanel/R/rp-ci.r                |    2 
 rpanel-1.1-4/rpanel/R/rp-colour-key.r        |   63 +--
 rpanel-1.1-4/rpanel/R/rp-firth.r             |  312 ++++++++--------
 rpanel-1.1-4/rpanel/R/rp-geosim.r            |  128 +++---
 rpanel-1.1-4/rpanel/R/rp-gulls.r             |    2 
 rpanel-1.1-4/rpanel/R/rp-likelihood.r        |   24 -
 rpanel-1.1-4/rpanel/R/rp-logistic.r          |    2 
 rpanel-1.1-4/rpanel/R/rp-mururoa.r           |  290 ++++++++-------
 rpanel-1.1-4/rpanel/R/rp-normal.r            |    2 
 rpanel-1.1-4/rpanel/R/rp-plot3d.r            |   30 -
 rpanel-1.1-4/rpanel/R/rp-plot4d.r            |  497 ++++++++++++++++++---------
 rpanel-1.1-4/rpanel/R/rp-regression.r        |   21 -
 rpanel-1.1-4/rpanel/R/rp-regression2.r       |   14 
 rpanel-1.1-4/rpanel/R/rp-regression3.r       |only
 rpanel-1.1-4/rpanel/R/rp-rmplot.r            |    4 
 rpanel-1.1-4/rpanel/R/rp-sample.r            |only
 rpanel-1.1-4/rpanel/R/rp-surface.r           |  325 ++++++++++-------
 rpanel-1.1-4/rpanel/R/rp-tables.r            |  271 +++++++-------
 rpanel-1.1-4/rpanel/R/rpanel.r               |  116 ++----
 rpanel-1.1-4/rpanel/R/slider.r               |   26 -
 rpanel-1.1-4/rpanel/R/textentry.r            |  194 +++++-----
 rpanel-1.1-4/rpanel/R/timer.r                |   66 +--
 rpanel-1.1-4/rpanel/R/tkrplot.r              |   25 -
 rpanel-1.1-4/rpanel/R/window.r               |  172 ++++-----
 rpanel-1.1-4/rpanel/inst/history.txt         |    1 
 rpanel-1.1-4/rpanel/man/rp.anova.Rd          |   41 +-
 rpanel-1.1-4/rpanel/man/rp.block.Rd          |   14 
 rpanel-1.1-4/rpanel/man/rp.button.Rd         |    2 
 rpanel-1.1-4/rpanel/man/rp.control.Rd        |    7 
 rpanel-1.1-4/rpanel/man/rp.geosim.Rd         |   74 ++--
 rpanel-1.1-4/rpanel/man/rp.likelihood.Rd     |    3 
 rpanel-1.1-4/rpanel/man/rp.plot4d.Rd         |  154 +++++---
 rpanel-1.1-4/rpanel/man/rp.regression.Rd     |  116 +++---
 rpanel-1.1-4/rpanel/man/rp.sample.Rd         |only
 rpanel-1.1-4/rpanel/man/rp.surface.Rd        |   26 -
 rpanel-1.1-4/rpanel/man/rp.tables.Rd         |   69 +--
 rpanel-1.1-4/rpanel/man/rp.widget.dispose.Rd |    2 
 rpanel-1.1-4/rpanel/man/rpanel.package.Rd    |  176 ++++-----
 50 files changed, 1972 insertions(+), 1642 deletions(-)

More information about rpanel at CRAN
Permanent link

Package ggspectra updated to version 0.2.4-1 with previous version 0.2.3 dated 2017-12-21

Title: Extensions to 'ggplot2' for Radiation Spectra
Description: Additional annotations, and stats for plotting "light" spectra with 'ggplot2', together with specializations of ggplot() and plot() methods for spectral data stored in objects of the classes defined in package 'photobiology' and a plot() method for objects of class "waveband", also defined in package 'photobiology'. Part of the 'r4photobiology' suite, Aphalo P. J. (2015) <doi:10.19232/uv4pb.2015.1.14>.
Author: Pedro J. Aphalo [aut, cre] (<https://orcid.org/0000-0003-3385-972X>), Titta K. Kotilainen [ctb] (<https://orcid.org/0000-0002-2822-9734>)
Maintainer: Pedro J. Aphalo <pedro.aphalo@helsinki.fi>

Diff between ggspectra versions 0.2.3 dated 2017-12-21 and 0.2.4-1 dated 2018-05-07

 DESCRIPTION                           |   28 ++--
 MD5                                   |   98 +++++++-------
 NAMESPACE                             |    7 +
 NEWS                                  |   11 +
 R/ggplot-methods.R                    |  238 ++++++++++++++++++++--------------
 R/ggspectra.R                         |    8 -
 R/on-load.R                           |    4 
 R/plot-calibration-spct.R             |   69 ++++++---
 R/plot-cps-spct.R                     |   11 -
 R/plot-filter-spct.R                  |  124 ++++++++++++++---
 R/plot-raw-spct.R                     |   11 -
 R/plot-response-spct.R                |   47 +++++-
 R/plot-source-spct.r                  |   56 +++++---
 R/stat-wb-column.R                    |    4 
 R/stat-wb-contribution.R              |    4 
 R/stat-wb-hbar.R                      |    4 
 R/stat-wb-irrad.R                     |    2 
 R/stat-wb-mean.R                      |    4 
 R/stat-wb-relative.R                  |    4 
 R/stat-wb-sirrad.R                    |    2 
 R/stat-wb-total.R                     |    4 
 R/stat-wl-summary.R                   |    2 
 README.md                             |  106 ++++++++++++++-
 build/vignette.rds                    |binary
 inst/doc/userguide1-grammar.R         |   35 +++--
 inst/doc/userguide1-grammar.Rmd       |   55 ++++++-
 inst/doc/userguide1-grammar.html      |  228 +++++++++++++++++---------------
 inst/doc/userguide2-plot-methods.R    |   40 +----
 inst/doc/userguide2-plot-methods.Rmd  |   57 ++------
 inst/doc/userguide2-plot-methods.html |  139 +++++++++----------
 man/figures                           |only
 man/ggplot.Rd                         |  104 ++++++++------
 man/ggspectra-package.Rd              |   16 +-
 man/plot.calibration_spct.Rd          |   24 ++-
 man/plot.filter_spct.Rd               |   22 +--
 man/plot.object_spct.Rd               |    3 
 man/plot.reflector_spct.Rd            |   19 +-
 man/plot.response_spct.Rd             |   17 +-
 man/plot.source_spct.Rd               |   24 ++-
 man/stat_wb_column.Rd                 |    2 
 man/stat_wb_contribution.Rd           |    2 
 man/stat_wb_hbar.Rd                   |    2 
 man/stat_wb_irrad.Rd                  |    2 
 man/stat_wb_mean.Rd                   |    2 
 man/stat_wb_relative.Rd               |    2 
 man/stat_wb_sirrad.Rd                 |    2 
 man/stat_wb_total.Rd                  |    2 
 man/stat_wl_summary.Rd                |    2 
 vignettes/userguide1-grammar.Rmd      |   55 ++++++-
 vignettes/userguide2-plot-methods.Rmd |   57 ++------
 50 files changed, 1085 insertions(+), 676 deletions(-)

More information about ggspectra at CRAN
Permanent link

New package OscillatorGenerator with initial version 0.1.0
Package: OscillatorGenerator
Title: Generation of Customizable, Discretized Time Series of Oscillating Species
Authors@R: person("Arne", "Schoch", email = "arne_schoch@gmx.net", role = c("aut", "cre"))
Description: The supplied code allows for the generation of discrete time series of oscillating species. General shapes can be selected by means of individual functions, which are widely customizable by means of function arguments. All code was developed in the Biological Information Processing Group at the BioQuant Center at Heidelberg University, Germany.
Version: 0.1.0
Depends: R (>= 3.4.0)
License: GPL (>= 3)
Encoding: UTF-8
LazyData: true
RoxygenNote: 6.0.1
NeedsCompilation: no
Packaged: 2018-05-07 12:29:39 UTC; Arne
Author: Arne Schoch [aut, cre]
Maintainer: Arne Schoch <arne_schoch@gmx.net>
Repository: CRAN
Date/Publication: 2018-05-07 13:47:53 UTC

More information about OscillatorGenerator at CRAN
Permanent link

New package MPkn with initial version 0.1.0
Package: MPkn
Type: Package
Title: Calculations of One Discrete Model in Several Time Steps
Version: 0.1.0
Date: 2018-05-03
Author: Josef Brejcha
Maintainer: Josef Brejcha <brchjo@gmail.com>
Suggests: knitr, rmarkdown, matrixcalc, markovchain, matlib
VignetteBuilder: knitr
Description: A matrix discrete model having the form 'M[i+1] = (I + Q)*M[i]'. The calculation of the values of 'M[i]' only for pre-selected values of 'i'. The method of calculation is presented in the vignette 'Fundament' ('Base'). Maybe it`s own idea of the author of the package. A weakness is that the method gives information only in selected steps of the process. It mainly refers to cases with matrices that are not Markov chain. If 'Q' is Markov transition matrix, then MUPkL() may be used to calculate the steady-state distribution 'p' for 'p = Q*p'. Matrix power of non integer (matrix.powerni()) gives the same results as a mpower() from package 'matlib'. References: "Markov chains", (<https://en.wikipedia.org/wiki/Markov_chain#Expected_number_of_visits>). Donald R. Burleson, Ph.D. (2005), "ON NON-INTEGER POWERS OF A SQUARE MATRIX", (<http://www.blackmesapress.com/Eigenvalues.htm>).
License: GPL (>= 3)
Encoding: UTF-8
LazyData: true
RoxygenNote: 6.0.1
NeedsCompilation: no
Packaged: 2018-05-07 12:44:03 UTC; brchjo
Repository: CRAN
Date/Publication: 2018-05-07 13:05:21 UTC

More information about MPkn at CRAN
Permanent link

New package KRIS with initial version 1.0.3
Package: KRIS
Title: Keen and Reliable Interface Subroutines for Bioinformatic Analysis
Version: 1.0.3
Authors@R: c(person(given = "Kridsadakorn", family = "Chaichoompu", email = "kridsadakorn.chaichoompu@gmail.com", role = c("aut", "cre")),person(given = "Kristel", family = 'Van Steen', role = "aut"),person(given = "Fentaw", family = "Abegaz", role = "aut"),person(given = "Sissades", family = "Tongsima", role = "aut"),person(given = "Philip", family = "James Shaw", role = "aut"),person(given = "Anavaj", family = "Sakuntabhai", role = "aut"),person(given = "Luisa", family = "Pereira", role = "aut"))
Description: Provides useful functions which are needed for bioinformatic analysis such as calculating linear principal components from numeric data and Single-nucleotide polymorphism (SNP) dataset, calculating fixation index (Fst) using Hudson method, creating scatter plots in 3 views, handling with PLINK binary file format, detecting rough structures and outliers using unsupervised clustering, and calculating matrix multiplication in the faster way for big data.
Depends: R (>= 3.2.4.0)
License: GPL-2 | GPL-3
Encoding: UTF-8
LazyData: true
RoxygenNote: 6.0.1
Imports: rARPACK,grDevices,graphics,stats,utils
Suggests: testthat
BugReports: https://gitlab.com/kris.ccp/kris/issues
URL: https://gitlab.com/kris.ccp/kris
NeedsCompilation: no
Packaged: 2018-05-07 12:20:40 UTC; kridsadakorn
Author: Kridsadakorn Chaichoompu [aut, cre], Kristel Van Steen [aut], Fentaw Abegaz [aut], Sissades Tongsima [aut], Philip James Shaw [aut], Anavaj Sakuntabhai [aut], Luisa Pereira [aut]
Maintainer: Kridsadakorn Chaichoompu <kridsadakorn.chaichoompu@gmail.com>
Repository: CRAN
Date/Publication: 2018-05-07 13:38:29 UTC

More information about KRIS at CRAN
Permanent link

New package IDE with initial version 0.1.0
Package: IDE
Type: Package
Title: Integro-Difference Equation Spatio-Temporal Models
Version: 0.1.0
Date: 2018-05-03
Authors@R: c( person("Andrew", "Zammit-Mangion", , "andrewzm@gmail.com", c("aut", "cre")))
Maintainer: Andrew Zammit-Mangion <andrewzm@gmail.com>
Description: The Integro-Difference Equation model is a linear, dynamical model used to model phenomena that evolve in space and in time; see, for example, Cressie and Wikle (2011, ISBN:978-0-471-69274-4) or Dewar et al. (2009) <doi:10.1109/TSP.2008.2005091>. At the heart of the model is the kernel, which dictates how the process evolves from one time point to the next. Both process and parameter reduction are used to facilitate computation, and spatially-varying kernels are allowed. Data used to estimate the parameters are assumed to be readings of the process corrupted by Gaussian measurement error. Parameters are fitted by maximum likelihood, and estimation is carried out using an evolution algorithm.
Imports: methods, ggplot2, Matrix, sp, spacetime, parallel, dplyr, tidyr, FRK, DEoptim, stats, utils, sparseinv
Suggests: knitr
BugReports: http://github.com/andrewzm/IDE/issues
Depends: R (>= 3.2.0)
Encoding: UTF-8
LazyData: true
VignetteBuilder: knitr
NeedsCompilation: no
License: GPL (>= 2)
RoxygenNote: 6.0.1
Packaged: 2018-05-05 00:46:06 UTC; andrew
Author: Andrew Zammit-Mangion [aut, cre]
Repository: CRAN
Date/Publication: 2018-05-07 13:22:31 UTC

More information about IDE at CRAN
Permanent link

New package HiResTEC with initial version 0.52
Package: HiResTEC
Type: Package
Title: Non-Targeted Fluxomics on High-Resolution Mass-Spectrometry Data
Version: 0.52
Date: 2018-05-07
Authors@R: c(person("Jan", "Lisec", role = c("aut", "cre"), email = "jan.lisec@bam.de"), person("Friederike", "Hoffmann", role = c("aut"), email = "Friederike.Hoffmann@charite.de"))
Maintainer: Jan Lisec <jan.lisec@bam.de>
Description: Identifying labeled compounds in a 13C-tracer experiment in non-targeted fashion is a cumbersome process. This package facilitates such type of analyses by providing high level quality control plots, deconvoluting and evaluating spectra and performing a multitude of tests in an automatic fashion. The main idea is to use changing intensity ratios of ion pairs from peak list generated with 'xcms' as candidates and evaluate those against base peak chromatograms and spectra information within the raw measurement data automatically.
License: GPL-3
LazyData: TRUE
Depends: R(>= 2.10.0)
Imports: xcms, plyr, openxlsx, InterpretMSSpectrum, Rdisop, beeswarm, Biobase
RoxygenNote: 6.0.1
NeedsCompilation: yes
Packaged: 2018-05-07 07:07:04 UTC; jlisec
Author: Jan Lisec [aut, cre], Friederike Hoffmann [aut]
Repository: CRAN
Date/Publication: 2018-05-07 13:32:10 UTC

More information about HiResTEC at CRAN
Permanent link

New package CTRE with initial version 0.1.0
Package: CTRE
Type: Package
Title: Thresholding Bursty Time Series
Version: 0.1.0
Date: 2018-04-25
Maintainer: Peter Straka <p.straka@unsw.edu.au>
Authors@R: c( person("Katharina", "Hees", email = "hees@statistik.uni-dortmund.de", role = "aut"), person("Peter", "Straka", email = "p.straka@unsw.edu.au", role = c("aut", "cre")))
Description: Models extremes of 'bursty' time series via Continuous Time Random Exceedances (CTRE). See <arXiv:1802.05218>, K. Hees, S. Nayak, P.Straka, 2018.
URL: https://unsw-math.github.io/CTRE/
BugReports: https://github.com/UNSW-MATH/CTRE/issues
License: GPL-3
Encoding: UTF-8
LazyData: true
RoxygenNote: 6.0.1
Imports: assertthat, graphics, MittagLeffleR, plyr, stats, tea, utils, zoo
Depends: R (>= 2.10)
Suggests: evmix, magrittr, shiny
NeedsCompilation: no
Packaged: 2018-05-07 04:00:54 UTC; poyda
Author: Katharina Hees [aut], Peter Straka [aut, cre]
Repository: CRAN
Date/Publication: 2018-05-07 13:30:03 UTC

More information about CTRE at CRAN
Permanent link

Package copBasic updated to version 2.1.0 with previous version 2.0.7 dated 2018-03-08

Title: General Bivariate Copula Theory and Many Utility Functions
Description: Extensive functions for bivariate copula (bicopula) computations and related operations concerning oft cited bicopula theory described by Nelsen (2006), Joe (2014), and other selected works. The lower, upper, product, and select other bicopula are implemented. Arbitrary bicopula expressions include the diagonal, survival copula, the dual of a copula, co-copula, numerical bicopula density, and maximum likelihood estimation. Level curves (sets), horizontal and vertical sections also are supported. Numerical derivatives and inverses of a bicopula are provided; simulation by the conditional distribution method thus is supported. Bicopula composition, convex combination, and products are provided. Support extends to Kendall Function as well as the Lmoments thereof, Kendall Tau, Spearman Rho and Footrule, Gini Gamma, Blomqvist Beta, Hoeffding Phi, Schweizer-Wolff Sigma, tail dependency (including pseudo-polar representation) and tail order, skewness, and bivariate Lmoments. Evaluators of positively/negatively quadrant dependency, left increasing and right decreasing are available. Kullback-Leibler divergence, Vuong's procedure, Spectral Measure, and Lcomoments for copula inference are available. Quantile and median regressions for V with respect to U and U with respect to V are available. Empirical copulas (EC) are supported.
Author: William Asquith
Maintainer: William Asquith <william.asquith@ttu.edu>

Diff between copBasic versions 2.0.7 dated 2018-03-08 and 2.1.0 dated 2018-05-07

 ChangeLog                 |   48 +++++++++++++-
 DESCRIPTION               |    8 +-
 MD5                       |  154 +++++++++++++++++++++++-----------------------
 NAMESPACE                 |    4 +
 R/AMHcop.R                |only
 R/CLcop.R                 |    3 
 R/COP.R                   |   28 ++++----
 R/EMPIRcop.R              |    6 -
 R/FGMcop.R                |only
 R/JOcop.R                 |only
 R/PARETOcop.R             |    7 +-
 R/composite1COP.R         |    2 
 R/composite2COP.R         |    4 -
 R/densityCOPplot.R        |    5 -
 R/derCOPinv.R             |    9 ++
 R/derCOPinv2.R            |    9 ++
 R/hoefCOP.R               |    7 +-
 R/joeskewCOP.R            |   10 +-
 R/kfuncCOP.R              |    8 +-
 R/simCOP.R                |   10 ++
 R/vuongCOP.R              |    6 -
 R/wolfCOP.R               |   10 +-
 inst/3dcopula/3dcopula.pl |   14 ++--
 man/AMHcop.Rd             |only
 man/CLcop.Rd              |    5 -
 man/COP.Rd                |   73 ++++++++++++---------
 man/EMPIRcopdf.Rd         |    2 
 man/EMPIRgrid.Rd          |    2 
 man/EMPIRgridder.Rd       |    2 
 man/EMPIRgridder2.Rd      |    2 
 man/EMPIRgridderinv.Rd    |    2 
 man/EMPIRgridderinv2.Rd   |    2 
 man/EMPIRmed.regress.Rd   |    2 
 man/EMPIRmed.regress2.Rd  |    2 
 man/EMPIRqua.regress.Rd   |    2 
 man/EMPIRqua.regress2.Rd  |    2 
 man/FGMcop.Rd             |only
 man/FRECHETcop.Rd         |    6 -
 man/GHcop.Rd              |   29 +++++---
 man/HRcop.Rd              |    7 +-
 man/JOcopB5.Rd            |only
 man/M.Rd                  |    6 +
 man/N4212cop.Rd           |    2 
 man/P.Rd                  |    2 
 man/PARETOcop.Rd          |    6 +
 man/PSP.Rd                |    2 
 man/W.Rd                  |    6 +
 man/asCOP.Rd              |    4 -
 man/bilmoms.Rd            |    4 -
 man/blomCOP.Rd            |    1 
 man/composite1COP.Rd      |    7 +-
 man/composite2COP.Rd      |    2 
 man/composite3COP.Rd      |    2 
 man/copBasic-package.Rd   |  100 ++++++++++++++++-------------
 man/copBasic.fitpara.Rd   |    2 
 man/densityCOP.Rd         |    6 -
 man/densityCOPplot.Rd     |   31 ++++++++-
 man/derCOPinv.Rd          |    4 -
 man/derCOPinv2.Rd         |    4 -
 man/footCOP.Rd            |    8 +-
 man/giniCOP.Rd            |    8 +-
 man/joeskewCOP.Rd         |   12 +--
 man/joint.curvesCOP.Rd    |    2 
 man/jointCOP.Rd           |    6 -
 man/kfuncCOP.Rd           |    4 -
 man/kullCOP.Rd            |   20 +++--
 man/lcomCOPpv.Rd          |    1 
 man/med.regressCOP.Rd     |    1 
 man/mleCOP.Rd             |    4 -
 man/prod2COP.Rd           |   17 ++---
 man/rhobevCOP.Rd          |    6 -
 man/simCOPmicro.Rd        |    2 
 man/simcomposite3COP.Rd   |    3 
 man/simcompositeCOP.Rd    |    3 
 man/spectralmeas.Rd       |   53 +++++++--------
 man/statTn.Rd             |    2 
 man/taildepCOP.Rd         |   12 +++
 man/tailordCOP.Rd         |    2 
 man/uvlmoms.Rd            |    4 +
 man/vuongCOP.Rd           |   11 +--
 man/wolfCOP.Rd            |   59 ++++++++++-------
 81 files changed, 554 insertions(+), 369 deletions(-)

More information about copBasic at CRAN
Permanent link

New package webr with initial version 0.1.0
Package: webr
Type: Package
Title: Data and Functions for Web-Based Analysis
Version: 0.1.0
Imports: moonBook, ggplot2, stringr
Authors@R: c(person("Keon-Woong", "Moon", role = c("aut", "cre"), email = "cardiomoon@gmail.com"), person("Tommaso","Martino",role=c("ctb"), email="todoslogos@gmail.com"))
URL: https://github.com/cardiomoon/webr
BugReports: https://github.com/cardiomoon/webr/issues
Description: Several analysis-related functions for the book entitled "Web-based Analysis without R in Your Computer"(written in Korean, ISBN 978-89-5566-185-9) by Keon-Woong Moon. The main function plot.htest() shows the distribution of statistic for the object of class 'htest'.
Depends: R(>= 2.10)
License: GPL-3
Encoding: UTF-8
LazyData: true
RoxygenNote: 6.0.1
VignetteBuilder: knitr
Suggests: testthat, knitr
NeedsCompilation: no
Packaged: 2018-05-07 12:19:45 UTC; cardiomoon
Author: Keon-Woong Moon [aut, cre], Tommaso Martino [ctb]
Maintainer: Keon-Woong Moon <cardiomoon@gmail.com>
Repository: CRAN
Date/Publication: 2018-05-07 12:38:20 UTC

More information about webr at CRAN
Permanent link

New package shinytest with initial version 1.3.0
Package: shinytest
Title: Test Shiny Apps
Version: 1.3.0
Authors@R: c( person("Winston", "Chang", role = c("aut", "cre"), email = "winston@rstudio.com"), person("Gábor", "Csárdi", role = "aut", email = "gabor@rstudio.com") )
Description: For automated testing of Shiny applications, using a headless browser, driven through 'WebDriver'.
License: MIT + file LICENSE
LazyData: true
URL: https://github.com/rstudio/shinytest
BugReports: https://github.com/rstudio/shinytest/issues
RoxygenNote: 6.0.1.9000
Imports: assertthat, digest, crayon, debugme, parsedate, pingr, callr (>= 2.0.3), R6, rematch, httr, shiny (>= 1.0.4), testthat (>= 1.0.0), utils, webdriver (>= 1.0.5), htmlwidgets, jsonlite, withr, httpuv
Suggests: rmarkdown, flexdashboard
Encoding: UTF-8
SystemRequirements: PhantomJS (http://phantomjs.org/)
NeedsCompilation: no
Packaged: 2018-05-04 20:33:32 UTC; winston
Author: Winston Chang [aut, cre], Gábor Csárdi [aut]
Maintainer: Winston Chang <winston@rstudio.com>
Repository: CRAN
Date/Publication: 2018-05-07 12:12:51 UTC

More information about shinytest at CRAN
Permanent link

New package sensors4plumes with initial version 0.9.3
Package: sensors4plumes
Type: Package
Title: Test and Optimise Sampling Designs Based on Plume Simulations
Version: 0.9.3
Date: 2018-05-07
Author: Kristina B. Helle
Maintainer: Kristina B. Helle <kristina.helle@uni-muenster.de>
Description: Test sampling designs by several flexible cost functions, usually based on the simulations, and optimise sampling designs using different optimisation algorithms; load plume simulations (on lattice or points) even if they do not fit into memory.
License: GPL-3
Imports: lattice, emdist, rgdal, FNN, graphics, conf.design, automap, genalg
Depends: R (>= 3.0.0), methods, gstat, sp, raster
Collate: s4p.R points2polygrid.R SpatialPolygridDataFrame-class.R SpatialPolygridDataFrame-methods.R SpatialIndexDataFrame-class.R SpatialIndexDataFrame-methods.R SpatialDataFrame-class.R subsetSDF.R areaSDF.R Simulations-class.R Simulations-methods.R plotSimulations.R cbindSimulations.R loadSimulations.R loadSimulations_raster.R loadSimulations_scan.R extractSpatialDataFrame.R SDF2simulations.R changeSimulationsPath.R subsetSimulations.R summaryPlumes.R summaryLocations.R replaceDefault.R simulationsApply.R fitMedianVariogram.R interpolate.R interpolationErrorFunctions.R interpolationError.R spatialSpreadFunctions.R spatialSpread.R measurementsResultMap.R optimiseSD_greedy.R optimiseSD_ssa.R optimiseSD_genetic.R completeSearch.R optimiseSD_global.R coordCentral.R optimiseSD_manual.R optimiseSD.R plotSD.R optimisationCurve.R postprocessing.R spplotLog.R
NeedsCompilation: no
Packaged: 2018-05-07 10:04:05 UTC; kristina
Repository: CRAN
Date/Publication: 2018-05-07 12:26:45 UTC

More information about sensors4plumes at CRAN
Permanent link

New package rijkspalette with initial version 1.0.0
Package: rijkspalette
Type: Package
Title: Create Colour Palettes Based on Famous Artworks from the Rijksmuseum
Version: 1.0.0
Authors@R: person(given = "Erik-Jan", family = "van Kesteren", role = c("aut", "cre"), email = "e.vankesteren1@uu.nl")
Maintainer: Erik-Jan van Kesteren <e.vankesteren1@uu.nl>
Description: Create colour palettes based on famous paintings. Using the function rijksPalette(), you can search for any painting in the collection of the Dutch Rijksmuseum and generate a colour palette from it. This package was developed using the fantastic Rijksmuseum API <https://www.rijksmuseum.nl/api>.
License: MIT + file LICENCE
URL: https://vankesteren.github.io/rijkspalette
BugReports: https://github.com/vankesteren/rijkspalette/issues
Encoding: UTF-8
LazyData: true
Imports: imager, utils, crayon, grDevices, jsonlite, curl
RoxygenNote: 6.0.1
Suggests: manipulate
NeedsCompilation: no
Packaged: 2018-05-07 12:21:46 UTC; 3665364
Author: Erik-Jan van Kesteren [aut, cre]
Repository: CRAN
Date/Publication: 2018-05-07 12:40:57 UTC

More information about rijkspalette at CRAN
Permanent link

Package rbamtools updated to version 2.16.11 with previous version 2.16.10 dated 2018-04-30

Title: Read and Write BAM (Binary Alignment) Files
Description: Provides an R interface to functions of the 'SAMtools' C-Library by Heng Li <http://www.htslib.org/>.
Author: Wolfgang Kaisers [aut, cre], Heng Li [ctb, cph], Jue Ruan [ctb, cph]
Maintainer: Wolfgang Kaisers <wolfgang.kaisers@gmail.com>

Diff between rbamtools versions 2.16.10 dated 2018-04-30 and 2.16.11 dated 2018-05-07

 DESCRIPTION            |    6 +++---
 MD5                    |    8 ++++----
 build/vignette.rds     |binary
 inst/doc/rbamtools.pdf |binary
 src/rbamtools.cpp      |    2 +-
 5 files changed, 8 insertions(+), 8 deletions(-)

More information about rbamtools at CRAN
Permanent link

Package processx updated to version 3.0.3 with previous version 2.0.0.1 dated 2017-07-30

Title: Execute and Control System Processes
Description: Tools to run system processes in the background. It can check if a background process is running; wait on a background process to finish; get the exit status of finished processes; kill background processes and their children; restart processes. It can read the standard output and error of the processes, using non-blocking connections. 'processx' can poll a process for standard output or error, with a timeout. It can also poll several processes at once.
Author: Gábor Csárdi, Winston Chang
Maintainer: Gábor Csárdi <csardi.gabor@gmail.com>

Diff between processx versions 2.0.0.1 dated 2017-07-30 and 3.0.3 dated 2018-05-07

 processx-2.0.0.1/processx/NEWS.md                           |only
 processx-2.0.0.1/processx/inst/internals.md                 |only
 processx-2.0.0.1/processx/src/unix/interruptible-calls.c    |only
 processx-2.0.0.1/processx/src/unix/poll.c                   |only
 processx-2.0.0.1/processx/src/win/poll.c                    |only
 processx-2.0.0.1/processx/tests/testthat/test-commandline.R |only
 processx-3.0.3/processx/DESCRIPTION                         |   17 
 processx-3.0.3/processx/LICENSE                             |    4 
 processx-3.0.3/processx/MD5                                 |  113 +--
 processx-3.0.3/processx/NAMESPACE                           |    7 
 processx-3.0.3/processx/R/initialize.R                      |   62 -
 processx-3.0.3/processx/R/io.R                              |   78 +-
 processx-3.0.3/processx/R/named_pipe.R                      |only
 processx-3.0.3/processx/R/on-load.R                         |    2 
 processx-3.0.3/processx/R/poll.R                            |   25 
 processx-3.0.3/processx/R/print.R                           |    8 
 processx-3.0.3/processx/R/process.R                         |  306 +++++---
 processx-3.0.3/processx/R/run.R                             |   71 +-
 processx-3.0.3/processx/R/supervisor.R                      |only
 processx-3.0.3/processx/R/utils.R                           |  139 +++
 processx-3.0.3/processx/inst/NEWS.md                        |only
 processx-3.0.3/processx/inst/README.markdown                |  373 +++-------
 processx-3.0.3/processx/man/poll.Rd                         |   21 
 processx-3.0.3/processx/man/process.Rd                      |  151 ++--
 processx-3.0.3/processx/man/process_initialize.Rd           |   10 
 processx-3.0.3/processx/man/run.Rd                          |   30 
 processx-3.0.3/processx/src/Makevars                        |   23 
 processx-3.0.3/processx/src/Makevars.win                    |   19 
 processx-3.0.3/processx/src/init.c                          |   47 -
 processx-3.0.3/processx/src/install.libs.R                  |only
 processx-3.0.3/processx/src/poll.c                          |only
 processx-3.0.3/processx/src/processx-connection.c           |only
 processx-3.0.3/processx/src/processx-connection.h           |only
 processx-3.0.3/processx/src/processx-types.h                |only
 processx-3.0.3/processx/src/processx-vector.c               |only
 processx-3.0.3/processx/src/processx.h                      |   49 +
 processx-3.0.3/processx/src/supervisor                      |only
 processx-3.0.3/processx/src/test-connections.cpp            |only
 processx-3.0.3/processx/src/test-runner.cpp                 |only
 processx-3.0.3/processx/src/tools                           |only
 processx-3.0.3/processx/src/unix/childlist.c                |   12 
 processx-3.0.3/processx/src/unix/connection.c               |  122 ---
 processx-3.0.3/processx/src/unix/named_pipe.c               |only
 processx-3.0.3/processx/src/unix/processx-unix.h            |   36 -
 processx-3.0.3/processx/src/unix/processx.c                 |   96 +-
 processx-3.0.3/processx/src/unix/sigchld.c                  |    4 
 processx-3.0.3/processx/src/unix/utils.c                    |    2 
 processx-3.0.3/processx/src/win/cleanup.c                   |only
 processx-3.0.3/processx/src/win/named_pipe.c                |only
 processx-3.0.3/processx/src/win/processx-win.h              |   27 
 processx-3.0.3/processx/src/win/processx.c                  |  214 ++++--
 processx-3.0.3/processx/src/win/stdio.c                     |  423 ------------
 processx-3.0.3/processx/tests/testthat.R                    |    3 
 processx-3.0.3/processx/tests/testthat/fixtures             |only
 processx-3.0.3/processx/tests/testthat/helper.R             |   30 
 processx-3.0.3/processx/tests/testthat/test-chr-io.R        |   44 -
 processx-3.0.3/processx/tests/testthat/test-cleanup.R       |    9 
 processx-3.0.3/processx/tests/testthat/test-connections.R   |only
 processx-3.0.3/processx/tests/testthat/test-cpp.R           |only
 processx-3.0.3/processx/tests/testthat/test-io.R            |   92 +-
 processx-3.0.3/processx/tests/testthat/test-poll.R          |   40 -
 processx-3.0.3/processx/tests/testthat/test-poll2.R         |  127 +++
 processx-3.0.3/processx/tests/testthat/test-print.R         |   19 
 processx-3.0.3/processx/tests/testthat/test-process.R       |   93 --
 processx-3.0.3/processx/tests/testthat/test-run.R           |   60 -
 processx-3.0.3/processx/tests/testthat/test-stress.R        |only
 processx-3.0.3/processx/tests/testthat/test-utils.R         |only
 processx-3.0.3/processx/tests/testthat/test-wait.R          |   11 
 68 files changed, 1483 insertions(+), 1536 deletions(-)

More information about processx at CRAN
Permanent link

New package modeldb with initial version 0.1.0
Package: modeldb
Version: 0.1.0
Title: Fits Models Inside the Database
Description: Uses 'dplyr' and 'tidyeval' to fit statistical models inside the database. It currently supports KMeans and linear regression models.
Authors@R: person("Edgar", "Ruiz", email = "edgar@rstudio.com", role = c("aut", "cre"))
Depends: R (>= 3.1)
Imports: dplyr(>= 0.7), rlang, purrr, tibble, tidyr, progress, ggplot2, readr
Suggests: dbplyr, testthat, knitr, rmarkdown, nycflights13, RSQLite, methods, DBI, tidypredict, dbplot, covr
License: GPL-3
URL: https://github.com/edgararuiz/modeldb
BugReports: https://github.com/edgararuiz/modeldb/issues
RoxygenNote: 6.0.1
VignetteBuilder: knitr
NeedsCompilation: no
Packaged: 2018-05-06 17:36:54 UTC; edgar
Author: Edgar Ruiz [aut, cre]
Maintainer: Edgar Ruiz <edgar@rstudio.com>
Repository: CRAN
Date/Publication: 2018-05-07 13:00:22 UTC

More information about modeldb at CRAN
Permanent link

Package CondIndTests updated to version 0.1.4 with previous version 0.1.3 dated 2018-04-17

Title: Nonlinear Conditional Independence Tests
Description: Code for a variety of nonlinear conditional independence tests: Kernel conditional independence test (Zhang et al., UAI 2011, <arXiv:1202.3775>), Residual Prediction test (based on Shah and Buehlmann, <arXiv:1511.03334>), Invariant environment prediction, Invariant target prediction, Invariant residual distribution test, Invariant conditional quantile prediction (all from Heinze-Deml et al., <arXiv:1706.08576>).
Author: Christina Heinze-Deml <heinzedeml@stat.math.ethz.ch>, Jonas Peters <jonas.peters@math.ku.dk>
Maintainer: Christina Heinze-Deml <heinzedeml@stat.math.ethz.ch>

Diff between CondIndTests versions 0.1.3 dated 2018-04-17 and 0.1.4 dated 2018-05-07

 DESCRIPTION                                |    9 +-
 MD5                                        |   25 ++++---
 R/CondIndTest.R                            |  101 ++++++++++++++++++++---------
 R/InvariantConditionalQuantilePrediction.R |    5 +
 R/InvariantEnvironmentPrediction.R         |   10 +-
 R/InvariantResidualDistributionTest.R      |    5 +
 R/InvariantTargetPrediction.R              |   20 +++--
 R/KCI.R                                    |   38 +++++-----
 R/ResidualPredictionTest.R                 |    4 +
 R/gamTargetY.R                             |   16 ++++
 R/helper_fcts.R                            |only
 man/InvariantTargetPrediction.Rd           |    7 --
 man/KCI.Rd                                 |    3 
 tests                                      |only
 14 files changed, 159 insertions(+), 84 deletions(-)

More information about CondIndTests at CRAN
Permanent link

Package forward (with last version 1.0.3) was removed from CRAN

Previous versions (as known to CRANberries) which should be available via the Archive link are:

2009-10-12 1.0.3
2009-02-10 1.0.2
2005-11-28 1.0.1

Permanent link
Package rgdal updated to version 1.2-20 with previous version 1.2-18 dated 2018-03-17

Title: Bindings for the 'Geospatial' Data Abstraction Library
Description: Provides bindings to the 'Geospatial' Data Abstraction Library ('GDAL') (>= 1.6.3) and access to projection/transformation operations from the 'PROJ.4' library. The 'GDAL' and 'PROJ.4' libraries are external to the package, and, when installing the package from source, must be correctly installed first. Both 'GDAL' raster and 'OGR' vector map data can be imported into R, and 'GDAL' raster data and 'OGR' vector data exported. Use is made of classes defined in the 'sp' package. Windows and Mac Intel OS X binaries (including 'GDAL', 'PROJ.4' and 'Expat') are provided on 'CRAN'.
Author: Roger Bivand [cre, aut] (<https://orcid.org/0000-0003-2392-6140>), Tim Keitt [aut], Barry Rowlingson [aut, ctb], Edzer Pebesma [ctb], Michael Sumner [ctb], Robert Hijmans [ctb], Even Rouault [ctb], Jeroen Ooms [ctb]
Maintainer: Roger Bivand <Roger.Bivand@nhh.no>

Diff between rgdal versions 1.2-18 dated 2018-03-17 and 1.2-20 dated 2018-05-07

 ChangeLog                       |   28 +++++++++++++++++++++++++
 DESCRIPTION                     |    8 +++----
 MD5                             |   26 +++++++++++------------
 R/ogr.R                         |   12 +++++++---
 R/ogr_sp.R                      |    3 +-
 build/vignette.rds              |binary
 configure                       |   44 ++++++++++++++++++++++++++++++----------
 configure.ac                    |   23 ++++++++++++++++++++
 inst/ChangeLog                  |   28 +++++++++++++++++++++++++
 inst/SVN_VERSION                |    2 -
 inst/doc/OGR_shape_encoding.pdf |binary
 src/projectit.cpp               |   20 +++++-------------
 tests/tests.R                   |    3 +-
 tests/tests.Rout.save           |    5 +++-
 14 files changed, 152 insertions(+), 50 deletions(-)

More information about rgdal at CRAN
Permanent link

New package rdi with initial version 1.0.0
Package: rdi
Type: Package
Version: 1.0.0
Date: 2018-05-01
Authors@R: c(person("Christopher", "Bolen", role=c("aut", "cre"), email="cbolen1@gmail.com"), person("Florian", "Rubelt", role="aut", email="frubelt@stanford.edu"), person("Jason", "Vander Heiden", role="aut", email="jason.vanderheiden@yale.edu"))
Title: Repertoire Dissimilarity Index
Description: Methods for calculation and visualization of the Repertoire Dissimilarity Index. Citation: Bolen and Rubelt, et al (2017) <doi:10.1186/s12859-017-1556-5>.
License: CC BY-SA 4.0
URL: http://rdi.readthedocs.io
BugReports: https://bitbucket.org/cbolen1/rdicore/issues
LazyData: true
Depends: R (>= 3.0.0)
Imports: beanplot, gplots, pdist, stringr
Suggests: knitr, ggplot2
RoxygenNote: 6.0.1
NeedsCompilation: no
Packaged: 2018-05-04 14:59:52 UTC; bolenc
Author: Christopher Bolen [aut, cre], Florian Rubelt [aut], Jason Vander Heiden [aut]
Maintainer: Christopher Bolen <cbolen1@gmail.com>
Repository: CRAN
Date/Publication: 2018-05-07 11:14:21 UTC

More information about rdi at CRAN
Permanent link

New package RcmdrPlugin.OptimClassifier with initial version 0.1.2
Package: RcmdrPlugin.OptimClassifier
Title: Create the Best Train for Classification Models
Version: 0.1.2
Authors@R: c( person("Agustin", "Perez-Martin", email = "agustin.perez@umh.es", role = "aut", comment = c(ORCID = "0000-0003-4994-3176")), person("Agustin", "Perez-Torregrosa", email = "agustin.perez01@goumh.umh.es", role = c("cre","aut"), comment = c(ORCID = "0000-0001-5658-4795")), person("Marta","Vaca-Lamata", email="mvaca@umh.es",role="aut", comment = c(ORCID = "0000-0001-8496-5579")), person("Antonio Jose","Verdu-Jover", email="ajverdu@umh.es",role="aut", comment = c(ORCID = "0000-0002-6201-7196")) )
Description: An R Commander "plug-in" providing an interface to OptimClassifier functions.
Depends: R (>= 3.2.3), Rcmdr, RcmdrMisc, OptimClassifier (>= 0.1.4)
License: GPL-3
Encoding: UTF-8
LazyData: true
RoxygenNote: 6.0.1
RcmdrModels: Optim
NeedsCompilation: no
Packaged: 2018-04-23 10:00:50 UTC; agustin
Author: Agustin Perez-Martin [aut] (<https://orcid.org/0000-0003-4994-3176>), Agustin Perez-Torregrosa [cre, aut] (<https://orcid.org/0000-0001-5658-4795>), Marta Vaca-Lamata [aut] (<https://orcid.org/0000-0001-8496-5579>), Antonio Jose Verdu-Jover [aut] (<https://orcid.org/0000-0002-6201-7196>)
Maintainer: Agustin Perez-Torregrosa <agustin.perez01@goumh.umh.es>
Repository: CRAN
Date/Publication: 2018-05-07 11:47:10 UTC

More information about RcmdrPlugin.OptimClassifier at CRAN
Permanent link

New package lue with initial version 0.1.0
Package: lue
Type: Package
Title: Light Use Efficiency Model to Estimate Biomass
Version: 0.1.0
Depends: R(>= 2.10.0)
Author: Maninder Singh Dhillon, Thorsten Dahms, Christopher Conrad and Martin Wegmann
Maintainer: Maninder Singh Dhillon <manidhillon1989@gmail.com>
Description: Contains LUE_BIOMASS() to estimate aboveground biomass firstly by calculating the Absorbed Photosynthetically Active Radiation (APAR) and secondly the actual values of light use efficiency Shi et al.(2007) <doi:10.2134/agronj2006.0260>.
License: GPL-2
Encoding: UTF-8
LazyData: true
Imports: raster,ncdf4
RoxygenNote: 6.0.1
Repository: CRAN
Suggests: rmarkdown
NeedsCompilation: no
Packaged: 2018-05-03 12:57:38 UTC; Praktikant
Date/Publication: 2018-05-07 11:49:08 UTC

More information about lue at CRAN
Permanent link

Package lmvar updated to version 1.5.0 with previous version 1.4.0 dated 2018-01-04

Title: Linear Regression with Non-Constant Variances
Description: Runs a linear-like regression with in which both the expected value and the variance can vary per observation. The expected values mu follows the standard linear model mu = X_mu * beta_mu. The standard deviation sigma follows the model log(sigma) = X_sigma * beta_sigma. The package comes with two vignettes: 'Intro' gives an introduction, 'Math' gives mathematical details.
Author: Posthuma Partners <info@posthuma-partners.nl>
Maintainer: Marco Nijmeijer <nijmeijer@posthuma-partners.nl>

Diff between lmvar versions 1.4.0 dated 2018-01-04 and 1.5.0 dated 2018-05-07

 DESCRIPTION                                |   11 +-
 MD5                                        |   76 +++++++++-----
 NAMESPACE                                  |    7 +
 NEWS.md                                    |   22 ++++
 R/beta_sigma_names.R                       |   11 +-
 R/convergence_precheck.R                   |only
 R/cv.lm.R                                  |   29 ++---
 R/cv.lmvar.R                               |  149 ++++++++++++++++-------------
 R/dfree.R                                  |    2 
 R/examples/plot.lmvar_examples.R           |only
 R/examples/plot_qdis.lm_examples.R         |only
 R/examples/plot_qdis.lmvar_examples.R      |only
 R/examples/plot_qq.lm_examples.R           |only
 R/examples/plot_qq.lmvar_examples.R        |only
 R/fwbw.lm.R                                |   50 +++++----
 R/fwbw.lmvar_no_fit.R                      |   38 ++++---
 R/lmvar.R                                  |  121 +++++++++++++++++------
 R/lmvar_no_fit.R                           |   64 ++++++++----
 R/plot.lmvar.R                             |only
 R/plot_lm_loglik.R                         |    4 
 R/plot_qdis.R                              |only
 R/plot_qdis.lm.R                           |only
 R/plot_qdis.lmvar.R                        |only
 R/plot_qdis_lmlike.R                       |only
 R/plot_qq.R                                |only
 R/plot_qq.lm.R                             |only
 R/plot_qq.lmvar.R                          |only
 R/plot_qq_lmlike.R                         |only
 R/print.summary_lmvar.R                    |    2 
 README.md                                  |    4 
 build/vignette.rds                         |binary
 inst/doc/Intro.R                           |    2 
 inst/doc/Intro.Rmd                         |   22 +++-
 inst/doc/Intro.html                        |   63 ++++++------
 inst/doc/Math.pdf                          |binary
 man/convergence_precheck.Rd                |only
 man/fwbw.lmvar_no_fit.Rd                   |    4 
 man/lmvar.Rd                               |   37 ++++++-
 man/lmvar_no_fit.Rd                        |   14 +-
 man/plot.lmvar.Rd                          |only
 man/plot_qdis.Rd                           |only
 man/plot_qdis.lm.Rd                        |only
 man/plot_qdis.lmvar.Rd                     |only
 man/plot_qdis_lmlike.Rd                    |only
 man/plot_qq.Rd                             |only
 man/plot_qq.lm.Rd                          |only
 man/plot_qq.lmvar.Rd                       |only
 man/plot_qq_lmlike.Rd                      |only
 tests/testthat/test_convergence_precheck.R |only
 tests/testthat/test_lmvar.R                |   98 +++++++++++++------
 tests/testthat/test_lmvar_no_fit.R         |   30 +++++
 vignettes/Intro.Rmd                        |   22 +++-
 52 files changed, 591 insertions(+), 291 deletions(-)

More information about lmvar at CRAN
Permanent link

Package dlib updated to version 1.0.3 with previous version 1.0 dated 2017-02-20

Title: Allow Access to the 'Dlib' C++ Library
Description: Interface for 'Rcpp' users to 'dlib' <http://dlib.net> which is a 'C++' toolkit containing machine learning algorithms and computer vision tools. It is used in a wide range of domains including robotics, embedded devices, mobile phones, and large high performance computing environments. This package allows R users to use 'dlib' through 'Rcpp'.
Author: Jan Wijffels, BNOSAC, Davis King and dlib package authors (see file AUTHORS)
Maintainer: Jan Wijffels <jwijffels@bnosac.be>

Diff between dlib versions 1.0 dated 2017-02-20 and 1.0.3 dated 2018-05-07

 dlib-1.0.3/dlib/DESCRIPTION                                                                           |   11 
 dlib-1.0.3/dlib/MD5                                                                                   | 2647 -
 dlib-1.0.3/dlib/NAMESPACE                                                                             |    8 
 dlib-1.0.3/dlib/NEWS                                                                                  |   16 
 dlib-1.0.3/dlib/R/pkg.R                                                                               |  142 
 dlib-1.0.3/dlib/README.md                                                                             |  104 
 dlib-1.0.3/dlib/inst/AUTHORS                                                                          |only
 dlib-1.0.3/dlib/inst/COPYRIGHTS                                                                       |only
 dlib-1.0.3/dlib/inst/extdata/rcpp_surf.cpp                                                            |   56 
 dlib-1.0.3/dlib/inst/include/dlib/CMakeLists.txt                                                      | 1308 
 dlib-1.0.3/dlib/inst/include/dlib/LICENSE.txt                                                         |   44 
 dlib-1.0.3/dlib/inst/include/dlib/algs.h                                                              | 2122 -
 dlib-1.0.3/dlib/inst/include/dlib/all/source.cpp                                                      |  184 
 dlib-1.0.3/dlib/inst/include/dlib/all_console.cpp                                                     |   18 
 dlib-1.0.3/dlib/inst/include/dlib/all_gui.cpp                                                         |   18 
 dlib-1.0.3/dlib/inst/include/dlib/any.h                                                               |   26 
 dlib-1.0.3/dlib/inst/include/dlib/any/any.h                                                           |  362 
 dlib-1.0.3/dlib/inst/include/dlib/any/any_abstract.h                                                  |  420 
 dlib-1.0.3/dlib/inst/include/dlib/any/any_decision_function.h                                         |  420 
 dlib-1.0.3/dlib/inst/include/dlib/any/any_decision_function_abstract.h                                |  448 
 dlib-1.0.3/dlib/inst/include/dlib/any/any_function.h                                                  | 1772 -
 dlib-1.0.3/dlib/inst/include/dlib/any/any_function_abstract.h                                         |  584 
 dlib-1.0.3/dlib/inst/include/dlib/any/any_function_impl.h                                             | 1032 
 dlib-1.0.3/dlib/inst/include/dlib/any/any_function_impl2.h                                            |   88 
 dlib-1.0.3/dlib/inst/include/dlib/any/any_trainer.h                                                   |  436 
 dlib-1.0.3/dlib/inst/include/dlib/any/any_trainer_abstract.h                                          |  468 
 dlib-1.0.3/dlib/inst/include/dlib/array.h                                                             |   20 
 dlib-1.0.3/dlib/inst/include/dlib/array/array_kernel.h                                                | 1560 -
 dlib-1.0.3/dlib/inst/include/dlib/array/array_kernel_abstract.h                                       |  672 
 dlib-1.0.3/dlib/inst/include/dlib/array/array_tools.h                                                 |   76 
 dlib-1.0.3/dlib/inst/include/dlib/array/array_tools_abstract.h                                        |   66 
 dlib-1.0.3/dlib/inst/include/dlib/array2d.h                                                           |   24 
 dlib-1.0.3/dlib/inst/include/dlib/array2d/array2d_generic_image.h                                     |  134 
 dlib-1.0.3/dlib/inst/include/dlib/array2d/array2d_kernel.h                                            |  998 
 dlib-1.0.3/dlib/inst/include/dlib/array2d/array2d_kernel_abstract.h                                   |  608 
 dlib-1.0.3/dlib/inst/include/dlib/array2d/serialize_pixel_overloads.h                                 |  742 
 dlib-1.0.3/dlib/inst/include/dlib/assert.h                                                            |  424 
 dlib-1.0.3/dlib/inst/include/dlib/base64.h                                                            |   18 
 dlib-1.0.3/dlib/inst/include/dlib/base64/base64_kernel_1.cpp                                          |  806 
 dlib-1.0.3/dlib/inst/include/dlib/base64/base64_kernel_1.h                                            |  184 
 dlib-1.0.3/dlib/inst/include/dlib/base64/base64_kernel_abstract.h                                     |  242 
 dlib-1.0.3/dlib/inst/include/dlib/bayes_utils.h                                                       |   22 
 dlib-1.0.3/dlib/inst/include/dlib/bayes_utils/bayes_utils.h                                           | 3354 +-
 dlib-1.0.3/dlib/inst/include/dlib/bayes_utils/bayes_utils_abstract.h                                  | 2084 -
 dlib-1.0.3/dlib/inst/include/dlib/bigint.h                                                            |   86 
 dlib-1.0.3/dlib/inst/include/dlib/bigint/bigint_kernel_1.cpp                                          | 3440 +-
 dlib-1.0.3/dlib/inst/include/dlib/bigint/bigint_kernel_1.h                                            | 1082 
 dlib-1.0.3/dlib/inst/include/dlib/bigint/bigint_kernel_2.cpp                                          | 3890 +-
 dlib-1.0.3/dlib/inst/include/dlib/bigint/bigint_kernel_2.h                                            | 1134 
 dlib-1.0.3/dlib/inst/include/dlib/bigint/bigint_kernel_abstract.h                                     | 1334 
 dlib-1.0.3/dlib/inst/include/dlib/bigint/bigint_kernel_c.h                                            | 2260 -
 dlib-1.0.3/dlib/inst/include/dlib/binary_search_tree.h                                                |  100 
 dlib-1.0.3/dlib/inst/include/dlib/binary_search_tree/binary_search_tree_kernel_1.h                    | 4128 +-
 dlib-1.0.3/dlib/inst/include/dlib/binary_search_tree/binary_search_tree_kernel_2.h                    | 3794 +-
 dlib-1.0.3/dlib/inst/include/dlib/binary_search_tree/binary_search_tree_kernel_abstract.h             |  622 
 dlib-1.0.3/dlib/inst/include/dlib/binary_search_tree/binary_search_tree_kernel_c.h                    |  470 
 dlib-1.0.3/dlib/inst/include/dlib/bit_stream.h                                                        |   84 
 dlib-1.0.3/dlib/inst/include/dlib/bit_stream/bit_stream_kernel_1.cpp                                  |  400 
 dlib-1.0.3/dlib/inst/include/dlib/bit_stream/bit_stream_kernel_1.h                                    |  240 
 dlib-1.0.3/dlib/inst/include/dlib/bit_stream/bit_stream_kernel_abstract.h                             |  370 
 dlib-1.0.3/dlib/inst/include/dlib/bit_stream/bit_stream_kernel_c.h                                    |  344 
 dlib-1.0.3/dlib/inst/include/dlib/bit_stream/bit_stream_multi_1.h                                     |  206 
 dlib-1.0.3/dlib/inst/include/dlib/bit_stream/bit_stream_multi_abstract.h                              |  154 
 dlib-1.0.3/dlib/inst/include/dlib/bit_stream/bit_stream_multi_c.h                                     |  202 
 dlib-1.0.3/dlib/inst/include/dlib/bound_function_pointer.h                                            |   20 
 dlib-1.0.3/dlib/inst/include/dlib/bound_function_pointer/bound_function_pointer_kernel_1.h            | 1548 -
 dlib-1.0.3/dlib/inst/include/dlib/bound_function_pointer/bound_function_pointer_kernel_abstract.h     |  912 
 dlib-1.0.3/dlib/inst/include/dlib/bridge.h                                                            |   34 
 dlib-1.0.3/dlib/inst/include/dlib/bridge/bridge.h                                                     | 1334 
 dlib-1.0.3/dlib/inst/include/dlib/bridge/bridge_abstract.h                                            |  694 
 dlib-1.0.3/dlib/inst/include/dlib/bsp.h                                                               |   24 
 dlib-1.0.3/dlib/inst/include/dlib/bsp/bsp.cpp                                                         |  990 
 dlib-1.0.3/dlib/inst/include/dlib/bsp/bsp.h                                                           | 2082 -
 dlib-1.0.3/dlib/inst/include/dlib/bsp/bsp_abstract.h                                                  | 1824 -
 dlib-1.0.3/dlib/inst/include/dlib/byte_orderer.h                                                      |   20 
 dlib-1.0.3/dlib/inst/include/dlib/byte_orderer/byte_orderer_kernel_1.h                                |  352 
 dlib-1.0.3/dlib/inst/include/dlib/byte_orderer/byte_orderer_kernel_abstract.h                         |  298 
 dlib-1.0.3/dlib/inst/include/dlib/cassert                                                             |    2 
 dlib-1.0.3/dlib/inst/include/dlib/clustering.h                                                        |   26 
 dlib-1.0.3/dlib/inst/include/dlib/clustering/bottom_up_cluster.h                                      |  276 
 dlib-1.0.3/dlib/inst/include/dlib/clustering/bottom_up_cluster_abstract.h                             |  102 
 dlib-1.0.3/dlib/inst/include/dlib/clustering/chinese_whispers.h                                       |  270 
 dlib-1.0.3/dlib/inst/include/dlib/clustering/chinese_whispers_abstract.h                              |  194 
 dlib-1.0.3/dlib/inst/include/dlib/clustering/modularity_clustering.h                                  | 1030 
 dlib-1.0.3/dlib/inst/include/dlib/clustering/modularity_clustering_abstract.h                         |  250 
 dlib-1.0.3/dlib/inst/include/dlib/clustering/spectral_cluster.h                                       |  160 
 dlib-1.0.3/dlib/inst/include/dlib/clustering/spectral_cluster_abstract.h                              |   86 
 dlib-1.0.3/dlib/inst/include/dlib/cmake                                                               |  214 
 dlib-1.0.3/dlib/inst/include/dlib/cmake_utils/add_global_compiler_switch.cmake                        |   66 
 dlib-1.0.3/dlib/inst/include/dlib/cmake_utils/add_python_module                                       |  370 
 dlib-1.0.3/dlib/inst/include/dlib/cmake_utils/cmake_find_blas.txt                                     |  640 
 dlib-1.0.3/dlib/inst/include/dlib/cmake_utils/dlib.pc.in                                              |   22 
 dlib-1.0.3/dlib/inst/include/dlib/cmake_utils/dlibConfig.cmake.in                                     |   80 
 dlib-1.0.3/dlib/inst/include/dlib/cmake_utils/release_build_by_default                                |   18 
 dlib-1.0.3/dlib/inst/include/dlib/cmake_utils/tell_visual_studio_to_use_static_runtime.cmake          |   38 
 dlib-1.0.3/dlib/inst/include/dlib/cmake_utils/test_for_cpp11/CMakeLists.txt                           |   10 
 dlib-1.0.3/dlib/inst/include/dlib/cmake_utils/test_for_cpp11/cpp11_test.cpp                           |  102 
 dlib-1.0.3/dlib/inst/include/dlib/cmake_utils/test_for_cuda/CMakeLists.txt                            |   24 
 dlib-1.0.3/dlib/inst/include/dlib/cmake_utils/test_for_cuda/cuda_test.cu                              |   42 
 dlib-1.0.3/dlib/inst/include/dlib/cmake_utils/test_for_cudnn/CMakeLists.txt                           |   30 
 dlib-1.0.3/dlib/inst/include/dlib/cmake_utils/test_for_cudnn/find_cudnn.txt                           |   32 
 dlib-1.0.3/dlib/inst/include/dlib/cmake_utils/use_cpp_11.cmake                                        |  200 
 dlib-1.0.3/dlib/inst/include/dlib/cmd_line_parser.h                                                   |  168 
 dlib-1.0.3/dlib/inst/include/dlib/cmd_line_parser/cmd_line_parser_check_1.h                           | 1160 
 dlib-1.0.3/dlib/inst/include/dlib/cmd_line_parser/cmd_line_parser_check_c.h                           |  906 
 dlib-1.0.3/dlib/inst/include/dlib/cmd_line_parser/cmd_line_parser_kernel_1.h                          | 1598 -
 dlib-1.0.3/dlib/inst/include/dlib/cmd_line_parser/cmd_line_parser_kernel_abstract.h                   | 1346 
 dlib-1.0.3/dlib/inst/include/dlib/cmd_line_parser/cmd_line_parser_kernel_c.h                          |  406 
 dlib-1.0.3/dlib/inst/include/dlib/cmd_line_parser/cmd_line_parser_print_1.h                           |  410 
 dlib-1.0.3/dlib/inst/include/dlib/cmd_line_parser/get_option.h                                        |  362 
 dlib-1.0.3/dlib/inst/include/dlib/cmd_line_parser/get_option_abstract.h                               |  292 
 dlib-1.0.3/dlib/inst/include/dlib/compress_stream.h                                                   |  266 
 dlib-1.0.3/dlib/inst/include/dlib/compress_stream/compress_stream_kernel_1.h                          |  504 
 dlib-1.0.3/dlib/inst/include/dlib/compress_stream/compress_stream_kernel_2.h                          |  862 
 dlib-1.0.3/dlib/inst/include/dlib/compress_stream/compress_stream_kernel_3.h                          |  762 
 dlib-1.0.3/dlib/inst/include/dlib/compress_stream/compress_stream_kernel_abstract.h                   |  188 
 dlib-1.0.3/dlib/inst/include/dlib/conditioning_class.h                                                |  160 
 dlib-1.0.3/dlib/inst/include/dlib/conditioning_class/conditioning_class_kernel_1.h                    |  666 
 dlib-1.0.3/dlib/inst/include/dlib/conditioning_class/conditioning_class_kernel_2.h                    | 1000 
 dlib-1.0.3/dlib/inst/include/dlib/conditioning_class/conditioning_class_kernel_3.h                    |  876 
 dlib-1.0.3/dlib/inst/include/dlib/conditioning_class/conditioning_class_kernel_4.h                    | 1066 
 dlib-1.0.3/dlib/inst/include/dlib/conditioning_class/conditioning_class_kernel_abstract.h             |  456 
 dlib-1.0.3/dlib/inst/include/dlib/conditioning_class/conditioning_class_kernel_c.h                    |  324 
 dlib-1.0.3/dlib/inst/include/dlib/config.h                                                            |   50 
 dlib-1.0.3/dlib/inst/include/dlib/config.h.in                                                         |   50 
 dlib-1.0.3/dlib/inst/include/dlib/config_reader.h                                                     |   78 
 dlib-1.0.3/dlib/inst/include/dlib/config_reader/config_reader_kernel_1.h                              | 1476 -
 dlib-1.0.3/dlib/inst/include/dlib/config_reader/config_reader_kernel_abstract.h                       |  726 
 dlib-1.0.3/dlib/inst/include/dlib/config_reader/config_reader_thread_safe_1.h                         |  912 
 dlib-1.0.3/dlib/inst/include/dlib/config_reader/config_reader_thread_safe_abstract.h                  |   90 
 dlib-1.0.3/dlib/inst/include/dlib/console_progress_indicator.h                                        |  414 
 dlib-1.0.3/dlib/inst/include/dlib/control.h                                                           |   22 
 dlib-1.0.3/dlib/inst/include/dlib/control/approximate_linear_models.h                                 |  256 
 dlib-1.0.3/dlib/inst/include/dlib/control/approximate_linear_models_abstract.h                        |  426 
 dlib-1.0.3/dlib/inst/include/dlib/control/lspi.h                                                      |  376 
 dlib-1.0.3/dlib/inst/include/dlib/control/lspi_abstract.h                                             |  386 
 dlib-1.0.3/dlib/inst/include/dlib/control/mpc.h                                                       |  740 
 dlib-1.0.3/dlib/inst/include/dlib/control/mpc_abstract.h                                              |  552 
 dlib-1.0.3/dlib/inst/include/dlib/cpp_pretty_printer.h                                                |   78 
 dlib-1.0.3/dlib/inst/include/dlib/cpp_pretty_printer/cpp_pretty_printer_kernel_1.h                    | 1166 
 dlib-1.0.3/dlib/inst/include/dlib/cpp_pretty_printer/cpp_pretty_printer_kernel_2.h                    | 1040 
 dlib-1.0.3/dlib/inst/include/dlib/cpp_pretty_printer/cpp_pretty_printer_kernel_abstract.h             |  176 
 dlib-1.0.3/dlib/inst/include/dlib/cpp_tokenizer.h                                                     |   80 
 dlib-1.0.3/dlib/inst/include/dlib/cpp_tokenizer/cpp_tokenizer_kernel_1.h                              | 1350 
 dlib-1.0.3/dlib/inst/include/dlib/cpp_tokenizer/cpp_tokenizer_kernel_abstract.h                       |  448 
 dlib-1.0.3/dlib/inst/include/dlib/cpp_tokenizer/cpp_tokenizer_kernel_c.h                              |  274 
 dlib-1.0.3/dlib/inst/include/dlib/crc32.h                                                             |   20 
 dlib-1.0.3/dlib/inst/include/dlib/crc32/crc32_kernel_1.h                                              |  524 
 dlib-1.0.3/dlib/inst/include/dlib/crc32/crc32_kernel_abstract.h                                       |  264 
 dlib-1.0.3/dlib/inst/include/dlib/cstring                                                             |    2 
 dlib-1.0.3/dlib/inst/include/dlib/data_io.h                                                           |   36 
 dlib-1.0.3/dlib/inst/include/dlib/data_io/image_dataset_metadata.cpp                                  |  786 
 dlib-1.0.3/dlib/inst/include/dlib/data_io/image_dataset_metadata.h                                    |  316 
 dlib-1.0.3/dlib/inst/include/dlib/data_io/libsvm_io.h                                                 |  552 
 dlib-1.0.3/dlib/inst/include/dlib/data_io/libsvm_io_abstract.h                                        |  250 
 dlib-1.0.3/dlib/inst/include/dlib/data_io/load_image_dataset.h                                        |  990 
 dlib-1.0.3/dlib/inst/include/dlib/data_io/load_image_dataset_abstract.h                               |  712 
 dlib-1.0.3/dlib/inst/include/dlib/data_io/mnist.cpp                                                   |  228 
 dlib-1.0.3/dlib/inst/include/dlib/data_io/mnist.h                                                     |   64 
 dlib-1.0.3/dlib/inst/include/dlib/data_io/mnist_abstract.h                                            |   92 
 dlib-1.0.3/dlib/inst/include/dlib/dir_nav.h                                                           |   42 
 dlib-1.0.3/dlib/inst/include/dlib/dir_nav/dir_nav_extensions.cpp                                      |  174 
 dlib-1.0.3/dlib/inst/include/dlib/dir_nav/dir_nav_extensions.h                                        |  316 
 dlib-1.0.3/dlib/inst/include/dlib/dir_nav/dir_nav_extensions_abstract.h                               |  348 
 dlib-1.0.3/dlib/inst/include/dlib/dir_nav/dir_nav_kernel_1.cpp                                        |  504 
 dlib-1.0.3/dlib/inst/include/dlib/dir_nav/dir_nav_kernel_1.h                                          | 1236 
 dlib-1.0.3/dlib/inst/include/dlib/dir_nav/dir_nav_kernel_2.cpp                                        |  496 
 dlib-1.0.3/dlib/inst/include/dlib/dir_nav/dir_nav_kernel_2.h                                          | 1290 
 dlib-1.0.3/dlib/inst/include/dlib/dir_nav/dir_nav_kernel_abstract.h                                   | 1014 
 dlib-1.0.3/dlib/inst/include/dlib/dir_nav/posix.h                                                     |   12 
 dlib-1.0.3/dlib/inst/include/dlib/dir_nav/windows.h                                                   |   12 
 dlib-1.0.3/dlib/inst/include/dlib/directed_graph.h                                                    |   74 
 dlib-1.0.3/dlib/inst/include/dlib/directed_graph/directed_graph_kernel_1.h                            | 1406 
 dlib-1.0.3/dlib/inst/include/dlib/directed_graph/directed_graph_kernel_abstract.h                     |  766 
 dlib-1.0.3/dlib/inst/include/dlib/disjoint_subsets.h                                                  |   22 
 dlib-1.0.3/dlib/inst/include/dlib/disjoint_subsets/disjoint_subsets.h                                 |  284 
 dlib-1.0.3/dlib/inst/include/dlib/disjoint_subsets/disjoint_subsets_abstract.h                        |  198 
 dlib-1.0.3/dlib/inst/include/dlib/dlib_basic_cpp_build_tutorial.txt                                   |   26 
 dlib-1.0.3/dlib/inst/include/dlib/dlib_include_path_tutorial.txt                                      |   40 
 dlib-1.0.3/dlib/inst/include/dlib/dnn.h                                                               |   52 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/core.h                                                          | 6936 ++--
 dlib-1.0.3/dlib/inst/include/dlib/dnn/core_abstract.h                                                 | 3240 +-
 dlib-1.0.3/dlib/inst/include/dlib/dnn/cpu_dlib.cpp                                                    | 3654 +-
 dlib-1.0.3/dlib/inst/include/dlib/dnn/cpu_dlib.h                                                      |  816 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/cublas_dlibapi.cpp                                              |  330 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/cublas_dlibapi.h                                                |  100 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/cuda_dlib.cu                                                    | 1710 -
 dlib-1.0.3/dlib/inst/include/dlib/dnn/cuda_dlib.h                                                     |  664 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/cuda_errors.h                                                   |  118 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/cuda_utils.h                                                    |  694 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/cudnn_dlibapi.cpp                                               | 2988 +-
 dlib-1.0.3/dlib/inst/include/dlib/dnn/cudnn_dlibapi.h                                                 | 1138 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/curand_dlibapi.cpp                                              |  204 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/curand_dlibapi.h                                                |  132 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/gpu_data.cpp                                                    |  448 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/gpu_data.h                                                      |  532 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/gpu_data_abstract.h                                             |  532 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/input.h                                                         | 1290 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/input_abstract.h                                                |  850 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/layers.h                                                        | 4572 +--
 dlib-1.0.3/dlib/inst/include/dlib/dnn/layers_abstract.h                                               | 3876 +-
 dlib-1.0.3/dlib/inst/include/dlib/dnn/loss.h                                                          | 1734 -
 dlib-1.0.3/dlib/inst/include/dlib/dnn/loss_abstract.h                                                 | 1054 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/solvers.h                                                       |  710 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/solvers_abstract.h                                              |  378 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/tensor.h                                                        | 1298 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/tensor_abstract.h                                               | 1384 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/tensor_tools.cpp                                                | 1406 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/tensor_tools.h                                                  | 2536 -
 dlib-1.0.3/dlib/inst/include/dlib/dnn/trainer.h                                                       | 2098 -
 dlib-1.0.3/dlib/inst/include/dlib/dnn/trainer_abstract.h                                              | 1082 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/utilities.h                                                     |  350 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/utilities_abstract.h                                            |  202 
 dlib-1.0.3/dlib/inst/include/dlib/dnn/validation.h                                                    |  190 
 dlib-1.0.3/dlib/inst/include/dlib/enable_if.h                                                         |  124 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_decoder.h                                                   |   88 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_decoder/entropy_decoder_kernel_1.cpp                        |  440 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_decoder/entropy_decoder_kernel_1.h                          |  264 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_decoder/entropy_decoder_kernel_2.cpp                        |  448 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_decoder/entropy_decoder_kernel_2.h                          |  254 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_decoder/entropy_decoder_kernel_abstract.h                   |  414 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_decoder/entropy_decoder_kernel_c.h                          |  246 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_decoder_model.h                                             |  216 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_decoder_model/entropy_decoder_model_kernel_1.h              |  346 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_decoder_model/entropy_decoder_model_kernel_2.h              |  490 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_decoder_model/entropy_decoder_model_kernel_3.h              |  670 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_decoder_model/entropy_decoder_model_kernel_4.h              | 1244 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_decoder_model/entropy_decoder_model_kernel_5.h              | 1586 -
 dlib-1.0.3/dlib/inst/include/dlib/entropy_decoder_model/entropy_decoder_model_kernel_6.h              |  262 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_decoder_model/entropy_decoder_model_kernel_abstract.h       |  232 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_encoder.h                                                   |   86 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_encoder/entropy_encoder_kernel_1.cpp                        |  478 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_encoder/entropy_encoder_kernel_1.h                          |  238 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_encoder/entropy_encoder_kernel_2.cpp                        |  466 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_encoder/entropy_encoder_kernel_2.h                          |  224 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_encoder/entropy_encoder_kernel_abstract.h                   |  322 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_encoder/entropy_encoder_kernel_c.h                          |  224 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_encoder_model.h                                             |  292 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_encoder_model/entropy_encoder_model_kernel_1.h              |  334 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_encoder_model/entropy_encoder_model_kernel_2.h              |  492 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_encoder_model/entropy_encoder_model_kernel_3.h              |  682 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_encoder_model/entropy_encoder_model_kernel_4.h              | 1106 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_encoder_model/entropy_encoder_model_kernel_5.h              | 1634 -
 dlib-1.0.3/dlib/inst/include/dlib/entropy_encoder_model/entropy_encoder_model_kernel_6.h              |  254 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_encoder_model/entropy_encoder_model_kernel_abstract.h       |  236 
 dlib-1.0.3/dlib/inst/include/dlib/entropy_encoder_model/entropy_encoder_model_kernel_c.h              |  130 
 dlib-1.0.3/dlib/inst/include/dlib/error.h                                                             |  898 
 dlib-1.0.3/dlib/inst/include/dlib/filtering.h                                                         |   24 
 dlib-1.0.3/dlib/inst/include/dlib/filtering/kalman_filter.h                                           |  320 
 dlib-1.0.3/dlib/inst/include/dlib/filtering/kalman_filter_abstract.h                                  |  416 
 dlib-1.0.3/dlib/inst/include/dlib/filtering/rls_filter.h                                              |  396 
 dlib-1.0.3/dlib/inst/include/dlib/filtering/rls_filter_abstract.h                                     |  342 
 dlib-1.0.3/dlib/inst/include/dlib/float_details.h                                                     |  322 
 dlib-1.0.3/dlib/inst/include/dlib/fstream                                                             |    2 
 dlib-1.0.3/dlib/inst/include/dlib/general_hash/count_bits.h                                           |  124 
 dlib-1.0.3/dlib/inst/include/dlib/general_hash/count_bits_abstract.h                                  |   96 
 dlib-1.0.3/dlib/inst/include/dlib/general_hash/general_hash.h                                         |  160 
 dlib-1.0.3/dlib/inst/include/dlib/general_hash/hash.h                                                 |  284 
 dlib-1.0.3/dlib/inst/include/dlib/general_hash/hash_abstract.h                                        |  364 
 dlib-1.0.3/dlib/inst/include/dlib/general_hash/murmur_hash3.h                                         | 1034 
 dlib-1.0.3/dlib/inst/include/dlib/general_hash/murmur_hash3_abstract.h                                |  250 
 dlib-1.0.3/dlib/inst/include/dlib/general_hash/random_hashing.h                                       | 1754 -
 dlib-1.0.3/dlib/inst/include/dlib/general_hash/random_hashing_abstract.h                              |  116 
 dlib-1.0.3/dlib/inst/include/dlib/geometry.h                                                          |   28 
 dlib-1.0.3/dlib/inst/include/dlib/geometry/border_enumerator.h                                        |  372 
 dlib-1.0.3/dlib/inst/include/dlib/geometry/border_enumerator_abstract.h                               |  252 
 dlib-1.0.3/dlib/inst/include/dlib/geometry/drectangle.h                                               |  928 
 dlib-1.0.3/dlib/inst/include/dlib/geometry/drectangle_abstract.h                                      | 1222 
 dlib-1.0.3/dlib/inst/include/dlib/geometry/point_transforms.h                                         | 1976 -
 dlib-1.0.3/dlib/inst/include/dlib/geometry/point_transforms_abstract.h                                | 1594 -
 dlib-1.0.3/dlib/inst/include/dlib/geometry/rectangle.h                                                | 1602 -
 dlib-1.0.3/dlib/inst/include/dlib/geometry/rectangle_abstract.h                                       | 1638 -
 dlib-1.0.3/dlib/inst/include/dlib/geometry/vector.h                                                   | 2648 -
 dlib-1.0.3/dlib/inst/include/dlib/geometry/vector_abstract.h                                          |  978 
 dlib-1.0.3/dlib/inst/include/dlib/graph.h                                                             |   74 
 dlib-1.0.3/dlib/inst/include/dlib/graph/graph_kernel_1.h                                              | 1256 
 dlib-1.0.3/dlib/inst/include/dlib/graph/graph_kernel_abstract.h                                       |  658 
 dlib-1.0.3/dlib/inst/include/dlib/graph_cuts.h                                                        |   28 
 dlib-1.0.3/dlib/inst/include/dlib/graph_cuts/find_max_factor_graph_potts.h                            | 1918 -
 dlib-1.0.3/dlib/inst/include/dlib/graph_cuts/find_max_factor_graph_potts_abstract.h                   | 1272 
 dlib-1.0.3/dlib/inst/include/dlib/graph_cuts/general_flow_graph.h                                     |  344 
 dlib-1.0.3/dlib/inst/include/dlib/graph_cuts/general_potts_problem.h                                  |  198 
 dlib-1.0.3/dlib/inst/include/dlib/graph_cuts/graph_labeler.h                                          |  422 
 dlib-1.0.3/dlib/inst/include/dlib/graph_cuts/graph_labeler_abstract.h                                 |  370 
 dlib-1.0.3/dlib/inst/include/dlib/graph_cuts/min_cut.h                                                | 1142 
 dlib-1.0.3/dlib/inst/include/dlib/graph_cuts/min_cut_abstract.h                                       |  952 
 dlib-1.0.3/dlib/inst/include/dlib/graph_utils.h                                                       |   24 
 dlib-1.0.3/dlib/inst/include/dlib/graph_utils/edge_list_graphs.h                                      | 1186 
 dlib-1.0.3/dlib/inst/include/dlib/graph_utils/edge_list_graphs_abstract.h                             |  716 
 dlib-1.0.3/dlib/inst/include/dlib/graph_utils/find_k_nearest_neighbors_lsh.h                          |  434 
 dlib-1.0.3/dlib/inst/include/dlib/graph_utils/find_k_nearest_neighbors_lsh_abstract.h                 |  204 
 dlib-1.0.3/dlib/inst/include/dlib/graph_utils/function_objects.h                                      |  258 
 dlib-1.0.3/dlib/inst/include/dlib/graph_utils/function_objects_abstract.h                             |  418 
 dlib-1.0.3/dlib/inst/include/dlib/graph_utils/graph_utils.h                                           | 2454 -
 dlib-1.0.3/dlib/inst/include/dlib/graph_utils/graph_utils_abstract.h                                  |  904 
 dlib-1.0.3/dlib/inst/include/dlib/graph_utils/ordered_sample_pair.h                                   |  250 
 dlib-1.0.3/dlib/inst/include/dlib/graph_utils/ordered_sample_pair_abstract.h                          |  256 
 dlib-1.0.3/dlib/inst/include/dlib/graph_utils/sample_pair.h                                           |  358 
 dlib-1.0.3/dlib/inst/include/dlib/graph_utils/sample_pair_abstract.h                                  |  384 
 dlib-1.0.3/dlib/inst/include/dlib/graph_utils_threaded.h                                              |   24 
 dlib-1.0.3/dlib/inst/include/dlib/gui_core.h                                                          |   40 
 dlib-1.0.3/dlib/inst/include/dlib/gui_core/gui_core_kernel_1.cpp                                      | 4368 +--
 dlib-1.0.3/dlib/inst/include/dlib/gui_core/gui_core_kernel_1.h                                        |  840 
 dlib-1.0.3/dlib/inst/include/dlib/gui_core/gui_core_kernel_2.cpp                                      | 3990 +-
 dlib-1.0.3/dlib/inst/include/dlib/gui_core/gui_core_kernel_2.h                                        |  838 
 dlib-1.0.3/dlib/inst/include/dlib/gui_core/gui_core_kernel_abstract.h                                 | 1584 -
 dlib-1.0.3/dlib/inst/include/dlib/gui_core/windows.h                                                  |   12 
 dlib-1.0.3/dlib/inst/include/dlib/gui_core/xlib.h                                                     |   12 
 dlib-1.0.3/dlib/inst/include/dlib/gui_widgets.h                                                       |   36 
 dlib-1.0.3/dlib/inst/include/dlib/gui_widgets/base_widgets.cpp                                        | 6684 ++--
 dlib-1.0.3/dlib/inst/include/dlib/gui_widgets/base_widgets.h                                          | 5354 +--
 dlib-1.0.3/dlib/inst/include/dlib/gui_widgets/base_widgets_abstract.h                                 | 4580 +--
 dlib-1.0.3/dlib/inst/include/dlib/gui_widgets/canvas_drawing.cpp                                      |  202 
 dlib-1.0.3/dlib/inst/include/dlib/gui_widgets/canvas_drawing.h                                        | 1928 -
 dlib-1.0.3/dlib/inst/include/dlib/gui_widgets/canvas_drawing_abstract.h                               |  728 
 dlib-1.0.3/dlib/inst/include/dlib/gui_widgets/drawable.cpp                                            | 1088 
 dlib-1.0.3/dlib/inst/include/dlib/gui_widgets/drawable.h                                              | 1050 
 dlib-1.0.3/dlib/inst/include/dlib/gui_widgets/drawable_abstract.h                                     | 1434 
 dlib-1.0.3/dlib/inst/include/dlib/gui_widgets/fonts.cpp                                               | 1342 
 dlib-1.0.3/dlib/inst/include/dlib/gui_widgets/fonts.h                                                 | 1254 
 dlib-1.0.3/dlib/inst/include/dlib/gui_widgets/fonts_abstract.h                                        |  984 
 dlib-1.0.3/dlib/inst/include/dlib/gui_widgets/nativefont.h                                            | 1224 
 dlib-1.0.3/dlib/inst/include/dlib/gui_widgets/style.cpp                                               | 1996 -
 dlib-1.0.3/dlib/inst/include/dlib/gui_widgets/style.h                                                 | 1650 -
 dlib-1.0.3/dlib/inst/include/dlib/gui_widgets/style_abstract.h                                        | 1554 -
 dlib-1.0.3/dlib/inst/include/dlib/gui_widgets/widgets.cpp                                             |14540 +++++-----
 dlib-1.0.3/dlib/inst/include/dlib/gui_widgets/widgets.h                                               | 8320 ++---
 dlib-1.0.3/dlib/inst/include/dlib/gui_widgets/widgets_abstract.h                                      | 6918 ++--
 dlib-1.0.3/dlib/inst/include/dlib/hash.h                                                              |   28 
 dlib-1.0.3/dlib/inst/include/dlib/hash_map.h                                                          |  126 
 dlib-1.0.3/dlib/inst/include/dlib/hash_map/hash_map_kernel_1.h                                        |  920 
 dlib-1.0.3/dlib/inst/include/dlib/hash_map/hash_map_kernel_abstract.h                                 |  494 
 dlib-1.0.3/dlib/inst/include/dlib/hash_map/hash_map_kernel_c.h                                        |  552 
 dlib-1.0.3/dlib/inst/include/dlib/hash_set.h                                                          |  126 
 dlib-1.0.3/dlib/inst/include/dlib/hash_set/hash_set_kernel_1.h                                        |  782 
 dlib-1.0.3/dlib/inst/include/dlib/hash_set/hash_set_kernel_abstract.h                                 |  414 
 dlib-1.0.3/dlib/inst/include/dlib/hash_set/hash_set_kernel_c.h                                        |  380 
 dlib-1.0.3/dlib/inst/include/dlib/hash_table.h                                                        |  120 
 dlib-1.0.3/dlib/inst/include/dlib/hash_table/hash_table_kernel_1.h                                    | 1638 -
 dlib-1.0.3/dlib/inst/include/dlib/hash_table/hash_table_kernel_2.h                                    | 1224 
 dlib-1.0.3/dlib/inst/include/dlib/hash_table/hash_table_kernel_abstract.h                             |  506 
 dlib-1.0.3/dlib/inst/include/dlib/hash_table/hash_table_kernel_c.h                                    |  388 
 dlib-1.0.3/dlib/inst/include/dlib/http_client/http_client.cpp                                         | 1486 -
 dlib-1.0.3/dlib/inst/include/dlib/http_client/http_client.h                                           |  202 
 dlib-1.0.3/dlib/inst/include/dlib/http_client/http_client_abstract.h                                  |  436 
 dlib-1.0.3/dlib/inst/include/dlib/image_io.h                                                          |   40 
 dlib-1.0.3/dlib/inst/include/dlib/image_keypoint.h                                                    |   32 
 dlib-1.0.3/dlib/inst/include/dlib/image_keypoint/binned_vector_feature_image.h                        |  866 
 dlib-1.0.3/dlib/inst/include/dlib/image_keypoint/binned_vector_feature_image_abstract.h               |  574 
 dlib-1.0.3/dlib/inst/include/dlib/image_keypoint/build_separable_poly_filters.h                       |  372 
 dlib-1.0.3/dlib/inst/include/dlib/image_keypoint/draw_surf_points.h                                   |   80 
 dlib-1.0.3/dlib/inst/include/dlib/image_keypoint/draw_surf_points_abstract.h                          |   60 
 dlib-1.0.3/dlib/inst/include/dlib/image_keypoint/fine_hog_image.h                                     |  756 
 dlib-1.0.3/dlib/inst/include/dlib/image_keypoint/fine_hog_image_abstract.h                            |  552 
 dlib-1.0.3/dlib/inst/include/dlib/image_keypoint/hashed_feature_image.h                               | 1036 
 dlib-1.0.3/dlib/inst/include/dlib/image_keypoint/hashed_feature_image_abstract.h                      |  606 
 dlib-1.0.3/dlib/inst/include/dlib/image_keypoint/hessian_pyramid.h                                    | 1062 
 dlib-1.0.3/dlib/inst/include/dlib/image_keypoint/hessian_pyramid_abstract.h                           |  488 
 dlib-1.0.3/dlib/inst/include/dlib/image_keypoint/hog.h                                                | 1028 
 dlib-1.0.3/dlib/inst/include/dlib/image_keypoint/hog_abstract.h                                       |  670 
 dlib-1.0.3/dlib/inst/include/dlib/image_keypoint/nearest_neighbor_feature_image.h                     |  816 
 dlib-1.0.3/dlib/inst/include/dlib/image_keypoint/nearest_neighbor_feature_image_abstract.h            |  508 
 dlib-1.0.3/dlib/inst/include/dlib/image_keypoint/poly_image.h                                         | 1298 
 dlib-1.0.3/dlib/inst/include/dlib/image_keypoint/poly_image_abstract.h                                |  670 
 dlib-1.0.3/dlib/inst/include/dlib/image_keypoint/surf.h                                               |  590 
 dlib-1.0.3/dlib/inst/include/dlib/image_keypoint/surf_abstract.h                                      |  326 
 dlib-1.0.3/dlib/inst/include/dlib/image_loader/image_loader.h                                         | 1726 -
 dlib-1.0.3/dlib/inst/include/dlib/image_loader/image_loader_abstract.h                                |  272 
 dlib-1.0.3/dlib/inst/include/dlib/image_loader/jpeg_loader.cpp                                        |  330 
 dlib-1.0.3/dlib/inst/include/dlib/image_loader/jpeg_loader.h                                          |  200 
 dlib-1.0.3/dlib/inst/include/dlib/image_loader/jpeg_loader_abstract.h                                 |  266 
 dlib-1.0.3/dlib/inst/include/dlib/image_loader/load_image.h                                           |  452 
 dlib-1.0.3/dlib/inst/include/dlib/image_loader/load_image_abstract.h                                  |   74 
 dlib-1.0.3/dlib/inst/include/dlib/image_loader/png_loader.cpp                                         |  422 
 dlib-1.0.3/dlib/inst/include/dlib/image_loader/png_loader.h                                           |  442 
 dlib-1.0.3/dlib/inst/include/dlib/image_loader/png_loader_abstract.h                                  |  324 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing.h                                                  |   54 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/box_overlap_testing.h                              |  384 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/box_overlap_testing_abstract.h                     |  346 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/correlation_tracker.h                              |  806 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/correlation_tracker_abstract.h                     |  324 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/detection_template_tools.h                         |  226 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/detection_template_tools_abstract.h                |  190 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/frontal_face_detector.h                            | 4746 +--
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/frontal_face_detector_abstract.h                   |   50 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/full_object_detection.h                            |  322 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/full_object_detection_abstract.h                   |  370 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/generic_image.h                                    |  862 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/object_detector.h                                  | 1252 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/object_detector_abstract.h                         |  808 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/remove_unobtainable_rectangles.h                   |  634 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/remove_unobtainable_rectangles_abstract.h          |  112 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/render_face_detections.h                           |  176 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/render_face_detections_abstract.h                  |  104 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/scan_fhog_pyramid.h                                | 2698 -
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/scan_fhog_pyramid_abstract.h                       | 1568 -
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/scan_image.h                                       |  736 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/scan_image_abstract.h                              |  454 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/scan_image_boxes.h                                 | 1260 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/scan_image_boxes_abstract.h                        |  788 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/scan_image_custom.h                                |  802 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/scan_image_custom_abstract.h                       |  780 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/scan_image_pyramid.h                               | 2202 -
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/scan_image_pyramid_abstract.h                      |  990 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/scan_image_pyramid_tools.h                         |  360 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/scan_image_pyramid_tools_abstract.h                |  236 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/setup_hashed_features.h                            |  438 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/setup_hashed_features_abstract.h                   |  420 
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/shape_predictor.h                                  | 2530 -
 dlib-1.0.3/dlib/inst/include/dlib/image_processing/shape_predictor_abstract.h                         | 1026 
 dlib-1.0.3/dlib/inst/include/dlib/image_saver/dng_shared.h                                            |  576 
 dlib-1.0.3/dlib/inst/include/dlib/image_saver/image_saver.h                                           | 1376 
 dlib-1.0.3/dlib/inst/include/dlib/image_saver/image_saver_abstract.h                                  |  258 
 dlib-1.0.3/dlib/inst/include/dlib/image_saver/save_jpeg.cpp                                           |  348 
 dlib-1.0.3/dlib/inst/include/dlib/image_saver/save_jpeg.h                                             |  164 
 dlib-1.0.3/dlib/inst/include/dlib/image_saver/save_jpeg_abstract.h                                    |  104 
 dlib-1.0.3/dlib/inst/include/dlib/image_saver/save_png.cpp                                            |  248 
 dlib-1.0.3/dlib/inst/include/dlib/image_saver/save_png.h                                              |  324 
 dlib-1.0.3/dlib/inst/include/dlib/image_saver/save_png_abstract.h                                     |  100 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms.h                                                  |   62 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/assign_image.h                                     |  770 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/assign_image_abstract.h                            |  392 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/colormaps.h                                        |  538 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/colormaps_abstract.h                               |  296 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/draw.h                                             |  792 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/draw_abstract.h                                    |  300 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/edge_detector.h                                    |  604 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/edge_detector_abstract.h                           |  224 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/equalize_histogram.h                               |  286 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/equalize_histogram_abstract.h                      |  182 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/fhog.h                                             | 2810 -
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/fhog_abstract.h                                    |  692 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/hough_transform.h                                  |  716 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/hough_transform_abstract.h                         |  290 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/image_pyramid.h                                    | 2314 -
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/image_pyramid_abstract.h                           |  724 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/integral_image.h                                   |  380 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/integral_image_abstract.h                          |  338 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/interpolation.h                                    | 3948 +-
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/interpolation_abstract.h                           | 2620 -
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/label_connected_blobs.h                            |  376 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/label_connected_blobs_abstract.h                   |  398 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/lbp.h                                              |  614 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/lbp_abstract.h                                     |  278 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/morphological_operations.h                         | 1692 -
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/morphological_operations_abstract.h                |  632 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/random_color_transform.h                           |  314 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/random_color_transform_abstract.h                  |  188 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/random_cropper.h                                   |  518 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/random_cropper_abstract.h                          |  492 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/segment_image.h                                    | 1460 -
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/segment_image_abstract.h                           |  252 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/spatial_filtering.h                                | 3160 +-
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/spatial_filtering_abstract.h                       |  974 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/thresholding.h                                     |  680 
 dlib-1.0.3/dlib/inst/include/dlib/image_transforms/thresholding_abstract.h                            |  278 
 dlib-1.0.3/dlib/inst/include/dlib/interfaces/cmd_line_parser_option.h                                 |  214 
 dlib-1.0.3/dlib/inst/include/dlib/interfaces/enumerable.h                                             |  260 
 dlib-1.0.3/dlib/inst/include/dlib/interfaces/map_pair.h                                               |  148 
 dlib-1.0.3/dlib/inst/include/dlib/interfaces/remover.h                                                |  440 
 dlib-1.0.3/dlib/inst/include/dlib/iomanip                                                             |    2 
 dlib-1.0.3/dlib/inst/include/dlib/iosfwd                                                              |    2 
 dlib-1.0.3/dlib/inst/include/dlib/iosockstream.h                                                      |   22 
 dlib-1.0.3/dlib/inst/include/dlib/iosockstream/iosockstream.h                                         |  340 
 dlib-1.0.3/dlib/inst/include/dlib/iosockstream/iosockstream_abstract.h                                |  342 
 dlib-1.0.3/dlib/inst/include/dlib/iostream                                                            |    2 
 dlib-1.0.3/dlib/inst/include/dlib/is_kind.h                                                           |  324 
 dlib-1.0.3/dlib/inst/include/dlib/istream                                                             |    2 
 dlib-1.0.3/dlib/inst/include/dlib/linker.h                                                            |   18 
 dlib-1.0.3/dlib/inst/include/dlib/linker/linker_kernel_1.cpp                                          |  714 
 dlib-1.0.3/dlib/inst/include/dlib/linker/linker_kernel_1.h                                            |  282 
 dlib-1.0.3/dlib/inst/include/dlib/linker/linker_kernel_abstract.h                                     |  282 
 dlib-1.0.3/dlib/inst/include/dlib/locale                                                              |    2 
 dlib-1.0.3/dlib/inst/include/dlib/logger.h                                                            |   22 
 dlib-1.0.3/dlib/inst/include/dlib/logger/extra_logger_headers.cpp                                     |   80 
 dlib-1.0.3/dlib/inst/include/dlib/logger/extra_logger_headers.h                                       |   82 
 dlib-1.0.3/dlib/inst/include/dlib/logger/logger_config_file.cpp                                       |  428 
 dlib-1.0.3/dlib/inst/include/dlib/logger/logger_config_file.h                                         |  270 
 dlib-1.0.3/dlib/inst/include/dlib/logger/logger_kernel_1.cpp                                          |  996 
 dlib-1.0.3/dlib/inst/include/dlib/logger/logger_kernel_1.h                                            | 1372 
 dlib-1.0.3/dlib/inst/include/dlib/logger/logger_kernel_abstract.h                                     |  858 
 dlib-1.0.3/dlib/inst/include/dlib/lsh.h                                                               |   28 
 dlib-1.0.3/dlib/inst/include/dlib/lsh/create_random_projection_hash.h                                 |  464 
 dlib-1.0.3/dlib/inst/include/dlib/lsh/create_random_projection_hash_abstract.h                        |  296 
 dlib-1.0.3/dlib/inst/include/dlib/lsh/hashes.h                                                        |  438 
 dlib-1.0.3/dlib/inst/include/dlib/lsh/hashes_abstract.h                                               |  572 
 dlib-1.0.3/dlib/inst/include/dlib/lsh/projection_hash.h                                               |  236 
 dlib-1.0.3/dlib/inst/include/dlib/lsh/projection_hash_abstract.h                                      |  238 
 dlib-1.0.3/dlib/inst/include/dlib/lz77_buffer.h                                                       |   94 
 dlib-1.0.3/dlib/inst/include/dlib/lz77_buffer/lz77_buffer_kernel_1.h                                  |  526 
 dlib-1.0.3/dlib/inst/include/dlib/lz77_buffer/lz77_buffer_kernel_2.h                                  | 1008 
 dlib-1.0.3/dlib/inst/include/dlib/lz77_buffer/lz77_buffer_kernel_abstract.h                           |  420 
 dlib-1.0.3/dlib/inst/include/dlib/lz77_buffer/lz77_buffer_kernel_c.h                                  |  338 
 dlib-1.0.3/dlib/inst/include/dlib/lzp_buffer.h                                                        |   92 
 dlib-1.0.3/dlib/inst/include/dlib/lzp_buffer/lzp_buffer_kernel_1.h                                    |  472 
 dlib-1.0.3/dlib/inst/include/dlib/lzp_buffer/lzp_buffer_kernel_2.h                                    |  638 
 dlib-1.0.3/dlib/inst/include/dlib/lzp_buffer/lzp_buffer_kernel_abstract.h                             |  260 
 dlib-1.0.3/dlib/inst/include/dlib/lzp_buffer/lzp_buffer_kernel_c.h                                    |  202 
 dlib-1.0.3/dlib/inst/include/dlib/manifold_regularization.h                                           |   26 
 dlib-1.0.3/dlib/inst/include/dlib/manifold_regularization/linear_manifold_regularizer.h               |  656 
 dlib-1.0.3/dlib/inst/include/dlib/manifold_regularization/linear_manifold_regularizer_abstract.h      |  274 
 dlib-1.0.3/dlib/inst/include/dlib/map.h                                                               |  118 
 dlib-1.0.3/dlib/inst/include/dlib/map/map_kernel_1.h                                                  |  872 
 dlib-1.0.3/dlib/inst/include/dlib/map/map_kernel_abstract.h                                           |  470 
 dlib-1.0.3/dlib/inst/include/dlib/map/map_kernel_c.h                                                  |  496 
 dlib-1.0.3/dlib/inst/include/dlib/matlab/CMakeLists.txt                                               |   34 
 dlib-1.0.3/dlib/inst/include/dlib/matlab/README.txt                                                   |   40 
 dlib-1.0.3/dlib/inst/include/dlib/matlab/call_matlab.h                                                | 1554 -
 dlib-1.0.3/dlib/inst/include/dlib/matlab/cmake_mex_wrapper                                            |  192 
 dlib-1.0.3/dlib/inst/include/dlib/matlab/example.m                                                    |   32 
 dlib-1.0.3/dlib/inst/include/dlib/matlab/example_mex_callback.cpp                                     |  104 
 dlib-1.0.3/dlib/inst/include/dlib/matlab/example_mex_class.cpp                                        |  144 
 dlib-1.0.3/dlib/inst/include/dlib/matlab/example_mex_function.cpp                                     |  160 
 dlib-1.0.3/dlib/inst/include/dlib/matlab/example_mex_struct.cpp                                       |  110 
 dlib-1.0.3/dlib/inst/include/dlib/matlab/mex_wrapper.cpp                                              |10016 +++---
 dlib-1.0.3/dlib/inst/include/dlib/matlab/subprocess_stream.cpp                                        | 1074 
 dlib-1.0.3/dlib/inst/include/dlib/matlab/subprocess_stream.h                                          |  446 
 dlib-1.0.3/dlib/inst/include/dlib/matrix.h                                                            |   48 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/cblas_constants.h                                            |   44 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/lapack/fortran_id.h                                          |  116 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/lapack/gees.h                                                |  528 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/lapack/geev.h                                                |  468 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/lapack/geqrf.h                                               |  336 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/lapack/gesdd.h                                               |  728 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/lapack/gesvd.h                                               |  646 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/lapack/getrf.h                                               |  264 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/lapack/ormqr.h                                               |  448 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/lapack/potrf.h                                               |  348 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/lapack/syev.h                                                |  436 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/lapack/syevr.h                                               |  890 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix.h                                                     | 4230 +-
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_abstract.h                                            | 1714 -
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_assign.h                                              | 1956 -
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_assign_fwd.h                                          |  826 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_blas_bindings.h                                       | 3250 +-
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_cholesky.h                                            |  462 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_conj_trans.h                                          |  142 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_conv.h                                                |  616 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_conv_abstract.h                                       |  282 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_data_layout.h                                         | 2542 -
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_data_layout_abstract.h                                |   80 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_default_mul.h                                         |  268 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_eigenvalue.h                                          | 2758 -
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_exp.h                                                 |  542 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_exp_abstract.h                                        |  420 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_expressions.h                                         |  560 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_fft.h                                                 | 1240 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_fft_abstract.h                                        |  236 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_fwd.h                                                 |   62 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_generic_image.h                                       |  220 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_la.h                                                  | 3316 +-
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_la_abstract.h                                         | 1980 -
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_lu.h                                                  |  722 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_mat.h                                                 | 1408 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_mat_abstract.h                                        |  428 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_math_functions.h                                      |  896 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_math_functions_abstract.h                             | 1190 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_op.h                                                  |  958 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_qr.h                                                  |  932 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_read_from_istream.h                                   |  216 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_subexp.h                                              | 3132 +-
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_subexp_abstract.h                                     | 1140 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_trsm.h                                                | 1304 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_utilities.h                                           | 8724 +++---
 dlib-1.0.3/dlib/inst/include/dlib/matrix/matrix_utilities_abstract.h                                  | 3636 +-
 dlib-1.0.3/dlib/inst/include/dlib/matrix/symmetric_matrix_cache.h                                     |  928 
 dlib-1.0.3/dlib/inst/include/dlib/matrix/symmetric_matrix_cache_abstract.h                            |  126 
 dlib-1.0.3/dlib/inst/include/dlib/md5.h                                                               |    6 
 dlib-1.0.3/dlib/inst/include/dlib/md5/md5_kernel_1.cpp                                                | 1234 
 dlib-1.0.3/dlib/inst/include/dlib/md5/md5_kernel_1.h                                                  |  100 
 dlib-1.0.3/dlib/inst/include/dlib/md5/md5_kernel_abstract.h                                           |  166 
 dlib-1.0.3/dlib/inst/include/dlib/member_function_pointer.h                                           |   20 
 dlib-1.0.3/dlib/inst/include/dlib/member_function_pointer/make_mfp.h                                  |  358 
 dlib-1.0.3/dlib/inst/include/dlib/member_function_pointer/make_mfp_abstract.h                         |  414 
 dlib-1.0.3/dlib/inst/include/dlib/member_function_pointer/member_function_pointer_kernel_1.h          |  996 
 dlib-1.0.3/dlib/inst/include/dlib/member_function_pointer/member_function_pointer_kernel_abstract.h   |  966 
 dlib-1.0.3/dlib/inst/include/dlib/memory_manager.h                                                    |  146 
 dlib-1.0.3/dlib/inst/include/dlib/memory_manager/memory_manager_kernel_1.h                            |  610 
 dlib-1.0.3/dlib/inst/include/dlib/memory_manager/memory_manager_kernel_2.h                            |  506 
 dlib-1.0.3/dlib/inst/include/dlib/memory_manager/memory_manager_kernel_3.h                            |  770 
 dlib-1.0.3/dlib/inst/include/dlib/memory_manager/memory_manager_kernel_abstract.h                     |  292 
 dlib-1.0.3/dlib/inst/include/dlib/memory_manager_global.h                                             |   76 
 dlib-1.0.3/dlib/inst/include/dlib/memory_manager_global/memory_manager_global_kernel_1.h              |  226 
 dlib-1.0.3/dlib/inst/include/dlib/memory_manager_global/memory_manager_global_kernel_abstract.h       |  362 
 dlib-1.0.3/dlib/inst/include/dlib/memory_manager_stateless.h                                          |  144 
 dlib-1.0.3/dlib/inst/include/dlib/memory_manager_stateless/memory_manager_stateless_kernel_1.h        |  172 
 dlib-1.0.3/dlib/inst/include/dlib/memory_manager_stateless/memory_manager_stateless_kernel_2.h        |  238 
 dlib-1.0.3/dlib/inst/include/dlib/memory_manager_stateless/memory_manager_stateless_kernel_abstract.h |  284 
 dlib-1.0.3/dlib/inst/include/dlib/misc_api.h                                                          |   40 
 dlib-1.0.3/dlib/inst/include/dlib/misc_api/misc_api_kernel_1.cpp                                      |  298 
 dlib-1.0.3/dlib/inst/include/dlib/misc_api/misc_api_kernel_1.h                                        |  220 
 dlib-1.0.3/dlib/inst/include/dlib/misc_api/misc_api_kernel_2.cpp                                      |  246 
 dlib-1.0.3/dlib/inst/include/dlib/misc_api/misc_api_kernel_2.h                                        |  162 
 dlib-1.0.3/dlib/inst/include/dlib/misc_api/misc_api_kernel_abstract.h                                 |  318 
 dlib-1.0.3/dlib/inst/include/dlib/misc_api/misc_api_shared.h                                          |  114 
 dlib-1.0.3/dlib/inst/include/dlib/misc_api/posix.h                                                    |   12 
 dlib-1.0.3/dlib/inst/include/dlib/misc_api/windows.h                                                  |   12 
 dlib-1.0.3/dlib/inst/include/dlib/mlp.h                                                               |   60 
 dlib-1.0.3/dlib/inst/include/dlib/mlp/mlp_kernel_1.h                                                  |  788 
 dlib-1.0.3/dlib/inst/include/dlib/mlp/mlp_kernel_abstract.h                                           |  450 
 dlib-1.0.3/dlib/inst/include/dlib/mlp/mlp_kernel_c.h                                                  |  302 
 dlib-1.0.3/dlib/inst/include/dlib/noncopyable.h                                                       |   64 
 dlib-1.0.3/dlib/inst/include/dlib/numeric_constants.h                                                 |  106 
 dlib-1.0.3/dlib/inst/include/dlib/numerical_integration.h                                             |   16 
 dlib-1.0.3/dlib/inst/include/dlib/numerical_integration/integrate_function_adapt_simpson.h            |  186 
 dlib-1.0.3/dlib/inst/include/dlib/numerical_integration/integrate_function_adapt_simpson_abstract.h   |   68 
 dlib-1.0.3/dlib/inst/include/dlib/opencv.h                                                            |   34 
 dlib-1.0.3/dlib/inst/include/dlib/opencv/cv_image.h                                                   |  398 
 dlib-1.0.3/dlib/inst/include/dlib/opencv/cv_image_abstract.h                                          |  512 
 dlib-1.0.3/dlib/inst/include/dlib/opencv/to_open_cv.h                                                 |   90 
 dlib-1.0.3/dlib/inst/include/dlib/opencv/to_open_cv_abstract.h                                        |   68 
 dlib-1.0.3/dlib/inst/include/dlib/optimization.h                                                      |   46 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/elastic_net.h                                          |  778 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/elastic_net_abstract.h                                 |  380 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/find_max_factor_graph_nmplp.h                          |  674 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/find_max_factor_graph_nmplp_abstract.h                 |  730 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/find_max_factor_graph_viterbi.h                        |  464 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/find_max_factor_graph_viterbi_abstract.h               |  262 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/find_max_parse_cky.h                                   |  828 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/find_max_parse_cky_abstract.h                          |  776 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/find_optimal_parameters.h                              |  234 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/find_optimal_parameters_abstract.h                     |  116 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/max_cost_assignment.h                                  |  576 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/max_cost_assignment_abstract.h                         |  126 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/max_sum_submatrix.h                                    |  570 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/max_sum_submatrix_abstract.h                           |   98 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/optimization.h                                         | 1428 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/optimization_abstract.h                                |  936 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/optimization_bobyqa.h                                  | 6844 ++--
 dlib-1.0.3/dlib/inst/include/dlib/optimization/optimization_bobyqa_abstract.h                         |  240 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/optimization_least_squares.h                           |  690 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/optimization_least_squares_abstract.h                  |  224 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/optimization_line_search.h                             | 1776 -
 dlib-1.0.3/dlib/inst/include/dlib/optimization/optimization_line_search_abstract.h                    |  722 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/optimization_oca.h                                     |  814 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/optimization_oca_abstract.h                            |  668 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/optimization_search_strategies.h                       |  648 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/optimization_search_strategies_abstract.h              |  660 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/optimization_solve_qp2_using_smo.h                     |  936 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/optimization_solve_qp2_using_smo_abstract.h            |  300 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/optimization_solve_qp3_using_smo.h                     |  910 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/optimization_solve_qp3_using_smo_abstract.h            |  278 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/optimization_solve_qp_using_smo.h                      | 1118 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/optimization_solve_qp_using_smo_abstract.h             |  342 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/optimization_stop_strategies.h                         |  346 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/optimization_stop_strategies_abstract.h                |  314 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/optimization_trust_region.h                            |  804 
 dlib-1.0.3/dlib/inst/include/dlib/optimization/optimization_trust_region_abstract.h                   |  364 
 dlib-1.0.3/dlib/inst/include/dlib/ostream                                                             |    2 
 dlib-1.0.3/dlib/inst/include/dlib/pipe.h                                                              |   20 
 dlib-1.0.3/dlib/inst/include/dlib/pipe/pipe_kernel_1.h                                                | 1494 -
 dlib-1.0.3/dlib/inst/include/dlib/pipe/pipe_kernel_abstract.h                                         |  626 
 dlib-1.0.3/dlib/inst/include/dlib/pixel.h                                                             | 3298 +-
 dlib-1.0.3/dlib/inst/include/dlib/platform.h                                                          |  130 
 dlib-1.0.3/dlib/inst/include/dlib/python.h                                                            |   28 
 dlib-1.0.3/dlib/inst/include/dlib/python/boost_python_utils.h                                         |  166 
 dlib-1.0.3/dlib/inst/include/dlib/python/numpy.h                                                      |  350 
 dlib-1.0.3/dlib/inst/include/dlib/python/numpy_image.h                                                |  258 
 dlib-1.0.3/dlib/inst/include/dlib/python/pyassert.h                                                   |   32 
 dlib-1.0.3/dlib/inst/include/dlib/python/serialize_pickle.h                                           |  142 
 dlib-1.0.3/dlib/inst/include/dlib/quantum_computing.h                                                 |   24 
 dlib-1.0.3/dlib/inst/include/dlib/quantum_computing/quantum_computing.h                               | 1726 -
 dlib-1.0.3/dlib/inst/include/dlib/quantum_computing/quantum_computing_abstract.h                      | 1180 
 dlib-1.0.3/dlib/inst/include/dlib/queue.h                                                             |  168 
 dlib-1.0.3/dlib/inst/include/dlib/queue/queue_kernel_1.h                                              | 1108 
 dlib-1.0.3/dlib/inst/include/dlib/queue/queue_kernel_2.h                                              | 1200 
 dlib-1.0.3/dlib/inst/include/dlib/queue/queue_kernel_abstract.h                                       |  392 
 dlib-1.0.3/dlib/inst/include/dlib/queue/queue_kernel_c.h                                              |  374 
 dlib-1.0.3/dlib/inst/include/dlib/queue/queue_sort_1.h                                                |  330 
 dlib-1.0.3/dlib/inst/include/dlib/queue/queue_sort_abstract.h                                         |  148 
 dlib-1.0.3/dlib/inst/include/dlib/rand.h                                                              |   18 
 dlib-1.0.3/dlib/inst/include/dlib/rand/mersenne_twister.h                                             |  420 
 dlib-1.0.3/dlib/inst/include/dlib/rand/rand_kernel_1.h                                                |  650 
 dlib-1.0.3/dlib/inst/include/dlib/rand/rand_kernel_abstract.h                                         |  392 
 dlib-1.0.3/dlib/inst/include/dlib/ref.h                                                               |  168 
 dlib-1.0.3/dlib/inst/include/dlib/reference_counter.h                                                 |   62 
 dlib-1.0.3/dlib/inst/include/dlib/reference_counter/reference_counter_kernel_1.h                      |  596 
 dlib-1.0.3/dlib/inst/include/dlib/reference_counter/reference_counter_kernel_abstract.h               |  282 
 dlib-1.0.3/dlib/inst/include/dlib/revision.h                                                          |   16 
 dlib-1.0.3/dlib/inst/include/dlib/revision.h.in                                                       |   12 
 dlib-1.0.3/dlib/inst/include/dlib/sequence.h                                                          |  166 
 dlib-1.0.3/dlib/inst/include/dlib/sequence/sequence_compare_1.h                                       |  204 
 dlib-1.0.3/dlib/inst/include/dlib/sequence/sequence_compare_abstract.h                                |  150 
 dlib-1.0.3/dlib/inst/include/dlib/sequence/sequence_kernel_1.h                                        | 2680 -
 dlib-1.0.3/dlib/inst/include/dlib/sequence/sequence_kernel_2.h                                        | 1364 
 dlib-1.0.3/dlib/inst/include/dlib/sequence/sequence_kernel_abstract.h                                 |  398 
 dlib-1.0.3/dlib/inst/include/dlib/sequence/sequence_kernel_c.h                                        |  506 
 dlib-1.0.3/dlib/inst/include/dlib/sequence/sequence_sort_1.h                                          |  364 
 dlib-1.0.3/dlib/inst/include/dlib/sequence/sequence_sort_2.h                                          |  130 
 dlib-1.0.3/dlib/inst/include/dlib/sequence/sequence_sort_abstract.h                                   |  130 
 dlib-1.0.3/dlib/inst/include/dlib/serialize.h                                                         | 3110 +-
 dlib-1.0.3/dlib/inst/include/dlib/server.h                                                            |   24 
 dlib-1.0.3/dlib/inst/include/dlib/server/server_http.cpp                                              |  818 
 dlib-1.0.3/dlib/inst/include/dlib/server/server_http.h                                                |  484 
 dlib-1.0.3/dlib/inst/include/dlib/server/server_http_abstract.h                                       |  780 
 dlib-1.0.3/dlib/inst/include/dlib/server/server_iostream.cpp                                          |   28 
 dlib-1.0.3/dlib/inst/include/dlib/server/server_iostream.h                                            |  310 
 dlib-1.0.3/dlib/inst/include/dlib/server/server_iostream_abstract.h                                   |  168 
 dlib-1.0.3/dlib/inst/include/dlib/server/server_kernel.cpp                                            | 1190 
 dlib-1.0.3/dlib/inst/include/dlib/server/server_kernel.h                                              |  466 
 dlib-1.0.3/dlib/inst/include/dlib/server/server_kernel_abstract.h                                     |  620 
 dlib-1.0.3/dlib/inst/include/dlib/set.h                                                               |  148 
 dlib-1.0.3/dlib/inst/include/dlib/set/set_compare_1.h                                                 |  244 
 dlib-1.0.3/dlib/inst/include/dlib/set/set_compare_abstract.h                                          |  192 
 dlib-1.0.3/dlib/inst/include/dlib/set/set_kernel_1.h                                                  |  744 
 dlib-1.0.3/dlib/inst/include/dlib/set/set_kernel_abstract.h                                           |  384 
 dlib-1.0.3/dlib/inst/include/dlib/set/set_kernel_c.h                                                  |  388 
 dlib-1.0.3/dlib/inst/include/dlib/set_utils.h                                                         |   22 
 dlib-1.0.3/dlib/inst/include/dlib/set_utils/set_utils.h                                               |  492 
 dlib-1.0.3/dlib/inst/include/dlib/set_utils/set_utils_abstract.h                                      |  196 
 dlib-1.0.3/dlib/inst/include/dlib/simd.h                                                              |   24 
 dlib-1.0.3/dlib/inst/include/dlib/simd/simd4f.h                                                       |  982 
 dlib-1.0.3/dlib/inst/include/dlib/simd/simd4i.h                                                       |  822 
 dlib-1.0.3/dlib/inst/include/dlib/simd/simd8f.h                                                       |  796 
 dlib-1.0.3/dlib/inst/include/dlib/simd/simd8i.h                                                       |  678 
 dlib-1.0.3/dlib/inst/include/dlib/simd/simd_check.h                                                   |  164 
 dlib-1.0.3/dlib/inst/include/dlib/sliding_buffer.h                                                    |   76 
 dlib-1.0.3/dlib/inst/include/dlib/sliding_buffer/circular_buffer.h                                    |  462 
 dlib-1.0.3/dlib/inst/include/dlib/sliding_buffer/circular_buffer_abstract.h                           |  496 
 dlib-1.0.3/dlib/inst/include/dlib/sliding_buffer/sliding_buffer_kernel_1.h                            |  454 
 dlib-1.0.3/dlib/inst/include/dlib/sliding_buffer/sliding_buffer_kernel_abstract.h                     |  410 
 dlib-1.0.3/dlib/inst/include/dlib/sliding_buffer/sliding_buffer_kernel_c.h                            |  444 
 dlib-1.0.3/dlib/inst/include/dlib/smart_pointers.h                                                    |   24 
 dlib-1.0.3/dlib/inst/include/dlib/smart_pointers/scoped_ptr.h                                         |  434 
 dlib-1.0.3/dlib/inst/include/dlib/smart_pointers/scoped_ptr_abstract.h                                |  344 
 dlib-1.0.3/dlib/inst/include/dlib/smart_pointers/shared_ptr.h                                         | 1074 
 dlib-1.0.3/dlib/inst/include/dlib/smart_pointers/shared_ptr_abstract.h                                |  812 
 dlib-1.0.3/dlib/inst/include/dlib/smart_pointers/shared_ptr_thread_safe.h                             | 1008 
 dlib-1.0.3/dlib/inst/include/dlib/smart_pointers/shared_ptr_thread_safe_abstract.h                    |  768 
 dlib-1.0.3/dlib/inst/include/dlib/smart_pointers/weak_ptr.h                                           |  450 
 dlib-1.0.3/dlib/inst/include/dlib/smart_pointers/weak_ptr_abstract.h                                  |  386 
 dlib-1.0.3/dlib/inst/include/dlib/smart_pointers_thread_safe.h                                        |   22 
 dlib-1.0.3/dlib/inst/include/dlib/sockets.h                                                           |   40 
 dlib-1.0.3/dlib/inst/include/dlib/sockets/posix.h                                                     |   12 
 dlib-1.0.3/dlib/inst/include/dlib/sockets/sockets_extensions.cpp                                      |  682 
 dlib-1.0.3/dlib/inst/include/dlib/sockets/sockets_extensions.h                                        |  296 
 dlib-1.0.3/dlib/inst/include/dlib/sockets/sockets_extensions_abstract.h                               |  598 
 dlib-1.0.3/dlib/inst/include/dlib/sockets/sockets_kernel_1.cpp                                        | 1958 -
 dlib-1.0.3/dlib/inst/include/dlib/sockets/sockets_kernel_1.h                                          |  700 
 dlib-1.0.3/dlib/inst/include/dlib/sockets/sockets_kernel_2.cpp                                        | 2218 -
 dlib-1.0.3/dlib/inst/include/dlib/sockets/sockets_kernel_2.h                                          |  786 
 dlib-1.0.3/dlib/inst/include/dlib/sockets/sockets_kernel_abstract.h                                   |  990 
 dlib-1.0.3/dlib/inst/include/dlib/sockets/windows.h                                                   |   12 
 dlib-1.0.3/dlib/inst/include/dlib/sockstreambuf.h                                                     |   22 
 dlib-1.0.3/dlib/inst/include/dlib/sockstreambuf/sockstreambuf.cpp                                     |  354 
 dlib-1.0.3/dlib/inst/include/dlib/sockstreambuf/sockstreambuf.h                                       |  344 
 dlib-1.0.3/dlib/inst/include/dlib/sockstreambuf/sockstreambuf_abstract.h                              |  250 
 dlib-1.0.3/dlib/inst/include/dlib/sockstreambuf/sockstreambuf_unbuffered.cpp                          |  336 
 dlib-1.0.3/dlib/inst/include/dlib/sockstreambuf/sockstreambuf_unbuffered.h                            |  236 
 dlib-1.0.3/dlib/inst/include/dlib/sort.h                                                              |  980 
 dlib-1.0.3/dlib/inst/include/dlib/sparse_vector.h                                                     |   20 
 dlib-1.0.3/dlib/inst/include/dlib/sqlite.h                                                            |   22 
 dlib-1.0.3/dlib/inst/include/dlib/sqlite/sqlite.h                                                     | 1246 
 dlib-1.0.3/dlib/inst/include/dlib/sqlite/sqlite_abstract.h                                            | 1012 
 dlib-1.0.3/dlib/inst/include/dlib/sqlite/sqlite_tools.h                                               |  378 
 dlib-1.0.3/dlib/inst/include/dlib/sqlite/sqlite_tools_abstract.h                                      |  328 
 dlib-1.0.3/dlib/inst/include/dlib/sstream                                                             |    2 
 dlib-1.0.3/dlib/inst/include/dlib/stack.h                                                             |   68 
 dlib-1.0.3/dlib/inst/include/dlib/stack/stack_kernel_1.h                                              | 1008 
 dlib-1.0.3/dlib/inst/include/dlib/stack/stack_kernel_abstract.h                                       |  360 
 dlib-1.0.3/dlib/inst/include/dlib/stack/stack_kernel_c.h                                              |  378 
 dlib-1.0.3/dlib/inst/include/dlib/stack_trace.cpp                                                     |  178 
 dlib-1.0.3/dlib/inst/include/dlib/stack_trace.h                                                       |  236 
 dlib-1.0.3/dlib/inst/include/dlib/static_map.h                                                        |   86 
 dlib-1.0.3/dlib/inst/include/dlib/static_map/static_map_kernel_1.h                                    | 1512 -
 dlib-1.0.3/dlib/inst/include/dlib/static_map/static_map_kernel_abstract.h                             |  362 
 dlib-1.0.3/dlib/inst/include/dlib/static_map/static_map_kernel_c.h                                    |  178 
 dlib-1.0.3/dlib/inst/include/dlib/static_set.h                                                        |   98 
 dlib-1.0.3/dlib/inst/include/dlib/static_set/static_set_compare_1.h                                   |  244 
 dlib-1.0.3/dlib/inst/include/dlib/static_set/static_set_compare_abstract.h                            |  186 
 dlib-1.0.3/dlib/inst/include/dlib/static_set/static_set_kernel_1.h                                    |  892 
 dlib-1.0.3/dlib/inst/include/dlib/static_set/static_set_kernel_abstract.h                             |  308 
 dlib-1.0.3/dlib/inst/include/dlib/static_set/static_set_kernel_c.h                                    |  176 
 dlib-1.0.3/dlib/inst/include/dlib/statistics.h                                                        |   38 
 dlib-1.0.3/dlib/inst/include/dlib/statistics/average_precision.h                                      |  132 
 dlib-1.0.3/dlib/inst/include/dlib/statistics/average_precision_abstract.h                             |  134 
 dlib-1.0.3/dlib/inst/include/dlib/statistics/cca.h                                                    |  372 
 dlib-1.0.3/dlib/inst/include/dlib/statistics/cca_abstract.h                                           |  382 
 dlib-1.0.3/dlib/inst/include/dlib/statistics/dpca.h                                                   | 1082 
 dlib-1.0.3/dlib/inst/include/dlib/statistics/dpca_abstract.h                                          |  730 
 dlib-1.0.3/dlib/inst/include/dlib/statistics/image_feature_sampling.h                                 |  164 
 dlib-1.0.3/dlib/inst/include/dlib/statistics/image_feature_sampling_abstract.h                        |   90 
 dlib-1.0.3/dlib/inst/include/dlib/statistics/lda.h                                                    |  376 
 dlib-1.0.3/dlib/inst/include/dlib/statistics/lda_abstract.h                                           |  166 
 dlib-1.0.3/dlib/inst/include/dlib/statistics/random_subset_selector.h                                 |  744 
 dlib-1.0.3/dlib/inst/include/dlib/statistics/random_subset_selector_abstract.h                        |  776 
 dlib-1.0.3/dlib/inst/include/dlib/statistics/running_gradient.h                                       |  740 
 dlib-1.0.3/dlib/inst/include/dlib/statistics/running_gradient_abstract.h                              |  552 
 dlib-1.0.3/dlib/inst/include/dlib/statistics/sammon.h                                                 |  538 
 dlib-1.0.3/dlib/inst/include/dlib/statistics/sammon_abstract.h                                        |  234 
 dlib-1.0.3/dlib/inst/include/dlib/statistics/statistics.h                                             | 3002 +-
 dlib-1.0.3/dlib/inst/include/dlib/statistics/statistics_abstract.h                                    | 2124 -
 dlib-1.0.3/dlib/inst/include/dlib/statistics/vector_normalizer_frobmetric.h                           | 1236 
 dlib-1.0.3/dlib/inst/include/dlib/statistics/vector_normalizer_frobmetric_abstract.h                  |  656 
 dlib-1.0.3/dlib/inst/include/dlib/std_allocator.h                                                     |  398 
 dlib-1.0.3/dlib/inst/include/dlib/stl_checked.h                                                       |   20 
 dlib-1.0.3/dlib/inst/include/dlib/stl_checked/std_vector_c.h                                          |  666 
 dlib-1.0.3/dlib/inst/include/dlib/stl_checked/std_vector_c_abstract.h                                 |  940 
 dlib-1.0.3/dlib/inst/include/dlib/string.h                                                            |   18 
 dlib-1.0.3/dlib/inst/include/dlib/string/cassert                                                      |    2 
 dlib-1.0.3/dlib/inst/include/dlib/string/iomanip                                                      |    2 
 dlib-1.0.3/dlib/inst/include/dlib/string/iosfwd                                                       |    2 
 dlib-1.0.3/dlib/inst/include/dlib/string/iostream                                                     |    2 
 dlib-1.0.3/dlib/inst/include/dlib/string/locale                                                       |    2 
 dlib-1.0.3/dlib/inst/include/dlib/string/string.h                                                     | 2008 -
 dlib-1.0.3/dlib/inst/include/dlib/string/string_abstract.h                                            | 1304 
 dlib-1.0.3/dlib/inst/include/dlib/svm.h                                                               |  120 
 dlib-1.0.3/dlib/inst/include/dlib/svm/active_learning.h                                               |  324 
 dlib-1.0.3/dlib/inst/include/dlib/svm/active_learning_abstract.h                                      |  150 
 dlib-1.0.3/dlib/inst/include/dlib/svm/assignment_function.h                                           |  510 
 dlib-1.0.3/dlib/inst/include/dlib/svm/assignment_function_abstract.h                                  |  684 
 dlib-1.0.3/dlib/inst/include/dlib/svm/cross_validate_assignment_trainer.h                             |  362 
 dlib-1.0.3/dlib/inst/include/dlib/svm/cross_validate_assignment_trainer_abstract.h                    |  138 
 dlib-1.0.3/dlib/inst/include/dlib/svm/cross_validate_graph_labeling_trainer.h                         |  516 
 dlib-1.0.3/dlib/inst/include/dlib/svm/cross_validate_graph_labeling_trainer_abstract.h                |  294 
 dlib-1.0.3/dlib/inst/include/dlib/svm/cross_validate_multiclass_trainer.h                             |  416 
 dlib-1.0.3/dlib/inst/include/dlib/svm/cross_validate_multiclass_trainer_abstract.h                    |  198 
 dlib-1.0.3/dlib/inst/include/dlib/svm/cross_validate_object_detection_trainer.h                       |  834 
 dlib-1.0.3/dlib/inst/include/dlib/svm/cross_validate_object_detection_trainer_abstract.h              |  590 
 dlib-1.0.3/dlib/inst/include/dlib/svm/cross_validate_regression_trainer.h                             |  306 
 dlib-1.0.3/dlib/inst/include/dlib/svm/cross_validate_regression_trainer_abstract.h                    |  156 
 dlib-1.0.3/dlib/inst/include/dlib/svm/cross_validate_sequence_labeler.h                               |  304 
 dlib-1.0.3/dlib/inst/include/dlib/svm/cross_validate_sequence_labeler_abstract.h                      |  166 
 dlib-1.0.3/dlib/inst/include/dlib/svm/cross_validate_sequence_segmenter.h                             |  374 
 dlib-1.0.3/dlib/inst/include/dlib/svm/cross_validate_sequence_segmenter_abstract.h                    |  160 
 dlib-1.0.3/dlib/inst/include/dlib/svm/cross_validate_track_association_trainer.h                      |  326 
 dlib-1.0.3/dlib/inst/include/dlib/svm/cross_validate_track_association_trainer_abstract.h             |  138 
 dlib-1.0.3/dlib/inst/include/dlib/svm/empirical_kernel_map.h                                          |  858 
 dlib-1.0.3/dlib/inst/include/dlib/svm/empirical_kernel_map_abstract.h                                 |  860 
 dlib-1.0.3/dlib/inst/include/dlib/svm/feature_ranking.h                                               |  954 
 dlib-1.0.3/dlib/inst/include/dlib/svm/feature_ranking_abstract.h                                      |  272 
 dlib-1.0.3/dlib/inst/include/dlib/svm/function.h                                                      | 1764 -
 dlib-1.0.3/dlib/inst/include/dlib/svm/function_abstract.h                                             | 1994 -
 dlib-1.0.3/dlib/inst/include/dlib/svm/kcentroid.h                                                     | 1228 
 dlib-1.0.3/dlib/inst/include/dlib/svm/kcentroid_abstract.h                                            |  678 
 dlib-1.0.3/dlib/inst/include/dlib/svm/kcentroid_overloads.h                                           | 2648 -
 dlib-1.0.3/dlib/inst/include/dlib/svm/kernel.h                                                        | 1138 
 dlib-1.0.3/dlib/inst/include/dlib/svm/kernel_abstract.h                                               | 1362 
 dlib-1.0.3/dlib/inst/include/dlib/svm/kernel_matrix.h                                                 |  536 
 dlib-1.0.3/dlib/inst/include/dlib/svm/kernel_matrix_abstract.h                                        |  230 
 dlib-1.0.3/dlib/inst/include/dlib/svm/kkmeans.h                                                       | 1308 
 dlib-1.0.3/dlib/inst/include/dlib/svm/kkmeans_abstract.h                                              |  730 
 dlib-1.0.3/dlib/inst/include/dlib/svm/krls.h                                                          |  716 
 dlib-1.0.3/dlib/inst/include/dlib/svm/krls_abstract.h                                                 |  404 
 dlib-1.0.3/dlib/inst/include/dlib/svm/krr_trainer.h                                                   |  736 
 dlib-1.0.3/dlib/inst/include/dlib/svm/krr_trainer_abstract.h                                          |  644 
 dlib-1.0.3/dlib/inst/include/dlib/svm/linearly_independent_subset_finder.h                            | 1080 
 dlib-1.0.3/dlib/inst/include/dlib/svm/linearly_independent_subset_finder_abstract.h                   |  654 
 dlib-1.0.3/dlib/inst/include/dlib/svm/multiclass_tools.h                                              |  136 
 dlib-1.0.3/dlib/inst/include/dlib/svm/multiclass_tools_abstract.h                                     |   90 
 dlib-1.0.3/dlib/inst/include/dlib/svm/null_df.h                                                       |   66 
 dlib-1.0.3/dlib/inst/include/dlib/svm/null_trainer.h                                                  |  122 
 dlib-1.0.3/dlib/inst/include/dlib/svm/null_trainer_abstract.h                                         |  202 
 dlib-1.0.3/dlib/inst/include/dlib/svm/num_nonnegative_weights.h                                       |  152 
 dlib-1.0.3/dlib/inst/include/dlib/svm/one_vs_all_decision_function.h                                  |  530 
 dlib-1.0.3/dlib/inst/include/dlib/svm/one_vs_all_decision_function_abstract.h                         |  428 
 dlib-1.0.3/dlib/inst/include/dlib/svm/one_vs_all_trainer.h                                            |  468 
 dlib-1.0.3/dlib/inst/include/dlib/svm/one_vs_all_trainer_abstract.h                                   |  326 
 dlib-1.0.3/dlib/inst/include/dlib/svm/one_vs_one_decision_function.h                                  |  582 
 dlib-1.0.3/dlib/inst/include/dlib/svm/one_vs_one_decision_function_abstract.h                         |  426 
 dlib-1.0.3/dlib/inst/include/dlib/svm/one_vs_one_trainer.h                                            |  498 
 dlib-1.0.3/dlib/inst/include/dlib/svm/one_vs_one_trainer_abstract.h                                   |  332 
 dlib-1.0.3/dlib/inst/include/dlib/svm/pegasos.h                                                       | 1420 
 dlib-1.0.3/dlib/inst/include/dlib/svm/pegasos_abstract.h                                              | 1028 
 dlib-1.0.3/dlib/inst/include/dlib/svm/ranking_tools.h                                                 |  896 
 dlib-1.0.3/dlib/inst/include/dlib/svm/ranking_tools_abstract.h                                        |  494 
 dlib-1.0.3/dlib/inst/include/dlib/svm/rbf_network.h                                                   |  324 
 dlib-1.0.3/dlib/inst/include/dlib/svm/rbf_network_abstract.h                                          |  264 
 dlib-1.0.3/dlib/inst/include/dlib/svm/reduced.h                                                       | 1226 
 dlib-1.0.3/dlib/inst/include/dlib/svm/reduced_abstract.h                                              |  534 
 dlib-1.0.3/dlib/inst/include/dlib/svm/rls.h                                                           |  398 
 dlib-1.0.3/dlib/inst/include/dlib/svm/rls_abstract.h                                                  |  320 
 dlib-1.0.3/dlib/inst/include/dlib/svm/roc_trainer.h                                                   |  298 
 dlib-1.0.3/dlib/inst/include/dlib/svm/roc_trainer_abstract.h                                          |  270 
 dlib-1.0.3/dlib/inst/include/dlib/svm/rr_trainer.h                                                    |  912 
 dlib-1.0.3/dlib/inst/include/dlib/svm/rr_trainer_abstract.h                                           |  510 
 dlib-1.0.3/dlib/inst/include/dlib/svm/rvm.h                                                           | 2036 -
 dlib-1.0.3/dlib/inst/include/dlib/svm/rvm_abstract.h                                                  |  556 
 dlib-1.0.3/dlib/inst/include/dlib/svm/sequence_labeler.h                                              |  678 
 dlib-1.0.3/dlib/inst/include/dlib/svm/sequence_labeler_abstract.h                                     |  792 
 dlib-1.0.3/dlib/inst/include/dlib/svm/sequence_segmenter.h                                            |  936 
 dlib-1.0.3/dlib/inst/include/dlib/svm/sequence_segmenter_abstract.h                                   |  904 
 dlib-1.0.3/dlib/inst/include/dlib/svm/simplify_linear_decision_function.h                             |  220 
 dlib-1.0.3/dlib/inst/include/dlib/svm/simplify_linear_decision_function_abstract.h                    |  148 
 dlib-1.0.3/dlib/inst/include/dlib/svm/sort_basis_vectors.h                                            |  448 
 dlib-1.0.3/dlib/inst/include/dlib/svm/sort_basis_vectors_abstract.h                                   |  118 
 dlib-1.0.3/dlib/inst/include/dlib/svm/sparse_kernel.h                                                 |  768 
 dlib-1.0.3/dlib/inst/include/dlib/svm/sparse_kernel_abstract.h                                        |  972 
 dlib-1.0.3/dlib/inst/include/dlib/svm/sparse_vector.h                                                 | 2340 -
 dlib-1.0.3/dlib/inst/include/dlib/svm/sparse_vector_abstract.h                                        | 1376 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_assignment_trainer.h                                 |  588 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_assignment_trainer_abstract.h                        |  598 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_graph_labeling_trainer.h                             |  564 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_graph_labeling_trainer_abstract.h                    |  530 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_object_detection_trainer.h                           |  804 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_object_detection_trainer_abstract.h                  |  780 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_sequence_labeling_trainer.h                          |  542 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_sequence_labeling_trainer_abstract.h                 |  532 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_sequence_segmentation_trainer.h                      |  562 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_sequence_segmentation_trainer_abstract.h             |  528 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_svm_assignment_problem.h                             |  576 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_svm_assignment_problem_abstract.h                    |  174 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_svm_distributed.h                                    | 1402 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_svm_distributed_abstract.h                           |  714 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_svm_graph_labeling_problem.h                         | 1084 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_svm_graph_labeling_problem_abstract.h                |  498 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_svm_object_detection_problem.h                       | 1060 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_svm_object_detection_problem_abstract.h              |  356 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_svm_problem.h                                        | 1298 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_svm_problem_abstract.h                               |  696 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_svm_problem_threaded.h                               |  314 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_svm_problem_threaded_abstract.h                      |  136 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_svm_sequence_labeling_problem.h                      |  562 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_svm_sequence_labeling_problem_abstract.h             |  220 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_track_association_trainer.h                          |  808 
 dlib-1.0.3/dlib/inst/include/dlib/svm/structural_track_association_trainer_abstract.h                 |  536 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svm.h                                                           | 2410 -
 dlib-1.0.3/dlib/inst/include/dlib/svm/svm_abstract.h                                                  | 1208 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svm_c_ekm_trainer.h                                             | 1272 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svm_c_ekm_trainer_abstract.h                                    |  768 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svm_c_linear_dcd_trainer.h                                      | 1422 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svm_c_linear_dcd_trainer_abstract.h                             |  764 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svm_c_linear_trainer.h                                          | 1412 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svm_c_linear_trainer_abstract.h                                 |  718 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svm_c_trainer.h                                                 |  718 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svm_c_trainer_abstract.h                                        |  474 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svm_multiclass_linear_trainer.h                                 |  864 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svm_multiclass_linear_trainer_abstract.h                        |  550 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svm_nu_trainer.h                                                |  652 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svm_nu_trainer_abstract.h                                       |  420 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svm_one_class_trainer.h                                         |  568 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svm_one_class_trainer_abstract.h                                |  402 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svm_rank_trainer.h                                              |  990 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svm_rank_trainer_abstract.h                                     |  596 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svm_threaded.h                                                  |  508 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svm_threaded_abstract.h                                         |  124 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svr_linear_trainer.h                                            |  848 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svr_linear_trainer_abstract.h                                   |  538 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svr_trainer.h                                                   |  786 
 dlib-1.0.3/dlib/inst/include/dlib/svm/svr_trainer_abstract.h                                          |  418 
 dlib-1.0.3/dlib/inst/include/dlib/svm/track_association_function.h                                    |  308 
 dlib-1.0.3/dlib/inst/include/dlib/svm/track_association_function_abstract.h                           |  542 
 dlib-1.0.3/dlib/inst/include/dlib/svm_threaded.h                                                      |   72 
 dlib-1.0.3/dlib/inst/include/dlib/sync_extension.h                                                    |   62 
 dlib-1.0.3/dlib/inst/include/dlib/sync_extension/sync_extension_kernel_1.h                            |  134 
 dlib-1.0.3/dlib/inst/include/dlib/sync_extension/sync_extension_kernel_abstract.h                     |  380 
 dlib-1.0.3/dlib/inst/include/dlib/test/CMakeLists.txt                                                 |  372 
 dlib-1.0.3/dlib/inst/include/dlib/test/WINDOWS_build_and_run_all_unit_tests.bat                       |   84 
 dlib-1.0.3/dlib/inst/include/dlib/test/active_learning.cpp                                            |  330 
 dlib-1.0.3/dlib/inst/include/dlib/test/any.cpp                                                        |  278 
 dlib-1.0.3/dlib/inst/include/dlib/test/any_function.cpp                                               |  506 
 dlib-1.0.3/dlib/inst/include/dlib/test/array.cpp                                                      | 1338 
 dlib-1.0.3/dlib/inst/include/dlib/test/array2d.cpp                                                    | 1160 
 dlib-1.0.3/dlib/inst/include/dlib/test/assignment_learning.cpp                                        |  758 
 dlib-1.0.3/dlib/inst/include/dlib/test/base64.cpp                                                     |  416 
 dlib-1.0.3/dlib/inst/include/dlib/test/bayes_nets.cpp                                                 |  822 
 dlib-1.0.3/dlib/inst/include/dlib/test/bigint.cpp                                                     | 1044 
 dlib-1.0.3/dlib/inst/include/dlib/test/binary_search_tree.h                                           | 1778 -
 dlib-1.0.3/dlib/inst/include/dlib/test/binary_search_tree_kernel_1a.cpp                               |   94 
 dlib-1.0.3/dlib/inst/include/dlib/test/binary_search_tree_kernel_2a.cpp                               |   90 
 dlib-1.0.3/dlib/inst/include/dlib/test/binary_search_tree_mm1.cpp                                     |  132 
 dlib-1.0.3/dlib/inst/include/dlib/test/binary_search_tree_mm2.cpp                                     |   96 
 dlib-1.0.3/dlib/inst/include/dlib/test/blas_bindings/CMakeLists.txt                                   |   66 
 dlib-1.0.3/dlib/inst/include/dlib/test/blas_bindings/blas_bindings_dot.cpp                            |  628 
 dlib-1.0.3/dlib/inst/include/dlib/test/blas_bindings/blas_bindings_gemm.cpp                           |  622 
 dlib-1.0.3/dlib/inst/include/dlib/test/blas_bindings/blas_bindings_gemv.cpp                           |  452 
 dlib-1.0.3/dlib/inst/include/dlib/test/blas_bindings/blas_bindings_ger.cpp                            |  400 
 dlib-1.0.3/dlib/inst/include/dlib/test/blas_bindings/blas_bindings_scal_axpy.cpp                      |  522 
 dlib-1.0.3/dlib/inst/include/dlib/test/blas_bindings/vector.cpp                                       |  230 
 dlib-1.0.3/dlib/inst/include/dlib/test/bridge.cpp                                                     |  518 
 dlib-1.0.3/dlib/inst/include/dlib/test/bsp.cpp                                                        | 1132 
 dlib-1.0.3/dlib/inst/include/dlib/test/byte_orderer.cpp                                               |  222 
 dlib-1.0.3/dlib/inst/include/dlib/test/cca.cpp                                                        |  810 
 dlib-1.0.3/dlib/inst/include/dlib/test/checkerboard.h                                                 |  110 
 dlib-1.0.3/dlib/inst/include/dlib/test/clustering.cpp                                                 |  744 
 dlib-1.0.3/dlib/inst/include/dlib/test/cmd_line_parser.cpp                                            |   80 
 dlib-1.0.3/dlib/inst/include/dlib/test/cmd_line_parser.h                                              | 1802 -
 dlib-1.0.3/dlib/inst/include/dlib/test/cmd_line_parser_wchar_t.cpp                                    |   80 
 dlib-1.0.3/dlib/inst/include/dlib/test/compress_stream.cpp                                            |  612 
 dlib-1.0.3/dlib/inst/include/dlib/test/conditioning_class.cpp                                         |  172 
 dlib-1.0.3/dlib/inst/include/dlib/test/conditioning_class.h                                           | 1682 -
 dlib-1.0.3/dlib/inst/include/dlib/test/conditioning_class_c.cpp                                       |  174 
 dlib-1.0.3/dlib/inst/include/dlib/test/config_reader.cpp                                              | 1018 
 dlib-1.0.3/dlib/inst/include/dlib/test/correlation_tracker.cpp                                        | 1910 -
 dlib-1.0.3/dlib/inst/include/dlib/test/crc32.cpp                                                      |  148 
 dlib-1.0.3/dlib/inst/include/dlib/test/create_iris_datafile.cpp                                       |  130 
 dlib-1.0.3/dlib/inst/include/dlib/test/create_iris_datafile.h                                         |   38 
 dlib-1.0.3/dlib/inst/include/dlib/test/cublas.cpp                                                     |  354 
 dlib-1.0.3/dlib/inst/include/dlib/test/data_io.cpp                                                    |  454 
 dlib-1.0.3/dlib/inst/include/dlib/test/directed_graph.cpp                                             | 1082 
 dlib-1.0.3/dlib/inst/include/dlib/test/discriminant_pca.cpp                                           |  730 
 dlib-1.0.3/dlib/inst/include/dlib/test/disjoint_subsets.cpp                                           |  212 
 dlib-1.0.3/dlib/inst/include/dlib/test/dnn.cpp                                                        | 3526 +-
 dlib-1.0.3/dlib/inst/include/dlib/test/ekm_and_lisf.cpp                                               |  612 
 dlib-1.0.3/dlib/inst/include/dlib/test/elastic_net.cpp                                                |  244 
 dlib-1.0.3/dlib/inst/include/dlib/test/empirical_kernel_map.cpp                                       |  888 
 dlib-1.0.3/dlib/inst/include/dlib/test/entropy_coder.cpp                                              | 1174 
 dlib-1.0.3/dlib/inst/include/dlib/test/entropy_encoder_model.cpp                                      |  396 
 dlib-1.0.3/dlib/inst/include/dlib/test/example.cpp                                                    |  144 
 dlib-1.0.3/dlib/inst/include/dlib/test/example_args.cpp                                               |  150 
 dlib-1.0.3/dlib/inst/include/dlib/test/examples/CMakeLists.txt                                        |   16 
 dlib-1.0.3/dlib/inst/include/dlib/test/face.cpp                                                       |  720 
 dlib-1.0.3/dlib/inst/include/dlib/test/fft.cpp                                                        | 1054 
 dlib-1.0.3/dlib/inst/include/dlib/test/fhog.cpp                                                       | 1368 
 dlib-1.0.3/dlib/inst/include/dlib/test/filtering.cpp                                                  |  332 
 dlib-1.0.3/dlib/inst/include/dlib/test/find_max_factor_graph_nmplp.cpp                                | 1574 -
 dlib-1.0.3/dlib/inst/include/dlib/test/find_max_factor_graph_viterbi.cpp                              |  434 
 dlib-1.0.3/dlib/inst/include/dlib/test/find_optimal_parameters.cpp                                    |  116 
 dlib-1.0.3/dlib/inst/include/dlib/test/geometry.cpp                                                   | 1766 -
 dlib-1.0.3/dlib/inst/include/dlib/test/graph.cpp                                                      |  828 
 dlib-1.0.3/dlib/inst/include/dlib/test/graph_cuts.cpp                                                 | 2434 -
 dlib-1.0.3/dlib/inst/include/dlib/test/graph_labeler.cpp                                              |  944 
 dlib-1.0.3/dlib/inst/include/dlib/test/gui/CMakeLists.txt                                             |   40 
 dlib-1.0.3/dlib/inst/include/dlib/test/gui/main.cpp                                                   | 1674 -
 dlib-1.0.3/dlib/inst/include/dlib/test/hash.cpp                                                       |  738 
 dlib-1.0.3/dlib/inst/include/dlib/test/hash_map.cpp                                                   |  900 
 dlib-1.0.3/dlib/inst/include/dlib/test/hash_set.cpp                                                   |  774 
 dlib-1.0.3/dlib/inst/include/dlib/test/hash_table.cpp                                                 | 1326 
 dlib-1.0.3/dlib/inst/include/dlib/test/hog_image.cpp                                                  |  252 
 dlib-1.0.3/dlib/inst/include/dlib/test/image.cpp                                                      | 3806 +-
 dlib-1.0.3/dlib/inst/include/dlib/test/iosockstream.cpp                                               |  362 
 dlib-1.0.3/dlib/inst/include/dlib/test/is_same_object.cpp                                             |  282 
 dlib-1.0.3/dlib/inst/include/dlib/test/kcentroid.cpp                                                  | 1368 
 dlib-1.0.3/dlib/inst/include/dlib/test/kernel_matrix.cpp                                              |  322 
 dlib-1.0.3/dlib/inst/include/dlib/test/kmeans.cpp                                                     |  326 
 dlib-1.0.3/dlib/inst/include/dlib/test/learning_to_track.cpp                                          |  612 
 dlib-1.0.3/dlib/inst/include/dlib/test/least_squares.cpp                                              |  904 
 dlib-1.0.3/dlib/inst/include/dlib/test/linear_manifold_regularizer.cpp                                |  816 
 dlib-1.0.3/dlib/inst/include/dlib/test/lspi.cpp                                                       |  516 
 dlib-1.0.3/dlib/inst/include/dlib/test/lz77_buffer.cpp                                                | 1138 
 dlib-1.0.3/dlib/inst/include/dlib/test/main.cpp                                                       |  434 
 dlib-1.0.3/dlib/inst/include/dlib/test/makefile                                                       |  372 
 dlib-1.0.3/dlib/inst/include/dlib/test/map.cpp                                                        |  882 
 dlib-1.0.3/dlib/inst/include/dlib/test/matrix.cpp                                                     | 2802 -
 dlib-1.0.3/dlib/inst/include/dlib/test/matrix2.cpp                                                    | 2308 -
 dlib-1.0.3/dlib/inst/include/dlib/test/matrix3.cpp                                                    | 2268 -
 dlib-1.0.3/dlib/inst/include/dlib/test/matrix4.cpp                                                    | 2210 -
 dlib-1.0.3/dlib/inst/include/dlib/test/matrix_chol.cpp                                                |  364 
 dlib-1.0.3/dlib/inst/include/dlib/test/matrix_eig.cpp                                                 |  490 
 dlib-1.0.3/dlib/inst/include/dlib/test/matrix_lu.cpp                                                  |  446 
 dlib-1.0.3/dlib/inst/include/dlib/test/matrix_qr.cpp                                                  |  416 
 dlib-1.0.3/dlib/inst/include/dlib/test/max_cost_assignment.cpp                                        |  314 
 dlib-1.0.3/dlib/inst/include/dlib/test/max_sum_submatrix.cpp                                          |  354 
 dlib-1.0.3/dlib/inst/include/dlib/test/md5.cpp                                                        |  142 
 dlib-1.0.3/dlib/inst/include/dlib/test/member_function_pointer.cpp                                    | 1106 
 dlib-1.0.3/dlib/inst/include/dlib/test/metaprogramming.cpp                                            |  188 
 dlib-1.0.3/dlib/inst/include/dlib/test/mpc.cpp                                                        |  692 
 dlib-1.0.3/dlib/inst/include/dlib/test/multithreaded_object.cpp                                       |  642 
 dlib-1.0.3/dlib/inst/include/dlib/test/numerical_integration.cpp                                      |  456 
 dlib-1.0.3/dlib/inst/include/dlib/test/object_detector.cpp                                            | 2056 -
 dlib-1.0.3/dlib/inst/include/dlib/test/oca.cpp                                                        |  488 
 dlib-1.0.3/dlib/inst/include/dlib/test/one_vs_all_trainer.cpp                                         |  610 
 dlib-1.0.3/dlib/inst/include/dlib/test/one_vs_one_trainer.cpp                                         |  436 
 dlib-1.0.3/dlib/inst/include/dlib/test/opt_qp_solver.cpp                                              |  952 
 dlib-1.0.3/dlib/inst/include/dlib/test/optimization.cpp                                               | 2416 -
 dlib-1.0.3/dlib/inst/include/dlib/test/optimization_test_functions.cpp                                |  850 
 dlib-1.0.3/dlib/inst/include/dlib/test/optimization_test_functions.h                                  |  620 
 dlib-1.0.3/dlib/inst/include/dlib/test/parallel_for.cpp                                               |  668 
 dlib-1.0.3/dlib/inst/include/dlib/test/parse.cpp                                                      |  466 
 dlib-1.0.3/dlib/inst/include/dlib/test/pipe.cpp                                                       | 1376 
 dlib-1.0.3/dlib/inst/include/dlib/test/pixel.cpp                                                      | 1554 -
 dlib-1.0.3/dlib/inst/include/dlib/test/probabilistic.cpp                                              |  246 
 dlib-1.0.3/dlib/inst/include/dlib/test/pyramid_down.cpp                                               |  776 
 dlib-1.0.3/dlib/inst/include/dlib/test/queue.cpp                                                      |  852 
 dlib-1.0.3/dlib/inst/include/dlib/test/rand.cpp                                                       |  818 
 dlib-1.0.3/dlib/inst/include/dlib/test/ranking.cpp                                                    |  878 
 dlib-1.0.3/dlib/inst/include/dlib/test/read_write_mutex.cpp                                           |  416 
 dlib-1.0.3/dlib/inst/include/dlib/test/reference_counter.cpp                                          |  244 
 dlib-1.0.3/dlib/inst/include/dlib/test/rls.cpp                                                        |  392 
 dlib-1.0.3/dlib/inst/include/dlib/test/sammon.cpp                                                     |  422 
 dlib-1.0.3/dlib/inst/include/dlib/test/scan_image.cpp                                                 | 1426 
 dlib-1.0.3/dlib/inst/include/dlib/test/sequence.cpp                                                   |  624 
 dlib-1.0.3/dlib/inst/include/dlib/test/sequence_labeler.cpp                                           |  922 
 dlib-1.0.3/dlib/inst/include/dlib/test/sequence_segmenter.cpp                                         |  588 
 dlib-1.0.3/dlib/inst/include/dlib/test/serialize.cpp                                                  | 2058 -
 dlib-1.0.3/dlib/inst/include/dlib/test/set.cpp                                                        |  928 
 dlib-1.0.3/dlib/inst/include/dlib/test/sldf.cpp                                                       |  592 
 dlib-1.0.3/dlib/inst/include/dlib/test/sliding_buffer.cpp                                             |  878 
 dlib-1.0.3/dlib/inst/include/dlib/test/smart_pointers.cpp                                             |  892 
 dlib-1.0.3/dlib/inst/include/dlib/test/sockets.cpp                                                    |  490 
 dlib-1.0.3/dlib/inst/include/dlib/test/sockets2.cpp                                                   |  404 
 dlib-1.0.3/dlib/inst/include/dlib/test/sockstreambuf.cpp                                              |  506 
 dlib-1.0.3/dlib/inst/include/dlib/test/sparse_vector.cpp                                              |  602 
 dlib-1.0.3/dlib/inst/include/dlib/test/stack.cpp                                                      |  588 
 dlib-1.0.3/dlib/inst/include/dlib/test/static_map.cpp                                                 |  646 
 dlib-1.0.3/dlib/inst/include/dlib/test/static_set.cpp                                                 |  412 
 dlib-1.0.3/dlib/inst/include/dlib/test/statistics.cpp                                                 | 1630 -
 dlib-1.0.3/dlib/inst/include/dlib/test/std_vector_c.cpp                                               |  202 
 dlib-1.0.3/dlib/inst/include/dlib/test/string.cpp                                                     |  644 
 dlib-1.0.3/dlib/inst/include/dlib/test/svm.cpp                                                        | 1322 
 dlib-1.0.3/dlib/inst/include/dlib/test/svm_c_linear.cpp                                               |  784 
 dlib-1.0.3/dlib/inst/include/dlib/test/svm_c_linear_dcd.cpp                                           | 1090 
 dlib-1.0.3/dlib/inst/include/dlib/test/svm_multiclass_linear.cpp                                      |  452 
 dlib-1.0.3/dlib/inst/include/dlib/test/svm_struct.cpp                                                 | 1282 
 dlib-1.0.3/dlib/inst/include/dlib/test/svr_linear_trainer.cpp                                         |  322 
 dlib-1.0.3/dlib/inst/include/dlib/test/symmetric_matrix_cache.cpp                                     |  424 
 dlib-1.0.3/dlib/inst/include/dlib/test/tester.cpp                                                     |  350 
 dlib-1.0.3/dlib/inst/include/dlib/test/tester.h                                                       |  374 
 dlib-1.0.3/dlib/inst/include/dlib/test/thread_pool.cpp                                                |  856 
 dlib-1.0.3/dlib/inst/include/dlib/test/threads.cpp                                                    |  316 
 dlib-1.0.3/dlib/inst/include/dlib/test/timer.cpp                                                      |  694 
 dlib-1.0.3/dlib/inst/include/dlib/test/tokenizer.cpp                                                  |  756 
 dlib-1.0.3/dlib/inst/include/dlib/test/tools/CMakeLists.txt                                           |    8 
 dlib-1.0.3/dlib/inst/include/dlib/test/trust_region.cpp                                               |  658 
 dlib-1.0.3/dlib/inst/include/dlib/test/tuple.cpp                                                      |  372 
 dlib-1.0.3/dlib/inst/include/dlib/test/type_safe_union.cpp                                            |  910 
 dlib-1.0.3/dlib/inst/include/dlib/test/vectorstream.cpp                                               |  284 
 dlib-1.0.3/dlib/inst/include/dlib/threads.h                                                           |   56 
 dlib-1.0.3/dlib/inst/include/dlib/threads/async.cpp                                                   |   96 
 dlib-1.0.3/dlib/inst/include/dlib/threads/async.h                                                     |  210 
 dlib-1.0.3/dlib/inst/include/dlib/threads/async_abstract.h                                            |  134 
 dlib-1.0.3/dlib/inst/include/dlib/threads/auto_mutex_extension.h                                      |  360 
 dlib-1.0.3/dlib/inst/include/dlib/threads/auto_mutex_extension_abstract.h                             |  370 
 dlib-1.0.3/dlib/inst/include/dlib/threads/auto_unlock_extension.h                                     |  232 
 dlib-1.0.3/dlib/inst/include/dlib/threads/auto_unlock_extension_abstract.h                            |  232 
 dlib-1.0.3/dlib/inst/include/dlib/threads/create_new_thread_extension.h                               |   92 
 dlib-1.0.3/dlib/inst/include/dlib/threads/create_new_thread_extension_abstract.h                      |   66 
 dlib-1.0.3/dlib/inst/include/dlib/threads/multithreaded_object_extension.cpp                          |  482 
 dlib-1.0.3/dlib/inst/include/dlib/threads/multithreaded_object_extension.h                            |  306 
 dlib-1.0.3/dlib/inst/include/dlib/threads/multithreaded_object_extension_abstract.h                   |  372 
 dlib-1.0.3/dlib/inst/include/dlib/threads/parallel_for_extension.h                                    | 1352 
 dlib-1.0.3/dlib/inst/include/dlib/threads/parallel_for_extension_abstract.h                           |  938 
 dlib-1.0.3/dlib/inst/include/dlib/threads/posix.h                                                     |   12 
 dlib-1.0.3/dlib/inst/include/dlib/threads/read_write_mutex_extension.h                                |  354 
 dlib-1.0.3/dlib/inst/include/dlib/threads/read_write_mutex_extension_abstract.h                       |  292 
 dlib-1.0.3/dlib/inst/include/dlib/threads/rmutex_extension.h                                          |  218 
 dlib-1.0.3/dlib/inst/include/dlib/threads/rmutex_extension_abstract.h                                 |  214 
 dlib-1.0.3/dlib/inst/include/dlib/threads/rsignaler_extension.h                                       |  180 
 dlib-1.0.3/dlib/inst/include/dlib/threads/rsignaler_extension_abstract.h                              |  246 
 dlib-1.0.3/dlib/inst/include/dlib/threads/thread_function_extension.h                                 |  428 
 dlib-1.0.3/dlib/inst/include/dlib/threads/thread_function_extension_abstract.h                        |  292 
 dlib-1.0.3/dlib/inst/include/dlib/threads/thread_pool_extension.cpp                                   |  688 
 dlib-1.0.3/dlib/inst/include/dlib/threads/thread_pool_extension.h                                     | 2778 -
 dlib-1.0.3/dlib/inst/include/dlib/threads/thread_pool_extension_abstract.h                            | 1684 -
 dlib-1.0.3/dlib/inst/include/dlib/threads/thread_specific_data_extension.h                            |  282 
 dlib-1.0.3/dlib/inst/include/dlib/threads/thread_specific_data_extension_abstract.h                   |  174 
 dlib-1.0.3/dlib/inst/include/dlib/threads/threaded_object_extension.cpp                               |  580 
 dlib-1.0.3/dlib/inst/include/dlib/threads/threaded_object_extension.h                                 |  246 
 dlib-1.0.3/dlib/inst/include/dlib/threads/threaded_object_extension_abstract.h                        |  398 
 dlib-1.0.3/dlib/inst/include/dlib/threads/threads_kernel.h                                            |   36 
 dlib-1.0.3/dlib/inst/include/dlib/threads/threads_kernel_1.cpp                                        |  166 
 dlib-1.0.3/dlib/inst/include/dlib/threads/threads_kernel_1.h                                          |  534 
 dlib-1.0.3/dlib/inst/include/dlib/threads/threads_kernel_2.cpp                                        |  150 
 dlib-1.0.3/dlib/inst/include/dlib/threads/threads_kernel_2.h                                          |  360 
 dlib-1.0.3/dlib/inst/include/dlib/threads/threads_kernel_abstract.h                                   |  604 
 dlib-1.0.3/dlib/inst/include/dlib/threads/threads_kernel_shared.cpp                                   |  658 
 dlib-1.0.3/dlib/inst/include/dlib/threads/threads_kernel_shared.h                                     |  630 
 dlib-1.0.3/dlib/inst/include/dlib/threads/windows.h                                                   |   12 
 dlib-1.0.3/dlib/inst/include/dlib/time_this.h                                                         |  154 
 dlib-1.0.3/dlib/inst/include/dlib/timeout.h                                                           |   20 
 dlib-1.0.3/dlib/inst/include/dlib/timeout/timeout.h                                                   |  400 
 dlib-1.0.3/dlib/inst/include/dlib/timeout/timeout_abstract.h                                          |  376 
 dlib-1.0.3/dlib/inst/include/dlib/timer.h                                                             |   20 
 dlib-1.0.3/dlib/inst/include/dlib/timer/timer.cpp                                                     |  416 
 dlib-1.0.3/dlib/inst/include/dlib/timer/timer.h                                                       |  852 
 dlib-1.0.3/dlib/inst/include/dlib/timer/timer_abstract.h                                              |  380 
 dlib-1.0.3/dlib/inst/include/dlib/timer/timer_heavy.h                                                 |  784 
 dlib-1.0.3/dlib/inst/include/dlib/timing.h                                                            |  390 
 dlib-1.0.3/dlib/inst/include/dlib/tokenizer.h                                                         |   66 
 dlib-1.0.3/dlib/inst/include/dlib/tokenizer/tokenizer_kernel_1.cpp                                    |  590 
 dlib-1.0.3/dlib/inst/include/dlib/tokenizer/tokenizer_kernel_1.h                                      |  310 
 dlib-1.0.3/dlib/inst/include/dlib/tokenizer/tokenizer_kernel_abstract.h                               |  578 
 dlib-1.0.3/dlib/inst/include/dlib/tokenizer/tokenizer_kernel_c.h                                      |  334 
 dlib-1.0.3/dlib/inst/include/dlib/tuple.h                                                             |   20 
 dlib-1.0.3/dlib/inst/include/dlib/tuple/tuple.h                                                       |  820 
 dlib-1.0.3/dlib/inst/include/dlib/tuple/tuple_abstract.h                                              |  604 
 dlib-1.0.3/dlib/inst/include/dlib/type_safe_union.h                                                   |   22 
 dlib-1.0.3/dlib/inst/include/dlib/type_safe_union/type_safe_union_kernel.h                            | 1422 
 dlib-1.0.3/dlib/inst/include/dlib/type_safe_union/type_safe_union_kernel_abstract.h                   |  658 
 dlib-1.0.3/dlib/inst/include/dlib/uintn.h                                                             |  192 
 dlib-1.0.3/dlib/inst/include/dlib/unicode.h                                                           |   18 
 dlib-1.0.3/dlib/inst/include/dlib/unicode/unicode.cpp                                                 |  350 
 dlib-1.0.3/dlib/inst/include/dlib/unicode/unicode.h                                                   | 1232 
 dlib-1.0.3/dlib/inst/include/dlib/unicode/unicode_abstract.h                                          |  466 
 dlib-1.0.3/dlib/inst/include/dlib/unordered_pair.h                                                    |  352 
 dlib-1.0.3/dlib/inst/include/dlib/vectorstream.h                                                      |   22 
 dlib-1.0.3/dlib/inst/include/dlib/vectorstream/unserialize.h                                          |  196 
 dlib-1.0.3/dlib/inst/include/dlib/vectorstream/unserialize_abstract.h                                 |  116 
 dlib-1.0.3/dlib/inst/include/dlib/vectorstream/vectorstream.h                                         |  276 
 dlib-1.0.3/dlib/inst/include/dlib/vectorstream/vectorstream_abstract.h                                |  124 
 dlib-1.0.3/dlib/inst/include/dlib/windows_magic.h                                                     |  100 
 dlib-1.0.3/dlib/inst/include/dlib/xml_parser.h                                                        |   26 
 dlib-1.0.3/dlib/inst/include/dlib/xml_parser/xml_parser_kernel_1.h                                    | 3056 +-
 dlib-1.0.3/dlib/inst/include/dlib/xml_parser/xml_parser_kernel_abstract.h                             |  552 
 dlib-1.0.3/dlib/inst/include/dlib/xml_parser/xml_parser_kernel_interfaces.h                           |  458 
 dlib-1.0.3/dlib/man/dlib-package.Rd                                                                   |   98 
 dlib-1.0.3/dlib/man/inlineCxxPlugin.Rd                                                                |   40 
 dlib-1.0/dlib/inst/include/dlib/external                                                              |only
 1188 files changed, 414022 insertions(+), 414288 deletions(-)

More information about dlib at CRAN
Permanent link

New package diffdf with initial version 1.0.0
Package: diffdf
Type: Package
Title: Dataframe Difference Tool
Version: 1.0.0
Authors@R: c( person("Craig" ,"Gower" , email = "craig.gower@roche.com" , role = c("cre","aut")), person("Kieran", "Martin" , email = "kieran.martin@roche.com" , role = "aut") )
Description: Functions for comparing two data.frames against each other. The core functionality is to provide a detailed breakdown of any differences between two data.frames as well as providing utility functions to help narrow down the source of problems and differences.
Encoding: UTF-8
LazyData: true
Depends: R (>= 3.1.2)
Imports: tibble
Suggests: testthat, lubridate, knitr, rmarkdown, purrr, dplyr, stringi
RoxygenNote: 6.0.1
VignetteBuilder: knitr
License: MIT + file LICENSE
NeedsCompilation: no
Packaged: 2018-05-04 15:31:54 UTC; gowerc
Author: Craig Gower [cre, aut], Kieran Martin [aut]
Maintainer: Craig Gower <craig.gower@roche.com>
Repository: CRAN
Date/Publication: 2018-05-07 11:17:02 UTC

More information about diffdf at CRAN
Permanent link

Package EMbC updated to version 2.0.1 with previous version 2.0.0 dated 2016-11-10

Title: Expectation-Maximization Binary Clustering
Description: Unsupervised, multivariate, binary clustering for meaningful annotation of data, taking into account the uncertainty in the data. A specific constructor for trajectory analysis in movement ecology yields behavioural annotation of trajectories based on estimated local measures of velocity and turning angle, eventually with solar position covariate as a daytime indicator, ("Expectation-Maximization Binary Clustering for Behavioural Annotation").
Author: Joan Garriga, John R.B. Palmer, Aitana Oltra, Frederic Bartumeus
Maintainer: Joan Garriga <jgarriga@ceab.csic.es>

Diff between EMbC versions 2.0.0 dated 2016-11-10 and 2.0.1 dated 2018-05-07

 DESCRIPTION                 |   11 +++--
 MD5                         |   86 ++++++++++++++++++++++----------------------
 NAMESPACE                   |    8 ++--
 NEWS.md                     |    8 +++-
 R/RcppExports.R             |   10 ++---
 R/constructors.R            |   20 +++++-----
 R/methods.R                 |   84 +++++++++++++++++++++++-------------------
 R/mvbc.R                    |    2 -
 R/pckg.R                    |   12 +++---
 R/smoothing.R               |   58 ++++++++++++++++-------------
 build/vignette.rds          |binary
 inst/doc/EMbC_qckref.R      |   28 ++++++--------
 inst/doc/EMbC_qckref.Rmd    |   56 ++++++++++++----------------
 inst/doc/EMbC_qckref.pdf    |binary
 man/EMbC_pckg.Rd            |   15 +++----
 man/binClst-class.Rd        |    2 -
 man/binClstPath-class.Rd    |    2 -
 man/binClstPath_Instance.Rd |    3 -
 man/binClstStck-class.Rd    |   12 +-----
 man/binClst_Instance.Rd     |    3 -
 man/bkml.Rd                 |   15 +++----
 man/bmap.Rd                 |   25 ++++++------
 man/chkp.Rd                 |   21 +++++-----
 man/cnfm.Rd                 |   23 +++++------
 man/embc.Rd                 |   14 +++----
 man/expth.Rd                |    5 +-
 man/lblp.Rd                 |   13 +++---
 man/lkhp.Rd                 |    9 ++--
 man/pkml.Rd                 |   17 ++++----
 man/pmap.Rd                 |   25 ++++++------
 man/rlbl.Rd                 |   27 ++++++-------
 man/sct3.Rd                 |   15 +++----
 man/sctr.Rd                 |   21 +++++-----
 man/setc.Rd                 |    7 +--
 man/slct.Rd                 |    3 -
 man/smth.Rd                 |   16 +++++---
 man/stbc.Rd                 |   13 +++---
 man/stts.Rd                 |    5 +-
 man/varp.Rd                 |    3 -
 man/view.Rd                 |    9 ++--
 man/x2d.Rd                  |    3 -
 src/Makevars.win            |    1 
 src/RcppExports.cpp         |   24 +++++++++---
 vignettes/EMbC_qckref.Rmd   |   56 ++++++++++++----------------
 44 files changed, 393 insertions(+), 397 deletions(-)

More information about EMbC at CRAN
Permanent link

Package kde1d updated to version 0.2.0 with previous version 0.1.2 dated 2018-04-17

Title: Univariate Kernel Density Estimation
Description: Provides an efficient implementation of univariate local polynomial kernel density estimators that can handle bounded and discrete data. See Geenens (2014) <arXiv:1303.4121>, Geenens and Wang (2018) <arXiv:1602.04862>, Nagler (2018a) <arXiv:1704.07457>, Nagler (2018b) <arXiv:1705.05431>.
Author: Thomas Nagler [aut, cre], Thibault Vatter [aut]
Maintainer: Thomas Nagler <mail@tnagler.com>

Diff between kde1d versions 0.1.2 dated 2018-04-17 and 0.2.0 dated 2018-05-07

 DESCRIPTION                 |    6 ++--
 MD5                         |   21 ++++++++-------
 NEWS.md                     |   17 ++++++++++++
 R/kde1d.R                   |   60 ++++----------------------------------------
 R/kde1d_methods.R           |   51 ++++++++++++++++++++++---------------
 R/tools.R                   |only
 README.md                   |    6 ++--
 inst/include/lpdens.hpp     |   22 ++++++++--------
 man/kde1d.Rd                |   14 ++++------
 src/wrappers.cpp            |   14 ++++++++--
 tests/testthat/Rplots.pdf   |binary
 tests/testthat/test_kde1d.R |   27 +++++++++++++++++++
 12 files changed, 127 insertions(+), 111 deletions(-)

More information about kde1d at CRAN
Permanent link

Package RcppGSL updated to version 0.3.4 with previous version 0.3.3 dated 2017-09-24

Title: 'Rcpp' Integration for 'GNU GSL' Vectors and Matrices
Description: 'Rcpp' integration for 'GNU GSL' vectors and matrices The 'GNU Scientific Library' (or 'GSL') is a collection of numerical routines for scientific computing. It is particularly useful for C and C++ programs as it provides a standard C interface to a wide range of mathematical routines. There are over 1000 functions in total with an extensive test suite. The 'RcppGSL' package provides an easy-to-use interface between 'GSL' data structures and R using concepts from 'Rcpp' which is itself a package that eases the interfaces between R and C++. This package also serves as a prime example of how to build a package that uses 'Rcpp' to connect to another third-party library. The 'autoconf' script, 'inline' plugin and example package can all be used as a stanza to write a similar package against another library.
Author: Dirk Eddelbuettel and Romain Francois
Maintainer: Dirk Eddelbuettel <edd@debian.org>

Diff between RcppGSL versions 0.3.3 dated 2017-09-24 and 0.3.4 dated 2018-05-07

 ChangeLog                      |   33 +++++++++++++++++++++++++++++++++
 DESCRIPTION                    |    8 ++++----
 MD5                            |   25 +++++++++++++------------
 build/vignette.rds             |binary
 inst/NEWS.Rd                   |    9 +++++++++
 inst/doc/RcppGSL-intro.Rmd     |    5 +++--
 inst/doc/RcppGSL-intro.pdf     |binary
 inst/doc/RcppGSL-unitTests.pdf |binary
 inst/include/RcppGSL_matrix.h  |   10 +++++-----
 inst/include/RcppGSL_types.h   |   14 +++++++-------
 inst/unitTests/cpp/gsl.cpp     |   11 +++++++++--
 src/Makevars.win               |   12 +++++++++---
 tools                          |only
 vignettes/RcppGSL-intro.Rmd    |    5 +++--
 14 files changed, 95 insertions(+), 37 deletions(-)

More information about RcppGSL at CRAN
Permanent link

Package pairwiseCI updated to version 0.1-26 with previous version 0.1-25 dated 2015-08-06

Title: Confidence Intervals for Two Sample Comparisons
Description: Calculation of the parametric, nonparametric confidence intervals for the difference or ratio of location parameters, nonparametric confidence interval for the Behrens-Fisher problem and for the difference, ratio and odds-ratio of binomial proportions for comparison of independent samples. Common wrapper functions to split data sets and apply confidence intervals or tests to these subsets. A by-statement allows calculation of CI separately for the levels of further factors. CI are not adjusted for multiplicity.
Author: Frank Schaarschmidt [aut, cre], Daniel Gerhard [aut]
Maintainer: Frank Schaarschmidt <schaarschmidt@biostat.uni-hannover.de>

Diff between pairwiseCI versions 0.1-25 dated 2015-08-06 and 0.1-26 dated 2018-05-07

 DESCRIPTION                     |   13 +-
 MD5                             |   22 +--
 NAMESPACE                       |    3 
 R/Param.ratio.R                 |  252 +++++++++++++++++++++++++++++++++++++++-
 R/Prop.diff.R                   |  137 +++++++++++++++++++++
 data/Oats.rda                   |binary
 data/behenic.rda                |binary
 man/as.data.frame.pairwiseCI.Rd |    2 
 man/pairwiseCI.Rd               |    5 
 man/pairwiseCIInt.Rd            |    2 
 man/pairwiseCImethodsCont.Rd    |    4 
 man/pairwiseCImethodsCount.Rd   |   11 -
 12 files changed, 419 insertions(+), 32 deletions(-)

More information about pairwiseCI at CRAN
Permanent link

Package MVN updated to version 5.3 with previous version 5.2 dated 2018-04-20

Title: Multivariate Normality Tests
Description: Performs multivariate normality tests and graphical approaches and implements multivariate outlier detection and univariate normality of marginal distributions through plots and tests (Korkmaz et al, (2014), <https://journal.r-project.org/archive/2014-2/korkmaz-goksuluk-zararsiz.pdf>).
Author: Selcuk Korkmaz [aut, cre], Dincer Goksuluk [aut], Gokmen Zararsiz [aut]
Maintainer: Selcuk Korkmaz <selcukorkmaz@gmail.com>

Diff between MVN versions 5.2 dated 2018-04-20 and 5.3 dated 2018-05-07

 DESCRIPTION       |    8 ++++----
 MD5               |   10 +++++-----
 R/mvn.R           |    6 +++---
 inst/doc/MVN.Rnw  |    6 ++++--
 inst/doc/MVN.pdf  |binary
 vignettes/MVN.Rnw |    6 ++++--
 6 files changed, 20 insertions(+), 16 deletions(-)

More information about MVN at CRAN
Permanent link

Package ggthemes updated to version 3.5.0 with previous version 3.4.2 dated 2018-04-03

Title: Extra Themes, Scales and Geoms for 'ggplot2'
Description: Some extra themes, geoms, and scales for 'ggplot2'. Provides 'ggplot2' themes and scales that replicate the look of plots by Edward Tufte, Stephen Few, 'Fivethirtyeight', 'The Economist', 'Stata', 'Excel', and 'The Wall Street Journal', among others. Provides 'geoms' for Tufte's box plot and range frame.
Author: Jeffrey B. Arnold [aut, cre], Gergely Daroczi [ctb], Bo Werth [ctb], Brian Weitzner [ctb], Joshua Kunst [ctb], Baptise Auguie [ctb], Bob Rudis [ctb], Hadley Wickham [ctb, cph] (Code from the ggplot2 package.), Justin Talbot [ctb] (Code from the labeling package), Joshua London [ctb]
Maintainer: Jeffrey B. Arnold <jeffrey.arnold@gmail.com>

Diff between ggthemes versions 3.4.2 dated 2018-04-03 and 3.5.0 dated 2018-05-07

 DESCRIPTION                                       |   11 
 MD5                                               |  252 +++++------
 NEWS.md                                           |  142 +++---
 R/banking.R                                       |    3 
 R/calc.R                                          |    1 
 R/colorblind.R                                    |    2 
 R/economist.R                                     |    8 
 R/excel.R                                         |    6 
 R/few.R                                           |   38 +
 R/fivethirtyeight.R                               |    3 
 R/gdocs.R                                         |    1 
 R/geom-tufteboxplot.R                             |    6 
 R/ggthemes-data.R                                 |  231 +++++-----
 R/hc.R                                            |   14 
 R/pander.R                                        |   14 
 R/ptol.R                                          |    2 
 R/shapes.R                                        |   53 +-
 R/show.R                                          |    6 
 R/solarized.R                                     |    4 
 R/stata.R                                         |   20 
 R/tableau.R                                       |   43 +
 R/theme-solid.R                                   |    3 
 R/wsj.R                                           |   12 
 build/vignette.rds                                |binary
 inst/WORDLIST                                     |only
 inst/doc/ggthemes.html                            |  480 ++++++----------------
 inst/examples/ex-bank_slopes.R                    |    8 
 inst/examples/ex-calc_pal.R                       |    6 
 inst/examples/ex-calc_shape_pal.R                 |    6 
 inst/examples/ex-circlefill_shape_pal.R           |    8 
 inst/examples/ex-cleveland_shape_pal.R            |    6 
 inst/examples/ex-colorblind.R                     |   11 
 inst/examples/ex-economist_pal.R                  |   10 
 inst/examples/ex-excel_pal.R                      |   10 
 inst/examples/ex-few_pal.R                        |    7 
 inst/examples/ex-fivethirtyeight_pal.R            |    6 
 inst/examples/ex-gdocs_pal.R                      |    6 
 inst/examples/ex-geom_rangeframe.R                |    7 
 inst/examples/ex-geom_tufteboxplot.R              |   10 
 inst/examples/ex-palette_pander.R                 |    7 
 inst/examples/ex-ptol_pal.R                       |    6 
 inst/examples/ex-scale_color_tableau.R            |   26 -
 inst/examples/ex-scale_colour_gradient2_tableau.R |   19 
 inst/examples/ex-scale_colour_gradient_tableau.R  |   10 
 inst/examples/ex-scale_linetype_stata.R           |    8 
 inst/examples/ex-scale_shape_stata.R              |    6 
 inst/examples/ex-scale_shape_tableau.R            |    6 
 inst/examples/ex-scale_shape_tremmel.R            |   18 
 inst/examples/ex-scale_solarized.R                |    9 
 inst/examples/ex-show_linetypes.R                 |    8 
 inst/examples/ex-show_shapes.R                    |    9 
 inst/examples/ex-solarized_pal.R                  |    8 
 inst/examples/ex-stata_pal.R                      |    6 
 inst/examples/ex-tableau_color_pal.R              |   24 -
 inst/examples/ex-tableau_div_gradient_pal.R       |   11 
 inst/examples/ex-tableau_seq_gradient_pal.R       |   12 
 inst/examples/ex-tableau_shape_pal.R              |    5 
 inst/examples/ex-theme_base.R                     |    8 
 inst/examples/ex-theme_calc.R                     |    8 
 inst/examples/ex-theme_economist.R                |   11 
 inst/examples/ex-theme_excel.R                    |   11 
 inst/examples/ex-theme_few.R                      |    9 
 inst/examples/ex-theme_gdocs.R                    |    6 
 inst/examples/ex-theme_hc.R                       |   10 
 inst/examples/ex-theme_igray.R                    |    8 
 inst/examples/ex-theme_map.R                      |   13 
 inst/examples/ex-theme_pander.R                   |   12 
 inst/examples/ex-theme_par.R                      |    9 
 inst/examples/ex-theme_solarized.R                |   12 
 inst/examples/ex-theme_solid.R                    |    6 
 inst/examples/ex-theme_stata.R                    |    8 
 inst/examples/ex-theme_tufte.R                    |   16 
 inst/examples/ex-theme_wsj.R                      |   16 
 man/bank_slopes.Rd                                |   10 
 man/calc_pal.Rd                                   |    7 
 man/calc_shape_pal.Rd                             |    6 
 man/circlefill_shape_pal.Rd                       |   13 
 man/cleveland_shape_pal.Rd                        |   10 
 man/colorblind.Rd                                 |   13 
 man/economist_pal.Rd                              |   10 
 man/excel_pal.Rd                                  |   16 
 man/few_pal.Rd                                    |   27 -
 man/fivethirtyeight_pal.Rd                        |    9 
 man/gdocs_pal.Rd                                  |    7 
 man/geom_rangeframe.Rd                            |    7 
 man/geom_tufteboxplot.Rd                          |   10 
 man/hc_pal.Rd                                     |   17 
 man/palette_pander.Rd                             |    9 
 man/ptol_pal.Rd                                   |    6 
 man/scale_color_tableau.Rd                        |   26 -
 man/scale_colour_gradient2_tableau.Rd             |   19 
 man/scale_colour_gradient_tableau.Rd              |   10 
 man/scale_few.Rd                                  |    2 
 man/scale_linetype_stata.Rd                       |    8 
 man/scale_ptol.Rd                                 |    2 
 man/scale_shape_stata.Rd                          |    6 
 man/scale_shape_tableau.Rd                        |    6 
 man/scale_shape_tremmel.Rd                        |   18 
 man/scale_solarized.Rd                            |    9 
 man/show_linetypes.Rd                             |    8 
 man/show_shapes.Rd                                |    9 
 man/solarized_pal.Rd                              |   11 
 man/stata_linetype_pal.Rd                         |    1 
 man/stata_pal.Rd                                  |    9 
 man/stata_shape_pal.Rd                            |    4 
 man/tableau_color_pal.Rd                          |   30 -
 man/tableau_div_gradient_pal.Rd                   |   11 
 man/tableau_seq_gradient_pal.Rd                   |   12 
 man/tableau_shape_pal.Rd                          |    5 
 man/theme_base.Rd                                 |    8 
 man/theme_calc.Rd                                 |    8 
 man/theme_economist.Rd                            |   11 
 man/theme_excel.Rd                                |   11 
 man/theme_few.Rd                                  |   16 
 man/theme_gdocs.Rd                                |    6 
 man/theme_hc.Rd                                   |   10 
 man/theme_igray.Rd                                |    8 
 man/theme_map.Rd                                  |   13 
 man/theme_pander.Rd                               |   12 
 man/theme_par.Rd                                  |    9 
 man/theme_solarized.Rd                            |   12 
 man/theme_solid.Rd                                |    6 
 man/theme_stata.Rd                                |    8 
 man/theme_tufte.Rd                                |   16 
 man/theme_wsj.Rd                                  |   16 
 man/tremmel_shape_pal.Rd                          |    1 
 man/wsj_pal.Rd                                    |   12 
 tests                                             |only
 128 files changed, 951 insertions(+), 1432 deletions(-)

More information about ggthemes at CRAN
Permanent link

Package bsts updated to version 0.8.0 with previous version 0.7.1 dated 2017-05-28

Title: Bayesian Structural Time Series
Description: Time series regression using dynamic linear models fit using MCMC. See Scott and Varian (2014) <DOI:10.1504/IJMMNO.2014.059942>, among many other sources.
Author: Steven L. Scott <steve.the.bayesian@gmail.com>
Maintainer: Steven L. Scott <steve.the.bayesian@gmail.com>

Diff between bsts versions 0.7.1 dated 2017-05-28 and 0.8.0 dated 2018-05-07

 bsts-0.7.1/bsts/R/add.holiday.R                             |only
 bsts-0.7.1/bsts/R/plot.holidays.R                           |only
 bsts-0.7.1/bsts/man/add.holiday.Rd                          |only
 bsts-0.7.1/bsts/man/plot.holidays.Rd                        |only
 bsts-0.8.0/bsts/DESCRIPTION                                 |   17 
 bsts-0.8.0/bsts/MD5                                         |  207 ++--
 bsts-0.8.0/bsts/NAMESPACE                                   |  183 ++-
 bsts-0.8.0/bsts/R/add.ar.R                                  |   17 
 bsts-0.8.0/bsts/R/add.dynamic.regression.R                  |  283 ++++-
 bsts-0.8.0/bsts/R/add.local.level.R                         |   17 
 bsts-0.8.0/bsts/R/add.local.linear.trend.R                  |   34 
 bsts-0.8.0/bsts/R/add.monthly.annual.cycle.R                |only
 bsts-0.8.0/bsts/R/add.random.walk.holiday.R                 |only
 bsts-0.8.0/bsts/R/add.regression.holiday.R                  |only
 bsts-0.8.0/bsts/R/add.seasonal.R                            |   74 +
 bsts-0.8.0/bsts/R/add.semilocal.linear.trend.R              |   17 
 bsts-0.8.0/bsts/R/add.static.intercept.R                    |only
 bsts-0.8.0/bsts/R/add.student.local.linear.trend.R          |   16 
 bsts-0.8.0/bsts/R/add.trig.R                                |   59 -
 bsts-0.8.0/bsts/R/bsts.R                                    |  182 +--
 bsts-0.8.0/bsts/R/compare.bsts.models.R                     |   33 
 bsts-0.8.0/bsts/R/date.functions.R                          |   20 
 bsts-0.8.0/bsts/R/diagnostics.R                             |   16 
 bsts-0.8.0/bsts/R/format.learning.data.R                    |   18 
 bsts-0.8.0/bsts/R/format.prediction.data.R                  |  106 +-
 bsts-0.8.0/bsts/R/format.timestamps.R                       |   16 
 bsts-0.8.0/bsts/R/holiday.R                                 |only
 bsts-0.8.0/bsts/R/mixed.frequency.R                         |   21 
 bsts-0.8.0/bsts/R/plot_seasonal_effect.R                    |  198 ++++
 bsts-0.8.0/bsts/R/plots.R                                   |  577 ++++++++++--
 bsts-0.8.0/bsts/R/predict.bsts.R                            |  121 +-
 bsts-0.8.0/bsts/R/summary.bsts.R                            |   21 
 bsts-0.8.0/bsts/R/utils.R                                   |  177 +++
 bsts-0.8.0/bsts/data/shark.RData                            |only
 bsts-0.8.0/bsts/data/turkish.RData                          |only
 bsts-0.8.0/bsts/inst                                        |only
 bsts-0.8.0/bsts/man/HarveyCumulator.Rd                      |    2 
 bsts-0.8.0/bsts/man/StateSpecification.Rd                   |    4 
 bsts-0.8.0/bsts/man/SuggestBurn.Rd                          |    2 
 bsts-0.8.0/bsts/man/add.ar.Rd                               |    4 
 bsts-0.8.0/bsts/man/add.dynamic.regression.Rd               |  101 +-
 bsts-0.8.0/bsts/man/add.local.level.Rd                      |    6 
 bsts-0.8.0/bsts/man/add.local.linear.trend.Rd               |    4 
 bsts-0.8.0/bsts/man/add.monthly.annual.cycle.Rd             |only
 bsts-0.8.0/bsts/man/add.random.walk.holiday.Rd              |only
 bsts-0.8.0/bsts/man/add.seasonal.Rd                         |    6 
 bsts-0.8.0/bsts/man/add.semilocal.linear.trend.Rd           |    4 
 bsts-0.8.0/bsts/man/add.static.intercept.Rd                 |only
 bsts-0.8.0/bsts/man/add.student.local.linear.trend.Rd       |    4 
 bsts-0.8.0/bsts/man/add.trig.Rd                             |  129 ++
 bsts-0.8.0/bsts/man/aggregate.time.series.Rd                |    4 
 bsts-0.8.0/bsts/man/aggregate.weeks.to.months.Rd            |    4 
 bsts-0.8.0/bsts/man/auto.ar.Rd                              |    4 
 bsts-0.8.0/bsts/man/bsts.Rd                                 |   95 -
 bsts-0.8.0/bsts/man/bsts.options.Rd                         |   12 
 bsts-0.8.0/bsts/man/compare.bsts.models.Rd                  |   32 
 bsts-0.8.0/bsts/man/date.range.Rd                           |only
 bsts-0.8.0/bsts/man/descriptive-plots.Rd                    |only
 bsts-0.8.0/bsts/man/diagnostic-plots.Rd                     |only
 bsts-0.8.0/bsts/man/estimate.time.scale.Rd                  |    4 
 bsts-0.8.0/bsts/man/extend.time.Rd                          |    4 
 bsts-0.8.0/bsts/man/format.timestamps.Rd                    |    2 
 bsts-0.8.0/bsts/man/geometric.sequence.Rd                   |    2 
 bsts-0.8.0/bsts/man/get.fraction.Rd                         |    4 
 bsts-0.8.0/bsts/man/holiday.Rd                              |only
 bsts-0.8.0/bsts/man/last.day.in.month.Rd                    |    4 
 bsts-0.8.0/bsts/man/match.week.to.month.Rd                  |    4 
 bsts-0.8.0/bsts/man/max.window.width.Rd                     |only
 bsts-0.8.0/bsts/man/mixed.frequency.Rd                      |    4 
 bsts-0.8.0/bsts/man/month.distance.Rd                       |    4 
 bsts-0.8.0/bsts/man/named.holidays.Rd                       |only
 bsts-0.8.0/bsts/man/one.step.prediction.errors.Rd           |   10 
 bsts-0.8.0/bsts/man/plot.bsts.Rd                            |   75 +
 bsts-0.8.0/bsts/man/plot.bsts.mixed.Rd                      |    2 
 bsts-0.8.0/bsts/man/plot.bsts.prediction.Rd                 |   28 
 bsts-0.8.0/bsts/man/plot.bsts.predictors.Rd                 |    2 
 bsts-0.8.0/bsts/man/plot.holiday.Rd                         |only
 bsts-0.8.0/bsts/man/predict.bsts.Rd                         |   44 
 bsts-0.8.0/bsts/man/quarter.Rd                              |    4 
 bsts-0.8.0/bsts/man/regression.holiday.Rd                   |only
 bsts-0.8.0/bsts/man/regularize.timestamps.Rd                |    3 
 bsts-0.8.0/bsts/man/shark.Rd                                |only
 bsts-0.8.0/bsts/man/shorten.Rd                              |    4 
 bsts-0.8.0/bsts/man/simulate.fake.mixed.frequency.data.Rd   |    4 
 bsts-0.8.0/bsts/man/spike.slab.ar.prior.Rd                  |    2 
 bsts-0.8.0/bsts/man/state.sizes.Rd                          |    2 
 bsts-0.8.0/bsts/man/summary.bsts.Rd                         |   13 
 bsts-0.8.0/bsts/man/to.posixt.Rd                            |only
 bsts-0.8.0/bsts/man/turkish.Rd                              |only
 bsts-0.8.0/bsts/man/week.ends.Rd                            |    4 
 bsts-0.8.0/bsts/man/weekday.names.Rd                        |only
 bsts-0.8.0/bsts/src/Makevars                                |    4 
 bsts-0.8.0/bsts/src/bsts.cc                                 |  415 ++++----
 bsts-0.8.0/bsts/src/bsts_init.cc                            |  128 +-
 bsts-0.8.0/bsts/src/get_date_ranges.cc                      |only
 bsts-0.8.0/bsts/src/mixed_frequency.cc                      |   29 
 bsts-0.8.0/bsts/src/model_manager.cc                        |  439 +++++----
 bsts-0.8.0/bsts/src/model_manager.h                         |   52 -
 bsts-0.8.0/bsts/src/state_space_gaussian_model_manager.cc   |   31 
 bsts-0.8.0/bsts/src/state_space_gaussian_model_manager.h    |   26 
 bsts-0.8.0/bsts/src/state_space_logit_model_manager.cc      |   27 
 bsts-0.8.0/bsts/src/state_space_logit_model_manager.h       |   22 
 bsts-0.8.0/bsts/src/state_space_poisson_model_manager.cc    |   34 
 bsts-0.8.0/bsts/src/state_space_poisson_model_manager.h     |   22 
 bsts-0.8.0/bsts/src/state_space_regression_model_manager.cc |   46 
 bsts-0.8.0/bsts/src/state_space_regression_model_manager.h  |   22 
 bsts-0.8.0/bsts/src/state_space_student_model_manager.cc    |   35 
 bsts-0.8.0/bsts/src/state_space_student_model_manager.h     |   22 
 bsts-0.8.0/bsts/src/utils.cc                                |   16 
 bsts-0.8.0/bsts/src/utils.h                                 |   37 
 bsts-0.8.0/bsts/tests                                       |only
 111 files changed, 3250 insertions(+), 1233 deletions(-)

More information about bsts at CRAN
Permanent link

Package RNeXML updated to version 2.1.1 with previous version 2.1.0 dated 2018-05-06

Title: Semantically Rich I/O for the 'NeXML' Format
Description: Provides access to phyloinformatic data in 'NeXML' format. The package should add new functionality to R such as the possibility to manipulate 'NeXML' objects in more various and refined way and compatibility with 'ape' objects.
Author: Carl Boettiger [cre, aut] (<https://orcid.org/0000-0002-1642-628X>), Scott Chamberlain [aut] (<https://orcid.org/0000-0003-1444-9135>), Hilmar Lapp [aut] (<https://orcid.org/0000-0001-9107-0714>), Kseniia Shumelchyk [aut], Rutger Vos [aut] (<https://orcid.org/0000-0001-9254-7318>)
Maintainer: Carl Boettiger <cboettig@gmail.com>

Diff between RNeXML versions 2.1.0 dated 2018-05-06 and 2.1.1 dated 2018-05-07

 RNeXML-2.1.0/RNeXML/NEWS                               |only
 RNeXML-2.1.0/RNeXML/tests/testthat/ex.tre              |only
 RNeXML-2.1.0/RNeXML/tests/testthat/ex.xml              |only
 RNeXML-2.1.0/RNeXML/tests/testthat/tmp.xml             |only
 RNeXML-2.1.1/RNeXML/DESCRIPTION                        |    8 
 RNeXML-2.1.1/RNeXML/MD5                                |   26 +-
 RNeXML-2.1.1/RNeXML/NEWS.md                            |only
 RNeXML-2.1.1/RNeXML/R/get_rdf.R                        |    2 
 RNeXML-2.1.1/RNeXML/README.md                          |  164 +++++++++++------
 RNeXML-2.1.1/RNeXML/inst/doc/metadata.html             |    2 
 RNeXML-2.1.1/RNeXML/inst/doc/sparql.R                  |    2 
 RNeXML-2.1.1/RNeXML/inst/doc/sparql.Rmd                |    2 
 RNeXML-2.1.1/RNeXML/inst/examples/jsonld-ex.R          |only
 RNeXML-2.1.1/RNeXML/man/get_rdf.Rd                     |    2 
 RNeXML-2.1.1/RNeXML/tests/testthat/test_rdf.R          |   10 -
 RNeXML-2.1.1/RNeXML/tools/README-unnamed-chunk-5-1.png |binary
 RNeXML-2.1.1/RNeXML/vignettes/sparql.Rmd               |    2 
 17 files changed, 143 insertions(+), 77 deletions(-)

More information about RNeXML at CRAN
Permanent link

Package rare (with last version 0.1.0) was removed from CRAN

Previous versions (as known to CRANberries) which should be available via the Archive link are:

2018-03-22 0.1.0

Permanent link
Package JSM updated to version 0.1.3 with previous version 0.1.2 dated 2017-08-30

Title: Semiparametric Joint Modeling of Survival and Longitudinal Data
Description: Maximum likelihood estimation for the semiparametric joint modeling of survival and longitudinal data.
Author: Cong Xu, Pantelis Z. Hadjipantelis and Jane-Ling Wang
Maintainer: Cong Xu <helenxu1112@gmail.com>

Diff between JSM versions 0.1.2 dated 2017-08-30 and 0.1.3 dated 2018-05-07

 DESCRIPTION           |    8 ++++----
 MD5                   |   12 +++++++++---
 NAMESPACE             |    2 +-
 R/dataPreprocess.R    |only
 data/liver.long.rda   |only
 data/liver.surv.rda   |only
 man/dataPreprocess.Rd |only
 man/liver.Rd          |    5 +++++
 man/liver.long.Rd     |only
 man/liver.surv.Rd     |only
 10 files changed, 19 insertions(+), 8 deletions(-)

More information about JSM at CRAN
Permanent link

Package clusrank updated to version 0.5-3 with previous version 0.5-2 dated 2017-01-17

Title: Wilcoxon Rank Sum Test for Clustered Data
Description: Non-parametric tests (Wilcoxon rank sum test and Wilcoxon signed rank test) for clustered data.
Author: Yujing Jiang [aut, cre], Mei-Ling Ting Lee [ctb], Jun Yan [ctb]
Maintainer: Yujing Jiang <yujing.jiang@uconn.edu>

Diff between clusrank versions 0.5-2 dated 2017-01-17 and 0.5-3 dated 2018-05-07

 DESCRIPTION             |   12 ++++++------
 MD5                     |   34 ++++++++++++++++++----------------
 NAMESPACE               |    2 +-
 R/RcppExports.R         |   22 +++++++++++-----------
 R/amd.R                 |    8 ++++----
 R/clusWilcox.R          |   19 ++++++++++++++-----
 R/clusrank.R            |only
 man/amd.Rd              |    8 +++-----
 man/clusWilcox.test.Rd  |   19 ++++++++++---------
 man/clusrank-package.Rd |only
 man/cluster.Rd          |    1 -
 man/crd.Rd              |    1 -
 man/crdStr.Rd           |    1 -
 man/crsd.Rd             |    1 -
 man/crsdUnb.Rd          |    1 -
 man/stratum.Rd          |    1 -
 src/Fprop.cpp           |   14 +++++++-------
 src/RcppExports.cpp     |   42 +++++++++++++++++++++++++++++++-----------
 src/exact.cpp           |    8 ++++----
 19 files changed, 109 insertions(+), 85 deletions(-)

More information about clusrank at CRAN
Permanent link


Built and running on Debian GNU/Linux using R, littler and blosxom. Styled with Bootstrap.