https://github.com/centerforassessment/rlimatrices
Historical baseline matrices for RLI SGPt analyses
Science Score: 26.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (12.4%) to scientific vocabulary
Keywords
Repository
Historical baseline matrices for RLI SGPt analyses
Basic Info
Statistics
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
- Releases: 0
Topics
Metadata Files
README.md
RLImatrices
Overview
The RLImatrices package provides historical baseline coefficient matrices for Renaissance Learning Inc. (RLI) Student Growth Percentile (SGPt) analyses. These matrices are essential components for calculating student growth percentiles and percentile growth trajectories using the rliSGP function from the SGP Package.
This package serves educational assessment professionals, researchers, and data analysts who work with RLI assessment data to measure and analyze student academic growth over time.
What's Included
Baseline Coefficient Matrices
The package contains two comprehensive datasets:
RLI_SGPt_Baseline_Matrices: US-based coefficient matricesRLI_UK_SGPt_Baseline_Matrices: UK-based coefficient matrices
Content Areas Covered
- Early Literacy: Foundational reading skills assessment
- Reading: Comprehensive reading assessment (STAR and RASCH variants)
- Mathematics: Mathematical proficiency assessment (STAR and RASCH variants)
- Specialized Variants:
- RASCH-based matrices for enhanced psychometric modeling
- Spanish language assessments
- Unified RASCH reading assessments
Temporal Coverage
Historical data spanning multiple academic years from 2015-2016 through 2023-2024, with seasonal breakdowns (Fall, Winter, Spring) where applicable.
Key Features
Matrix Information Retrieval
The getRLImatrixInfo() function provides comprehensive metadata about available coefficient matrices:
```r library(RLImatrices)
Get latest US matrices information
latest_us <- getRLImatrixInfo()
Get all available years for UK
all_uk <- getRLImatrixInfo(locale = "UK", year = "ALL")
Get specific year data
specificyear <- getRLImatrixInfo(locale = "US", year = "20232024.3") ```
Returned Information
For each matrix, you'll receive detailed metadata including: - Locale: US or UK - Academic Year: e.g., "2023_2024.3" - Content Area: Subject domain - Matrix Specifications: Dimensions, grade progressions, knots, boundaries - Sample Information: Student count, time parameters - Version Details: SGP package version, preparation date
Installation
From GitHub
```r
Install devtools if you haven't already
install.packages("devtools")
Install RLImatrices
devtools::install_github("CenterForAssessment/RLImatrices")
Load the package
library(RLImatrices) ```
System Requirements
- R: Version 3.6 or higher
- Dependencies:
data.table(automatically installed) - Suggested:
SGPpackage (version 1.3-7.0 or higher) for full functionality
Platform-Specific Requirements
- Windows: Rtools
- macOS: Xcode (available from App Store)
- Linux:
r-base-devpackage (or equivalent)
Usage Examples
Basic Matrix Information
```r
Load the package
library(RLImatrices) library(data.table)
Get information about the latest available matrices
matrixinfo <- getRLImatrixInfo() print(matrixinfo)
View available content areas
unique(matrixinfo$CONTENTAREA)
Check matrix dimensions
table(matrixinfo$MATRIXDIMENSION) ```
Filtering and Analysis
```r
Get all mathematics matrices for US
mathmatrices <- getRLImatrixInfo(locale = "US", year = "ALL") mathonly <- mathmatrices[CONTENTAREA == "MATHEMATICS"]
View student counts by year
mathonly[, .(avgstudents = mean(STUDENT_COUNT)), by = YEAR]
Check available grade progressions
unique(mathonly$GRADEPROGRESSION) ```
Integration with SGP Package
```r
These matrices are designed to work with the SGP package
library(SGP)
The matrices are automatically available when using rliSGP()
See SGP package documentation for complete usage examples
```
Data Structure
Each coefficient matrix contains: - Spline coefficients: For growth trajectory modeling - Grade progressions: Valid grade-to-grade transitions - Temporal parameters: Time lag specifications - Boundary conditions: Assessment score ranges - Knot specifications: Spline breakpoints - Version metadata: Creation details and sample sizes
Version History
The package has evolved significantly since its initial release: - v18.9-2.0 (Current): Latest matrices with enhanced UK support - v17.0-0.0: Added UK matrices for multiple content areas - v16.0-0.0: Updated 2018-2019 data integration - v13.0-0.0: Introduction of Spanish language assessments - v10.0-0.0: READINGUNIFIEDRASCH matrices added - v1.0-0.0: Initial release with Fall 2015-2016 baseline matrices
See the NEWS file for complete version history.
Support and Documentation
- GitHub Repository: https://github.com/CenterForAssessment/RLImatrices
- Issues and Bug Reports: Use GitHub Issues for technical support
- SGP Package Integration: See SGP documentation for analysis workflows
Citation
When using this package in research or publications, please cite:
r
citation("RLImatrices")
License
This package is released under the MIT License. See LICENSE.md for details.
Note: This package is specifically designed for use with Renaissance Learning Inc. assessment data and requires appropriate data access permissions for practical application.
Owner
- Name: Center for Assessment
- Login: CenterForAssessment
- Kind: organization
- Email: support@nciea.org
- Location: Dover, New Hampshire
- Website: www.nciea.org
- Twitter: NCIEA1
- Repositories: 53
- Profile: https://github.com/CenterForAssessment
National Center for the Improvement of Educational Assessment
GitHub Events
Total
- Push event: 3
Last Year
- Push event: 3
Issues and Pull Requests
Last synced: about 1 year ago
All Time
- Total issues: 0
- Total pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Total issue authors: 0
- Total pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0