Skip to content

Commit

Permalink
Fix breaking roxygen change (#37)
Browse files Browse the repository at this point in the history
* fixing breaking roxygen change

* updating readme and deleting travis.ci

* changing copyright year back to 2016

* Update DESCRIPTION

* adding doi back in
  • Loading branch information
ryentes authored Sep 30, 2023
1 parent 3b98d56 commit 5a2b70f
Show file tree
Hide file tree
Showing 7 changed files with 52 additions and 23 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
^\.travis\.yml$
cran-comments.md
^CRAN-RELEASE$
^LICENSE\.md$
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

27 changes: 21 additions & 6 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,14 +1,29 @@
Package: careless
Type: Package
Title: Procedures for Computing Indices of Careless Responding
Version: 1.2.1
Date: 2021-03-14
Version: 1.2.2
Date: 2023-09-30
Authors@R: c(
person("Richard", "Yentes" , email = "[email protected]", role = c("cre", "aut")),
person(
given="Richard",
family="Yentes" ,
email="[email protected]",
role = c("cre", "aut"),
comment=c(ORCID="0000-0002-6767-8065")
),
person("Francisco", "Wilhelm", email = "[email protected]", role = c("aut")))
Maintainer: Richard Yentes <[email protected]>
Description: When taking online surveys, participants sometimes respond to items without regard to their content.
These types of responses, referred to as careless or insufficient effort responding, constitute significant problems for data quality, leading to distortions in data analysis and hypothesis testing, such as spurious correlations. The 'R' package 'careless' provides solutions designed to detect such careless / insufficient effort responses by allowing easy calculation of indices proposed in the literature. It currently supports the calculation of longstring, even-odd consistency, psychometric synonyms/antonyms, Mahalanobis distance, and intra-individual response variability (also termed inter-item standard deviation). For a review of these methods, see Curran (2016) <doi:10.1016/j.jesp.2015.07.006>.
Description: When taking online surveys, participants sometimes respond to items
without regard to their content. These types of responses, referred to as
careless or insufficient effort responding, constitute significant problems
for data quality, leading to distortions in data analysis and hypothesis
testing, such as spurious correlations. The 'R' package 'careless' provides
solutions designed to detect such careless / insufficient effort responses
by allowing easy calculation of indices proposed in the literature. It
currently supports the calculation of longstring, even-odd consistency,
psychometric synonyms/antonyms, Mahalanobis distance, and intra-individual
response variability (also termed inter-item standard deviation).
For a review of these methods, see Curran (2016) <doi:10.1016/j.jesp.2015.07.006>.
License: MIT + file LICENSE
URL: https://github.com/ryentes/careless/
BugReports: https://github.com/ryentes/careless/issues
Expand All @@ -21,4 +36,4 @@ Suggests:
Encoding: UTF-8
LazyData: true
VignetteBuilder: knitr
RoxygenNote: 7.1.1
RoxygenNote: 7.2.3
21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# MIT License

Copyright (c) 2023 Richard Yentes

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ export(mahad)
export(psychant)
export(psychsyn)
export(psychsyn_critval)
importFrom(psych,outlier)
importFrom(stats,cor)
6 changes: 6 additions & 0 deletions R/careless-package.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"_PACKAGE"

## usethis namespace: start
#' @importFrom stats cor
#' @importFrom psych outlier
NULL
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- badges: start -->
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)
[![Travis build status](https://travis-ci.com/ryentes/careless.svg?branch=master)](https://travis-ci.com/ryentes/careless)
[![R-CMD-check](https://github.com/ryentes/careless/workflows/R-CMD-check/badge.svg)](https://github.com/ryentes/careless/actions)
<!-- badges: end -->

<br/>
Expand Down

0 comments on commit 5a2b70f

Please sign in to comment.