Skip to content

Commit

Permalink
Merge pull request #99 from dbetebenner/master
Browse files Browse the repository at this point in the history
Update to 2023-2024
  • Loading branch information
dbetebenner authored Jul 14, 2024
2 parents 06a43b6 + 0469a41 commit 54d5856
Show file tree
Hide file tree
Showing 10 changed files with 54 additions and 12 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: SGPdata
Type: Package
Title: Exemplar Data Sets for Student Growth Percentiles (SGP) Analyses
Version: 27.0-0.0
Date: 2023-10-17
Version: 28.0-0.0
Date: 2024-7-14
Authors@R: c(person(given=c("Damian", "W."), family="Betebenner", email="[email protected]", role=c("aut", "cre")),
person(given=c("Adam", "R."), family="Van Iwaarden", email="[email protected]", role="aut"),
person(given="Ben", family="Domingue", email="[email protected]", role="aut"))
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SGPdata 28.0-0.0

* Updating YEAR to 2023_2024

# SGPdata 27.0-0.0

* Updating YEAR to 2022_2023
Expand Down
2 changes: 1 addition & 1 deletion R/zzz.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ function(libname, pkgname) {
`.onAttach` <-
function(libname, pkgname) {
if (interactive()) {
packageStartupMessage(magenta$bold('SGPdata',paste(paste0(unlist(strsplit(as.character(packageVersion("SGPdata")), "[.]")), c(".", "-", ".", "")), collapse=""),' (10-17-2023). For help: >help("SGPdata") or visit https://centerforassessment.github.io/SGPdata'))
packageStartupMessage(magenta$bold('SGPdata',paste(paste0(unlist(strsplit(as.character(packageVersion("SGPdata")), "[.]")), c(".", "-", ".", "")), collapse=""),' (7-14-2024). For help: >help("SGPdata") or visit https://centerforassessment.github.io/SGPdata'))
}
}
Binary file modified data/sgpData.rda
Binary file not shown.
Binary file modified data/sgpData_LONG.rda
Binary file not shown.
10 changes: 5 additions & 5 deletions inst/CITATION
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ bibentry(
person(given = c("Adam", "R."), family = "Van Iwaarden"),
person(given = c("Benjamin"), family = "Domingue")
),
year = "2023",
note = "R package version 27.0-0.0",
year = "2024",
note = "R package version 28.0-0.0",
url = "https://centerforassessment.github.io/SGPdata/",
textVersion = paste(
"Damian W. Betebenner, Adam R. Van Iwaarden and Ben Domingue (2023).",
"Damian W. Betebenner, Adam R. Van Iwaarden and Ben Domingue (2024).",
"SGPdata: Exemplar Data Sets for Student Growth Percentile (SGP) Analyses.",
"(R package version 27.0-0.0.",
"(R package version 28.0-0.0.",
"URL: https://centerforassessment.github.io/SGPdata/"
)
)
)
4 changes: 4 additions & 0 deletions inst/NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SGPdata 28.0-0.0

* Updating YEAR to 2023_2024

# SGPdata 27.0-0.0

* Updating YEAR to 2022_2023
Expand Down
4 changes: 2 additions & 2 deletions man/SGPdata-package.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
\tabular{ll}{
Package: \tab SGPdata\cr
Type: \tab Package\cr
Version: \tab 27.0-0.0\cr
Date: \tab 2023-10-17\cr
Version: \tab 28.0-0.0\cr
Date: \tab 2024-7-14\cr
License: \tab GPL-3\cr
LazyLoad: \tab Yes\cr
LazyData: \tab Yes\cr
Expand Down
4 changes: 2 additions & 2 deletions man/sgpData.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ of their own datasets for growth percentile analyses.
A data frame of student level observations for five years on the following variables.
\describe{
\item{\code{ID}}{Student ID}
\item{\code{GRADE_2019}}{Student Grade Tested 2019, possibly missing}
\item{\code{GRADE_2020}}{Student Grade Tested 2020, possibly missing}
\item{\code{GRADE_2021}}{Student Grade Tested 2021, possibly missing}
\item{\code{GRADE_2022}}{Student Grade Tested 2022, possibly missing}
\item{\code{GRADE_2023}}{Student Grade Tested 2023, possibly missing}
\item{\code{SS_2019}}{Student Scale Score 2019, possibly missing}
\item{\code{GRADE_2024}}{Student Grade Tested 2024, possibly missing}
\item{\code{SS_2020}}{Student Scale Score 2020, possibly missing}
\item{\code{SS_2021}}{Student Scale Score 2021, possibly missing}
\item{\code{SS_2022}}{Student Scale Score 2022, possibly missing}
\item{\code{SS_2023}}{Student Scale Score 2023, possibly missing}
\item{\code{SS_2024}}{Student Scale Score 2024, possibly missing}
}
}

Expand Down
34 changes: 34 additions & 0 deletions vignettes/releases/SGPdata-28.0-0.0.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
title: "SGPdata 28.0-0.0"
date: "July 14th, 2024"
---

```{r include = FALSE}
library(SGPdata)
is_html_output = function() {
knitr::opts_knit$get("rmarkdown.pandoc.to")=="html"
}
knitr::opts_chunk$set(
collapse=TRUE,
comment="",
prompt=TRUE,
fig.dpi=96)
if (is_html_output()) {
options(width=1000)
}
```


This is the 28.0-0.0 release of the **SGPdata** package posted to CRAN. This
[GitHub tagged release](https://github.com/CenterForAssessment/SGPdata/releases/tag/e7d537e) can be downloaded via:

This release basically auguments the year number to 2024 for the data sets.

```{r eval=FALSE}
devtools::install_github("CenterForAssessment/SGPdata", ref="e7d537e")
```

Feel free to drop us a line with any comments, feature requests, or ideas. And give us a shout-out Tweet using the Twitter button in the upper right!

0 comments on commit 54d5856

Please sign in to comment.