Skip to content

Commit

Permalink
cran submission 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
IndrajeetPatil committed Mar 1, 2022
1 parent 9a24180 commit f8fa4ea
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: datawizard
Title: Easy Data Wrangling
Version: 0.2.3.9005
Version: 0.3.0
Authors@R: c(
person("Dominique", "Makowski", , "dom.makowski@gmail.com", role = "aut",
comment = c(ORCID = "0000-0001-5375-9967", Twitter = "@Dom_Makowski")),
Expand Down
4 changes: 3 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# datawizard 0.2.3.9005
# datawizard 0.3.0

- New functions:

Expand All @@ -10,6 +10,8 @@

* To rotate data frames: `data_rotate()`.

* To reverse score variables: `data_reverse()`.

* To merge/join multiple data frames: `data_merge()` (or its alias
`data_join()`).

Expand Down
2 changes: 1 addition & 1 deletion cran-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@

We checked 11 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package.

* We saw 1 new problem: *modelbased* package is already broken on CRAN and its breakage isn't related to the current update.
* We saw 0 new problems.
* We failed to check 0 packages.
9 changes: 9 additions & 0 deletions inst/WORDLIST
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ Mundlak
PHQ
PSU
REWB
Ranktransform
Recode
Recoding
Rescale
Rescaling
Routledge
Expand All @@ -43,6 +46,8 @@ geoms
github
https
io
labelled
labelling
leptokurtic
lme
meaned
Expand All @@ -55,6 +60,10 @@ pockety
proprties
pth
quartiles
recode
recoded
recodes
recoding
reproducibility
rescale
rescaled
Expand Down
2 changes: 1 addition & 1 deletion vignettes/demean.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ model_parameters(fe_model2)[2:3, ]
library(lfe)
fe_model3 <- felm(
QoL ~ time + phq4 | ID,
data = qol_cancer
data = qol_cancer
)
model_parameters(fe_model3)
```
Expand Down
4 changes: 2 additions & 2 deletions vignettes/standardize_data.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ emotion <- emotion %>% filter(Emotion_Condition == "Negative")
# Summary
emotion %>%
subset(!(is.na(Subjective_Valence) | is.na(Autobiographical_Link))) %>%
subset(!(is.na(Subjective_Valence) | is.na(Autobiographical_Link))) %>%
group_by(Participant_ID) %>%
summarise(
n_Trials = n(),
Expand Down Expand Up @@ -340,7 +340,7 @@ print_participants <- function(data) {
Mean = mean(Subjective_Valence),
SD = sd(Subjective_Valence)
) %>%
cbind(DF = df_name, .) %>%
cbind(DF = df_name, .) %>%
head(5) %>%
select(DF, everything())
}
Expand Down

0 comments on commit f8fa4ea

Please sign in to comment.