Changelog
Source:NEWS.md
SSN2 0.2.0
CRAN release: 2024-07-26
Major Updates
- Significant testing, documentation, and auxiliary (e.g.,
README.md) updates as part of a submission to Journal of Open Source Software. Relevant issues associated with the review are available at #11, #12, #13, #14, #15, #16, #17, #20, #21. The review is linked here. - Added support for geopackage file formats in the
.ssnfolder that is accessed when importing SSN objects viassn_import().
Minor Updates
- Added
ssn_names()to return column names in theedges,obs, andpredselements of an SSN object. - Changed
Matrix::rankMatrix(X, method = "tolNorm2")toMatrix::rankMatrix(X, method = "qr")to enhance stability when determining linear independence inX, the design matrix of explanatory variables. - Replaced an error message with a warning message when
Xhas perfect collinearities (i.e., is not full rank). - Removed
format_additiveargument fromssn_import()because of transition to geopackage support, which eliminates the need to convert additive function values to text. - Added the
create_netgeom()function to create the network geometry column for theedges,obs, andpredselements in an SSN object. - Minor vignette updates.
- Minor documentation updates.
Bug Fixes
- Fixed a bug in
SSN_to_SSN2()that caused an error usingssn_write()with no prediction sites. - Replaced
names.SSN()withssn_names(), asnames.SSN()prevented proper naming of elements in the SSN object.
SSN2 0.1.1
CRAN release: 2024-01-15
Minor Updates
- Changed network geometry name from
netgeometrytonetgeomto avoid exceeding the 10 character limit for column/field names while writing to shapefiles (#2). - Added an error message when
familyis missing inssn_glm()(#8). - Added a deprecation warning for
SSN_to_SSN2(). - Minor stability updates.
- Minor error message updates.
- Minor documentation updates.
Bug Fixes
- Fixed a bug in
Torgegram()that prevented intended computation whencutoffwas specified. - Fixed a bug in
plot.Torgegram()that occasionally prevented proper spacing of the legend. - Fixed a bug that prevented proper printing of the dispersion parameter from
ssn_glm()model objects (and their summaries) when all covariance parameters were known. - Fixed a bug that prevented simulation when
euclid_typewas"none". - Fixed a bug that could cause improper prediction behavior when
taildown_typewas"spherical". - Fixed a bug that printed response residuals instead of deviance residuals for
ssn_glm()objects.