Skip to content

Commit ddba14d

Browse files
Release 1.0.0 (#127)
* R CMD Check --as_cran no Warnings, Errors, or Notes. Bumped version and updated changelog and cran-comments.Added badges to the documents * Updated README * Updated the CRAN URL ref in the REadme
1 parent e28d5cb commit ddba14d

File tree

6 files changed

+48
-15
lines changed

6 files changed

+48
-15
lines changed

CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
- Change code syntax to remove interactions() method and add interactions and HOC to composites()
99
- Document all the syntax and features
1010

11-
## [0.7.0] - 2019-09-19
11+
## [0.1.0] - 2019-09-27
1212
### Added
1313
- A changelog
1414
- A new feature for automated calculation of HOC
@@ -19,7 +19,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919
- Descriptive statistics for item and construct data
2020
- S3 print method for class "table_output" for printing generic tables
2121
- new method interaction_term() for specifying a interaction construct
22-
- new method interaction() for specifying a interaction construct
2322
- A fSquare function to calculating fSquared
2423
- A test for fSquared function
2524

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: seminr
22
Type: Package
33
Title: Domain-Specific Language for Building PLS Structural Equation Models
4-
Version: 0.7.0
5-
Date: 2019-05-07
4+
Version: 1.0.0
5+
Date: 2019-09-27
66
Authors@R: c(person("Soumya", "Ray",
77
email = "soumya.ray@gmail.com", role = c("aut", "ths")),
88
person("Nicholas", "Danks",

README.Rmd

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ knitr::include_graphics('vignettes/SEMinR_logo.jpg')
1919
```
2020

2121
![Build Status](https://travis-ci.org/sem-in-r/seminr.svg?branch=master)
22+
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/seminr)](https://cran.r-project.org/package=seminr)
23+
[![metacran downloads](https://cranlogs.r-pkg.org/badges/grand-total/seminr)](https://cran.r-project.org/package=seminr)
2224

2325
SEMinR brings many advancements to creating and estimating structural equation models (SEM) using Partial Least Squares Path Modeling (PLS-PM):
2426

@@ -35,9 +37,10 @@ SEMinR follows the latest best-practices in methodological literature:
3537

3638
## Documentation
3739

38-
The vignette for Seminr can be found in the [seminr/doc/](https://github.com/ISS-Analytics/seminr/blob/master/doc/SEMinR.html) folder or by running the `vignette("SEMinR")` command after installation.
40+
The vignette for Seminr can be found in the [CRAN](https://cran.r-project.org/package=seminr/vignettes/SEMinR.html) folder or by running the `vignette("SEMinR")` command after installation.
3941

40-
Demo code for use of Seminr can be found in the [seminr/demo/](https://github.com/ISS-Analytics/seminr/tree/master/demo) folder or by running the `demo("seminr-contained")`, `demo("seminr-ecsi")` or `demo("seminr-interaction")` commands after installation.
42+
Demo code for use of Seminr can be found in the
43+
[seminr/demo/](https://github.com/sem-in-r/seminr/tree/master/demo) folder or by running the `demo("seminr-contained")`, `demo("seminr-ecsi")` or `demo("seminr-interaction")` commands after installation.
4144

4245
## Installation
4346

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
<img src="vignettes/SEMinR_logo.jpg" width="25%" />
55

66
![Build Status](https://travis-ci.org/sem-in-r/seminr.svg?branch=master)
7+
[![CRAN\_Status\_Badge](https://www.r-pkg.org/badges/version/seminr)](https://cran.r-project.org/package=seminr)
8+
[![metacran
9+
downloads](https://cranlogs.r-pkg.org/badges/grand-total/seminr)](https://cran.r-project.org/package=seminr)
710

811
SEMinR brings many advancements to creating and estimating structural
912
equation models (SEM) using Partial Least Squares Path Modeling
@@ -30,12 +33,12 @@ SEMinR follows the latest best-practices in methodological literature:
3033
## Documentation
3134

3235
The vignette for Seminr can be found in the
33-
[seminr/doc/](https://github.com/ISS-Analytics/seminr/blob/master/doc/SEMinR.html)
36+
[CRAN](https://cran.r-project.org/package=seminr/vignettes/SEMinR.html)
3437
folder or by running the `vignette("SEMinR")` command after
3538
installation.
3639

3740
Demo code for use of Seminr can be found in the
38-
[seminr/demo/](https://github.com/ISS-Analytics/seminr/tree/master/demo)
41+
[seminr/demo/](https://github.com/sem-in-r/seminr/tree/master/demo)
3942
folder or by running the `demo("seminr-contained")`,
4043
`demo("seminr-ecsi")` or `demo("seminr-interaction")` commands after
4144
installation.

cran-comments.md

Lines changed: 30 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,38 @@
11
## Resubmission
22
This is a resubmission. In this version I have:
33

4-
## Attended to a user-reported error:
5-
Updated the test fixtures to reflect the changes to RNG in V 3.6.0
6-
Attended to a bug.
4+
## [0.1.0] - 2019-09-27
5+
### Added
6+
- A changelog
7+
- A new feature for automated calculation of HOC
8+
- A new feature for two-stage calculation of interactions
9+
- A file for all references and citations
10+
- A return object in summary(boot_seminr_model) containing boot mean, SD, tvalue, and CIs for bootstrapped paths, loadings, weights and HTMT,
11+
- A test for the bootstrap summary return object
12+
- Descriptive statistics for item and construct data
13+
- S3 print method for class "table_output" for printing generic tables
14+
- new method interaction_term() for specifying a interaction construct
15+
- A fSquare function to calculating fSquared
16+
- A test for fSquared function
17+
18+
### Changed
19+
- Fixtures for evaluating bootstrap HTMT for versions of R < 3.6.0
20+
- Changed the R/* file naming to R/estimate_ R/feature_ R/evaluate_ etc.
21+
- Summary S3 method to return data descriptives in summary object
22+
- constructs() method now returns a list with classes
23+
- Changed references to include Cohen (2013)
24+
- Updated vignette to reflect fSquare function
25+
26+
### Fixed
27+
- Modified calculation of HTMT to use absolute correlation matrices in order to make HTMT stable
28+
729

830
## Test environments
9-
* macOS Mojave 10.14.4 (on travis-ci), R 3.6.0
10-
* Ubuntu 16.04.6 (on travis-ci), R 3.6.0
11-
* win-builder (devel and release)
31+
* macOS High Sierra 10.13.3 (on travis-ci), R 3.5.3
32+
* macOS High Sierra 10.13.3 (on travis-ci), R 3.6.1
33+
* Ubuntu 16.04.6 LTS (on travis-ci), R 3.5.3
34+
* Ubuntu 16.04.6 LTS (on travis-ci), R 3.6.1
35+
* win-builder (3.6.1 and 3.5.3)
1236

1337
## R CMD check results
1438
There were no ERRORs or WARNINGs or NOTEs.

vignettes/SEMinR.Rmd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "SEMinR"
33
author: "Soumya Ray & Nicholas Danks"
4-
date: "Sep 28, 2019"
4+
date: "Sep 27, 2019"
55
output: html_document
66
vignette: >
77
%\VignetteIndexEntry{SEMinR}
@@ -13,6 +13,10 @@ vignette: >
1313
knitr::include_graphics('SEMinR_logo.jpg')
1414
```
1515

16+
![Build Status](https://travis-ci.org/sem-in-r/seminr.svg?branch=master)
17+
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/seminr)](https://cran.r-project.org/package=seminr)
18+
[![metacran downloads](https://cranlogs.r-pkg.org/badges/grand-total/seminr)](https://cran.r-project.org/package=seminr)
19+
1620
## Introduction
1721

1822
```{r, echo = FALSE, message = FALSE}

0 commit comments

Comments
 (0)