summaryrefslogtreecommitdiff
path: root/math
AgeCommit message (Collapse)AuthorFilesLines
2018-01-30Now DEPENDS on py-matplotlib rather than buildlinkingadam1-4/+4
2018-01-30Now DEPENDS on py-matplotlib rather than buildlinkingadam1-2/+2
2018-01-30math/Makefile: Add R-stabledistminskim1-1/+2
2018-01-30math/R-stabledist: Import version 0.7-1minskim3-0/+26
This package provides density, probability, and quantile functions, and random number generation for (skew) stable distributions, using the parametrizations of Nolan.
2018-01-29Update to 1.1.0ryoon2-10/+8
* Fix build with math/mpfr-4.0.0 Changelog: Changes in version 1.1.0: - Minimally required library versions: GMP 5.0.0 and MPFR 3.0.0 - Fixed issues with MPFR 4.0.0 - New functions: mpc_cmp_abs, mpc_rootofunity - Improved speed for corner cases of mpc_asin, mpc_sin, see http://lists.gforge.inria.fr/pipermail/mpc-discuss/2013-December/001266.html - Rewrite of the testing framework - New mpcbench tool, used with "make bench" - Fixed handling of over- and underflows with directed rounding in the "other direction" for mpc_cos, mpc_sin, mpc_exp and mpc_pow, see http://lists.gforge.inria.fr/pipermail/mpc-discuss/2015-March/001336.html - Fixed a bug in mpc_atan(0,y) with |y| near 1, see http://lists.gforge.inria.fr/pipermail/mpc-discuss/2017-March/001404.html
2018-01-28Bump PKGREVISION for gdbm shlib major bumpwiz4-8/+8
2018-01-28gnumeric: update to 1.12.38.wiz2-9/+8
Gnumeric 1.12.38 Morten: * Avoid large stack use here and there. * Test suite improvements. * Improve sylk writer. Don't ask. * Teach ssdiff about column/row sizes. * Teach ssdiff about defined names. * Fix a few ssdiff crashes. * Fix crash on text import. -------------------------------------------------------------------------- Gnumeric 1.12.37 Morten: * Test suite improvements. * Improve format guessing for newly entered formulas. * Improve PERMUTATIONA for unusual arguments. [#790742] * Extend range of NT_PI. * Improve xlsx export of cell comments. [#790756] * Plug leaks. * Fix potential crash on exit. * Speed-up number theory functions. * Fix combo object icon. * Code cleanups for main binary. * Fix potential crash in gtk scroll bar bug workaround. * Avoid large stack use here and there.
2018-01-28recursive bump after mpfr shlib major bumpwiz10-17/+20
2018-01-28mpfr: update to 4.0.0.wiz5-43/+13
Changes from versions 3.1.* to version 4.0.0: - The "dinde aux marrons" release. - MPFR now depends on GMP 5.0+ instead of 4.1+. - API change: Applications that call GMP's mp_set_memory_functions function to change the allocators must first call the new function mpfr_mp_memory_cleanup in all threads where MPFR is potentially used; this new function is currently equivalent to mpfr_free_cache. The reason is that the way memory allocation is done by MPFR has changed (again), so that the current GMP allocators are used (since for some applications, the old allocators may become invalid). Note: Freeing the caches like this might have a performance impact on some particular applications; if this is an issue, this could be handled for a future MPFR version. - Mini-gmp support via the --enable-mini-gmp configure option (experimental). - The minimum precision MPFR_PREC_MIN is now 1, with rounding defined as in the errata of IEEE 754-2008 and in the following IEEE 754 revision (ties rounded away from zero). - Shared caches for multithreaded applications. New function mpfr_free_cache2. - Partial support of MPFR_RNDF (faithful rounding). - New functions: mpfr_fpif_export and mpfr_fpif_import to export and import numbers in a floating-point interchange format, independent both on the number of bits per word and on the endianness. - New function mpfr_fmodquo to return the low bits of the quotient corresponding to mpfr_fmod. - New functions mpfr_flags_clear, mpfr_flags_set, mpfr_flags_test, mpfr_flags_save and mpfr_flags_restore to operate on groups of flags. - New functions mpfr_set_float128 and mpfr_get_float128 to convert from/to the __float128 type (requires --enable-float128 and compiler support). - New functions mpfr_buildopt_float128_p and mpfr_buildopt_sharedcache_p. - New functions mpfr_rint_roundeven and mpfr_roundeven, completing the other similar round-to-integer functions for rounding to nearest with the even-rounding rule. - New macro mpfr_round_nearest_away to add partial emulation of the rounding to nearest-away (as defined in IEEE 754-2008). - New functions mpfr_nrandom and mpfr_erandom to generate random numbers following normal and exponential distributions respectively. - New functions mpfr_fmma and mpfr_fmms to compute a*b+c*d and a*b-c*d. - New function mpfr_rootn_ui, similar to mpfr_root, but agreeing with the rootn function of the IEEE 754-2008 standard. - New functions mpfr_log_ui to compute the logarithm of an integer, mpfr_gamma_inc for the incomplete Gamma function. - New function mpfr_beta for the Beta function (incomplete, experimental). - New function mpfr_get_q to convert a floating-point number into rational. - The mpfr_dump function is now described in the manual; its output format has slightly changed. - The mpfr_eint function now returns the value of the E1/eint1 function for negative argument. - The behavior of the mpfr_set_exp function changed, as it could easily yield undefined behavior in some cases (this modifies both the API and the ABI). - In function mpfr_urandom, the next random state no longer depends on the current exponent range and the rounding mode. The exceptions due to the rounding of the random number are now correctly generated, following the uniform distribution. - Functions mpfr_grandom and mpfr_root are deprecated and will be removed in a future release. - Complete rewrite of function mpfr_sum, which now works in all cases (the old one could take all the memory and/or crash with inputs of different magnitudes in case of huge cancellation or table maker's dilemma). The sign of an exact zero result is now specified, and the return value is now the usual ternary value. Note that the position of "const" in the mpfr_sum prototype has been fixed (the manual was correct); user code should not be affected. - Old, deprecated macros mpfr_add_one_ulp and mpfr_sub_one_ulp removed. The mpfr_next* functions should be used instead. - Internally, improved caching: a minimum of 10% increase of the precision is guaranteed to avoid too many recomputations. - Added internal small-precision mpz_t pool, which aims to avoid the overhead of memory allocation, in particular. New function mpfr_free_pool. - Added configure option --enable-assert=none to avoid checking any assertion. - The --enable-decimal-float configure option no longer requires --with-gmp-build, and support for decimal floats is now automatically detected by default (similarly for support for __float128). - Updated tuning parameters. - Better support for Automake 1.13+ (now used to generate the tarball). - Dropped K&R C compatibility. - Improved MPFR manual. - New MPFRbench program (see the tools/bench directory). - Major speedup in mpfr_add, mpfr_sub, mpfr_mul, mpfr_div and mpfr_sqrt when all operands have the same precision and this precision is less than twice the number of bits per word, e.g., less than 128 on a 64-bit computer. - Speedup by a factor of almost 2 in the double <--> mpfr conversions (mpfr_set_d and mpfr_get_d). - Speedup in mpfr_log1p and mpfr_atanh for small arguments. - Speedup in the mpfr_const_euler function (contributed by Fredrik Johansson), in the computation of Bernoulli numbers (used in mpfr_gamma, mpfr_li2, mpfr_digamma, mpfr_lngamma and mpfr_lgamma), in mpfr_div, in mpfr_fma and mpfr_fms. - Test coverage: 96.3% lines of code. - Bug fixes. In particular: a speed improvement when the --enable-assert or --enable-assert=full configure option is used with GCC; mpfr_get_str now sets the NaN flag on NaN input and the inexact flag when the conversion is inexact. For a full list, see http://www.mpfr.org/mpfr-3.1.6/#fixed and the same section for any previous 3.1.x version (follow the links in the "Changes..." sections). - Microsoft Windows: Added support for thread-safe DLL (shared library). Tested with MinGW, ICC and MSVC. - Limited pkg-config support. - Autotools: Under Linux, make sure that the old dtags (when supported) are used if LD_LIBRARY_PATH is defined; otherwise "make check" would check an installed, compatible MPFR library found in LD_LIBRARY_PATH instead of the one that has been built with "make". - New: optional "make check-gmp-symbols", mainly for binary distributions, to check that MPFR does not use GMP internal symbols (experimental).
2018-01-26muparser: Fix SunOS linker flags and naming.jperkin2-7/+20
2018-01-25math/R-plyr: Update to 1.8.4minskim2-7/+7
Changes: - Update so R CMD check passes cleanly on R and R-devel.
2018-01-25math/R-mvtnorm: Update to 1.0-6minskim2-8/+8
Changes: - use registered C routines
2018-01-24math/Makefile: Add R-gssminskim1-1/+2
2018-01-24math/R-gss: Import version 2.1-7minskim3-0/+25
This is a comprehensive package for structural multivariate function estimation using smoothing splines.
2018-01-24math/Makefile: Add py-powerlawminskim1-1/+2
2018-01-24math/py-powerlaw: Import version 1.4.3minskim4-0/+35
powerlaw is a toolbox using the statistical methods to determine if a probability distribution fits a power law.
2018-01-23math/Makefile: Add py-tensorflow-tensorboardminskim1-1/+2
2018-01-23math/py-tensorflow-tensorboard: Import version 0.4.0minskim5-0/+450
TensorBoard is a suite of web applications for inspecting and understanding your TensorFlow runs and graphs.
2018-01-22math/Makefile: Add R-VGAMminskim1-1/+2
2018-01-22math/R-VGAM: Import version 1.0-4 from pkgsrc-wipminskim3-0/+31
Vector generalized linear and additive models, and associated models (Reduced-Rank VGLMs, Quadratic RR-VGLMs, Reduced-Rank VGAMs). This package fits many models and distribution by maximum likelihood estimation (MLE) or penalized MLE. Also fits constrained ordination models in ecology. Packaged by Mike M. Volokhov, and updated by Kamil Rytarowski and me.
2018-01-22Update to 2.1.6wen2-7/+10
Add missing DEPENDS Upstream changes: Changes to Version 2.1-6 o Made several functions compatible with vcov() in R-devel (3.5.0). Changes to Version 2.1-5 o Fixed bug in boot.hist, and made Boot.default more general. Added a vcov method for boot objects o Fixed bug in gamLine with non-dentity links. o Removed the skewPower transformation functions, and added bcnPower transformation family. Same transformation, new name, new computational algorithms, improved documentation. o Fixed bug (reported by Bruno Hebling Vieira) in print.summary.Anova.mlm() that could cause adjusted p-values to be incorrectly ordered. Changes to Version 2.1-4 o The smoother functions loessLine, gamLine and quantregLine used in many car functions now evaluate the smoother at an equally spaced grid of points rather than at the observed values on the horizontal axis of a plot. o spreadLevelPlot.lm now accepts point marking as in most other graphical functions in car. o Bug fixed in one of the skewPower support functions; thans to Balazs Banfai o Added support for lmer objects in power transformations o Added support for skewPower family power transformations for lm and lmer objects o Added list, data.frame, and matrix methods for Boxplot(), suggestion of Michael Friendly o Added adaptiveKernel() density estimator, with option to use it in densityPlot(). Changes to Version 2.1-3 o Corrected documentation for mcPlots o added id.location argument to showLabels to vary location of labels o added fix for compatiblity with Rcmdr with missing data in several plotting functions. o deltaMethod() now reports confidence intervals. o print.summary.Anova.mlm() has new SSP and SSPE arguments to determine whether the corresponding matrices are printed (suggestion of Michael Friendly). o summary() and print() methods for Anova.mlm() can now report univariate ANOVAs (suggestion and some code by Michael Friendly). o added "value" and "vcov" attributes to objects returned by linearHypothesis() (after suggestions by Liviu Andronic and Steven Yen). o compareCoefs() now checks classes of models. o small fixes/changes. Changes to Version 2.1-2 o Modified scatter3d() so that plots can be embedded in HTML. Changes to Version 2.1-1 o influencePlot now returns Cook's distance, not its square root. o Anova() now supports "coxme" objects (produced by coxme() in coxme package) (request of Philipp Sprenger). o Anova() now works via its default method with "vglm" objects produced by functions in the VGAM package; and the default method of linearHypothesis() again works with these objects (problem reported by Michael Friendly). o Fixed Anova.coxph() so that it takes account of method (ties) argument (bug reported by Karl Ove Hufthammer). o Improvements to Anova.default() so that a wider variety of model classes are accommodated (following request of Liviu Andronic.) o dataEllipse() now throws an error if there are too few colors for the number of groups (fixing bug reported by Ottorino Pantani). o spreadLevelPlot.lm() now includes an optional smoother in addition to the fitted straight line (suggestion of Michael Friendly). o No longer import methods (as opposed to generics) directly from pbkrtest. o Added axis.ticks argument to scatter3d() (code contributed by David Winsemius). Changes to Version 2.1-0 o New power family called skewPower has been added that can be used with the Box Cox method with a few negative responses (joint work with Doug Hawkins). Several functions modified to accomodate two-parameter power families. o Fixed bug in Anova() for coxph models with clusters (reported by Jesus Humberto Gomez ), due apparently to a change in coxph(). Changes to Version 2.0-26 o Anova() F-tests for binomial and Poisson GLMs now changes error.estimate="dispersion" to "pearson" as advertized (bug reported by Will Petry). o Improved behavior of above-plot legends in scatterplot(). o Fixed sp() (bug reported by Cesar Rabak). o Conforms to new CRAN requirements for package imports. Changes to Version 2.0-25 o Fixed df check in linearHypothesis.default() (bug report by Pierre Chausse). o Fixed bug when vcov. argument to Anova() is a function (reported by Liviu Andronic). o Now export .carEnv to avoid problem with update() in Boot() (reported by Alan T. Arnholt). Changes to Version 2.0-24 o Fixed broken URLs. o Changed handling of .carEnv environment. o Moved pbkrtest, quantreg, and mgcv from Suggests: to Imports:. Changes to Version 2.0-23 o Modified ScatterplotSmoothers to add an 'offset' to the vertical axis of spread smooths. This is required in the marginal model plot functions. o Fixed labels on mcPlot with overlay=FALSE o Check for 0 residual df and 0 residual deviance (within rounding) in Anova() and linearHypothesis() (problem reported by Jonathan Love). o Fixed model.matrix.lme and model.matrix.gls utility functions, and hence Anova and vif, respectively, to work with models specified with formulas supplied as objects (after problem noted by Gang Chen). o Added Wong data set, used in mixed-models appendix. Changes to Version 2.0-22 o corrected bug in 'terms' argument in residualPlots, and other graphic functions with a 'terms' argument o added residual curvature tests for glm.nb o mcPlot and mcPlots draw 'marginal/conditional' plots for lm objects. The marginal plot is of the centered response versus a centered regressor; the conditional plot is the corresponding added-variable plot. The plots can be overlaid or viewed side-by-side. o added argument marginal.scale to avPlots to scale the added-variable plot for Y on X|Z using the scale from the marginal plot of Y vs X ignoring X. The default is FALSE, corresponding to using scaling to maximize resolution or use xlim and ylim to set user scaling. o Fixed bugs in Anova.survreg() that could affect types II, II tests, both Wald and LR, and one similar bug in linearHypothesis.survreg(). o Replaced calls to require() with requireNamespace() where possible (suggestion of Brian Ripley). o The following functions now produce warnings rather than errors when there are empty groups: scatterplot(), scatterplotMatrix(), scatter3d(), densityPlot(). o Corrected name of "Blackmoor" dataset to "Blackmore". o Added KosteckiDillon migraines dataset (contributed by Georges Monette). o introduced linearHypothesis.rlm() for rlm models (suggestion of Matthieu Stigler). o Small bug fixes/improvements. Changes to Version 2.0-21 o residualPlot error when using 'type="rstudent" has been fixed. o Minor change to "recode" documentation; improved error checking in recode(). o Fixed a bug in gamLine with non-canonical links. (Thanks to Hani Christoph) o Added has.intercept.multinom() to make Anova() work with multinom objects fit to a dichotomous response (after bug report by Kristian Hovde Liland). o Replaced vif.lm() with vif.default() to cover wider variety of models (after question by Laura Rigg about gls models). o Diagonal panels in scatterplotMatrix() (except for histograms) show groups separately when plotted by groups (suggestion by Erich Neuwirth). o Added vcov. argument to Anova.lm(). Changes to Version 2.0-20 o Added new id.method="r" to showLabels for labeling plots of residuals; default id.method changed in residualPlots. o Fixed handling of labels argument to outlierTest() (bug report by Stephane Laurent). o Accommodate numeric variables consisting entirely of NAs in recode() (suggestion of Karl Ove Hufthammer). o Prevent dataEllipse() from opening a graphics device when draw=FALSE (fixing bug reported by Rafael Laboissiere). o The functions makeHypothesis() and printHypothesis(), intended for internal use, are exported so that they can be used in other packages (request of Arne Henningsen). o Small fixes. Changes to Version 2.0-19 o allow a grouping variable for color, symbol and fits in residualPlots o fixed axis labelling probelm in influenceIndexPlot o fixed scoping problems in Boot, bootCase, and ncvTest o added an argument to deltaMethod for passing arguments to get scoping right when calling linearHypothesis in another function; other deltaMethod bugs fixed o slight modification to documentation of Boot o summary() method for "Anova.mlm" objects now returns an object, printed by a corresponding print() method (adapting code contributed by Gabriel Baud-Bovy). o added .merMod methods to Anova(), deltaMethod(), linearHypothesis(), matchCoefs(), and unexported utilities df.residual() and has.intercept(); insured compatibility with nlme and CRAN and developments versions of lme4. o added use argument to scatterplotMatrix() (suggestion of Antoine Lizee). o export linearHypothesis.default() for use in other packages (suggestion of Achim Zeileis). o small changes and fixes.
2018-01-22Update to 5.34wen2-7/+8
Upstream changes: 5.30 1. Removed Y argument in crq GRAD subroutine, which seems to be superflous. 5.31 1. Added bag of little bootstraps option to summary.rq. Needs further testing. 5.32 1. Modified the BLB code to use boot.rq.wxy so that the inner loop was all in fortran, would be nicer if this loop were done with "fn" rather than "br". See the note in boot.rq above boot.rq.spwy. 2. modified the crq.pdf file to fix a mento in the description of the Peng Huang algorithm. 5.33 1. Added option to return density estimates from predict.rqs 2. modified rq.fit.fnb to include a rhs input argument. 3. modified boot.crq to properly deal with only one tau requests and also changed the default for printing progress report to n - 100,000. Both suggested by Steve Portnoy. 4. modified boot.rq so it returns cov(B$B) not cov(B) as reported by Marco Geraci 5. Fixed bug in anova.rqlist to correct error when "fn" method was used and no $y component was returned. Reported by Tom LaBone. 6. Fixed bug in summary.rqss -- control parameters weren't getting passed to chol call properly. (Reparted by Geoffrey Shideler (NOAA).) 7. Added init.c to register .Fortran calls and removed the package = "quantreg" argument. 5.34 1. Fix a bug in rqss to allow control parameters to be passed to rqss.fit when the method is "lasso" (pointed out by Heracles Apergis.) 2. changed nrow(R) to NROW(R) in rq.fit.hogg thanks to Paul Newell for bug report. 3. fixed axis label typo in demo engel2. 4. Added Panel.R demo to illustrate fixed effect panel estimation, a la Galvao job market talk. 5. Some changes to crq.fit.por as suggested by SLP: line 1: add an input variable mw (the error messages suggest changing mw if there are problems with resolving degeneracies or trying to pivot too far, and so it should be possible to do this without getting into the deep part of the code) lines 3 and 5: test that x is a matrix and add column names if they are missing line 39: define mw so that the fortran constraint is satisfied
2018-01-22Update to 1.77wen2-7/+7
Upstream changes: The version 1.71 1. Fixed the REAL*8 and INTEGER*4 occurences in accordance with Kurt's email. The version 1.73 1. changed occurences of unix.time to system.time in accordance with Kurt's directive. The version 1.74 1. One more unix -> system The version 1.75 1. package -> PACKAGE [per Kurt's email of 3/2/17] The version 1.76 1. Used package_native_routine_registration_skeleton to remove PACKAGE = SparseM [per Kurt's email of 3/2/17] The version 1.77 1. Changed setMethod for diag (matrix.csr) in accordance with MM's suggestion 2. removed setGeneric for image also suggested by MM.
2018-01-22Add R-pbkrtestwen1-1/+2
2018-01-22Import pbkrtest-0.4.7 as math/R-pbkrtest.wen3-0/+30
Test in linear mixed effects models. Attention is on linear mixed effects models as implemented in the lme4 package. The package implements a parametric bootstrap test. The package implements a Kenward-Roger modification of F-tests.
2018-01-22Remove an unneeded linewen1-2/+1
2018-01-22Add R-lme4wen1-1/+2
2018-01-22Import lme4-1.1.15 as math/R-lme4.wen3-0/+34
Fit linear and generalized linear mixed-effects models. The models and their components are represented using S4 classes and methods. The core computational algorithms are implemented using the Eigen C++ library for numerical linear algebra and RcppEigen "glue".
2018-01-22Add buildlink3.mkwen1-0/+12
2018-01-22Update to 0.3.3.3.1wen2-7/+9
Add blas and lapack as DEPENDS Upstream changes: 2017-11-19 Dirk Eddelbuettel <edd@debian.org> * DESCRIPTION (Version, Date): Release 0.3.3.3.1 * R/inline.R: Use '::' not ':::' for Rcpp.plugin.maker 2017-08-26 Dirk Eddelbuettel <edd@debian.org> * .travis.yml (before_install): Use https for curl fetch 2017-06-06 Yu Gong <armgong@yahoo.com> * inst/include/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h: Also permit compilation under Haiku-OS 2017-05-28 Dirk Eddelbuettel <edd@debian.org> * inst/examples/lmBenchmark.R (do_bench): Remove spurious argument in call to RcppEigen:::Eigen_SSE() (cf github issue #44) 2017-04-29 Dirk Eddelbuettel <edd@debian.org> * DESCRIPTION: Release 0.3.3.3.0 [ which again owes a very big thank you to Yixuan for doing the work! ] 2017-04-27 Dirk Eddelbuettel <edd@debian.org> * .travis.yml: Switch to using run.sh for Travis CI 2017-04-27 Yixuan Qiu <yixuan.qiu@cos.name> [ In RcppEigen 0.3.3.* branch ] * inst/include/Eigen/src/Core/arch/CUDA/Half.h: Fixed compiler warning on 'long long' type in C++ 98 mode 2017-03-14 Dirk Eddelbuettel <edd@debian.org> * DESCRIPTION (Version, Date): Release 0.3.2.9.1 * src/init.c (R_init_RcppEigen): Call R_registerRoutines() and R_useDynamicSymbols() * NAMESPACE: Use .registration=TRUE on useDynLib * R/fastLm.R (fastLmPure): Remove erroneous fourth argument from .Call 2017-03-13 Martin Maechler <maechler@r-project.org> * inst/include/RcppEigenCholmod.h: Synchronize with Matrix package 2017-02-21 Yixuan Qiu <yixuan.qiu@cos.name> [ In RcppEigen 0.3.3.* branch ] * inst/include/Eigen: Updated to release 3.3.3 of Eigen * inst/include/unsupported: Idem * DESCRIPTION: Idem * README.md: Idem 2017-01-20 Yixuan Qiu <yixuan.qiu@cos.name> [ In RcppEigen 0.3.3.* branch ] * inst/include/Eigen: Updated to release 3.3.2 of Eigen * inst/include/unsupported: Idem * DESCRIPTION: Idem * README.md: Idem * inst/unitTests/runit.RcppEigen.R, inst/unitTests/runit.sparse.R: Explicitly convert matrix size to `double` type such that Rcpp can properly return the value to R, thanks to ChingChuan and Dirk 2017-01-20 ChingChuan Chen <zw12356@gmail.com> [ In RcppEigen 0.3.3.* branch ] * inst/include/Eigen: Updated to release 3.3.1 of Eigen * inst/include/unsupported: Idem * DESCRIPTION: Idem * inst/examples/lmBenchmark.R: Fixed function names 2016-12-22 Dirk Eddelbuettel <edd@debian.org> * DESCRIPTION (URL, BugReports): Added / updated 2016-11-12 Yixuan Qiu <yixuan.qiu@cos.name> [ In RcppEigen 0.3.3.* branch ] * inst/include/Eigen: Updated to release 3.3.0 of Eigen * inst/include/unsupported: Idem * DESCRIPTION: Idem * README.md: Idem * inst/include/RcppEigenForward.h, inst/include/RcppEigenWrap.h: Added exporters for the new Map<SparseMatrix<T> > type * inst/unitTests/runit.sparse.R: Unit tests for the new type 2016-08-20 Dirk Eddelbuettel <edd@debian.org> * DESCRIPTION: Release 0.3.2.9.0 with big thanks to Yixuan for doing the work! 2016-08-19 Yixuan Qiu <yixuan.qiu@cos.name> * inst/include/Eigen: Updated to release 3.2.9 of Eigen * README.md: Updated version number and fixed the NOTE from CRAN URL check 2016-04-30 Dirk Eddelbuettel <edd@debian.org> * README.md: Expanded 2016-04-28 James Joseph Balamuta <balamut2@illinois.edu> * inst/include/RcppEigenWrap.h: Added an exporter class for Map::RowVectorX<t> per http://stackoverflow.com/questions/36920689/ * inst/include/unitTests/runit.RcppEigen.R: Added row exporter unit test.
2018-01-18math: Add tex-mathpartir{,-doc}markd1-1/+3
2018-01-18tex-mathpartir{,-doc}: Add version 1.3.2markd8-0/+58
The package provides macros for typesetting math formulas in mixed horizontal and vertical mode, automatically as best fit. It provides an environment mathpar that behaves much as a loose centered paragraph where words are math formulas, and spaces between them are larger and adjustable. It also provides a macro \inferrule for typeseting fractions where both the numerator and denominator may be sequences of formulas that will be also typeset in a similar way. It can typically be used for typeseting sets of type inference rules or typing derivations. A macro inferrule for typesetting type inference rules.
2018-01-17math/Makefile: Add R-aplpackminskim1-1/+2
2018-01-17math/R-aplpack: Import version 1.3.0minskim3-0/+31
Set of functions for drawing some special plots: stem.leaf plots a stem and leaf plot, stem.leaf.backback plots back-to-back versions of stem and leafs, bagplot plots a bagplot, skyline.hist plots several histgramm in one plot of a one dimensional data set, plotsummary plots a graphical summary of a data set with one or more variables, plothulls plots sequentially hulls of a bivariate data set, faces plots chernoff faces, spin3R for an inspection of a 3-dim point cloud, slider functions for interactive graphics.
2018-01-17math/R-e1071: Update to 1.6-8minskim2-7/+7
Changes: - add and use native symbols for C-code - naiveBayes() now supports logical variables
2018-01-17py-patsy: updated 0.5.0adam2-9/+8
v0.5.0: * Dropped support for Python 2.6 and 3.3. * Update to keep up with pandas API changes * More consistent handling of degenerate linear constraints in :meth:DesignInfo.linear_constraint * Fix a crash in DesignMatrix.__repr__ when shape[0] == 0
2018-01-11py-ephem: updated to 3.7.6.0nb1adam2-10/+14
PkgSrc changes: - now use 'ephem' PyPI (not 'pyephem') to allow correct dependencies - enabled unit tests
2018-01-11py-mpmath: updated to 1.0.0adam3-31/+18
--1.0.0-- * Bumped to major version number for 10 year anniversary * Added module for inverse Laplace transforms, including the top level function invertlaplace() as well as several different algorithms (Talbot, Gaver-Stehfest and de Hoog) implemented in mpmath.calculus.inverselaplace (Kris Kuhlman) * Fixed bugs in elliprg() giving incorrect values for certain input * Fixed wrong degree 1 nodes for Gaussian quadrature * Made make acot(0) and acoth(0) return a finite result * Fixed sieved zeta sum not being used in Python 3, and added cutoff for sieved zeta sum on 32-bit systems when too much memory would be used * Fixed zeta(0,0.5) to return correct value instead of raising NoConvergence exception * Added detection of exact zeros in gammainc(), in particular fixing NoConvergence error for gammainc(3,-1+1j) * Fixed wrong values from besseli() due to improper internal precision * Fixed bessely(0,1j) to return complex nan instead of raising NameError (Paul Masson) * Changed float() and complex() applied to an mpf or mpc to use rounding to nearest (or the context rounding mode) instead truncating * Fix imaginary part of gammainc(n,x), n negative odd int, x < 0 * Added alternative "phase" color scheme to cplot() * Better error message for int(inf) or int(nan) (Aaron Meurer) * Fixed polyroots() with error=True * Added support to pass optional initial values to polyroots() (Michael Kagalenko) * Rewrote the Python major version selection to make it work if something else has redefined xrange (Arne Brys) * Switched documentation formula rendering to MathJax (Sergey B Kirpichev) * Fixed documentation TeX build (Sergey B Kirpichev) * Added PEP8 conformity testing (Sergey B Kirpichev) * Various fixes for the test code and test infrastructure on different platforms and Python versions (Sergey B Kirpichev) * Fixed module paths in setup.py (Aaron Meurer) * Documented more options for methods such as nstr() and hyper() * Miscellaneous corrections to the documentation (various)
2018-01-11py-gmpy: updated to 1.17adam4-30/+23
Version 1.17 only fixes compatibility with Python 3.x and other C extensions that use gmpy. Version 1.16 fixes a minor issue with the new Decimal type in Python 3.3.
2018-01-10Recursive revbump associated with the update to OCaml 4.06.jaapb3-6/+6
2018-01-10Added ocaml-num to Makefile SUBDIRsjaapb1-1/+2
2018-01-10Added package math/ocaml-num.jaapb6-0/+95
This legacy library for arbitrary-precision integer and rational arithmetic was formerly part of the standard OCaml library, but has now been spun off.
2018-01-10p5-Spreadsheet-Read: update to 0.76.wiz2-7/+7
0.76 - 01 Jan 2018, H.Merijn Brand * Allow streaming in xlscat * Add --dump to xlscat * Add error for opening ODS/SXC from reference * It's 2018
2018-01-10py-numpy: updated to 1.14.0adam3-8/+45
NumPy 1.14.0 Release Notes Numpy 1.14.0 is the result of seven months of work and contains a large number of bug fixes and new features, along with several changes with potential compatibility issues. The major change that users will notice are the stylistic changes in the way numpy arrays and scalars are printed, a change that will affect doctests. See below for details on how to preserve the old style printing when needed. A major decision affecting future development concerns the schedule for dropping Python 2.7 support in the runup to 2020. The decision has been made to support 2.7 for all releases made in 2018, with the last release being designated a long term release with support for bug fixes extending through 2019. In 2019 support for 2.7 will be dropped in all new releases. More details can be found in the relevant NEP_. This release supports Python 2.7 and 3.4 - 3.6.
2018-01-07Fix indentation in buildlink3.mk files.rillig16-33/+33
The actual fix as been done by "pkglint -F */*/buildlink3.mk", and was reviewed manually. There are some .include lines that still are indented with zero spaces although the surrounding .if is indented. This is existing practice.
2018-01-07Update to 1.2.6wen2-7/+7
No upstream changelog found.
2018-01-05py-pandas: updated to 0.22.0adam2-7/+7
v0.22.0: This is a major release from 0.21.1 and includes a single, API-breaking change. We recommend that all users upgrade to this version after carefully reading the release note. The only changes are: * The sum of an empty or all-NA Series is now 0 * The product of an empty or all-NA Series is now 1 * We’ve added a min_count parameter to .sum() and .prod() controlling the minimum number of valid values for the result to be valid. If fewer than min_count non-NA values are present, the result is NA. The default is 0. To return NaN, the 0.21 behavior, use min_count=1.
2018-01-03nickle: Fix build on SunOS and systems without timelocal().jperkin2-1/+40
2018-01-01Sort PLIST files.rillig13-174/+174
Unsorted entries in PLIST files have generated a pkglint warning for at least 12 years. Somewhat more recently, pkglint has learned to sort PLIST files automatically. Since pkglint 5.4.23, the sorting is only done in obvious, simple cases. These have been applied by running: pkglint -Cnone,PLIST -Wnone,plist-sort -r -F
2018-01-01Revbump after boost updateadam15-29/+30