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.
The package contains two comprehensive datasets:
RLI_SGPt_Baseline_Matrices
: US-based coefficient matricesRLI_UK_SGPt_Baseline_Matrices
: UK-based coefficient matrices
- 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
Historical data spanning multiple academic years from 2015-2016 through 2023-2024, with seasonal breakdowns (Fall, Winter, Spring) where applicable.
The getRLImatrixInfo()
function provides comprehensive metadata about available coefficient matrices:
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
specific_year <- getRLImatrixInfo(locale = "US", year = "2023_2024.3")
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
# Install devtools if you haven't already
install.packages("devtools")
# Install RLImatrices
devtools::install_github("CenterForAssessment/RLImatrices")
# Load the package
library(RLImatrices)
- R: Version 3.6 or higher
- Dependencies:
data.table
(automatically installed) - Suggested:
SGP
package (version 1.3-7.0 or higher) for full functionality
- Windows: Rtools
- macOS: Xcode (available from App Store)
- Linux:
r-base-dev
package (or equivalent)
# Load the package
library(RLImatrices)
library(data.table)
# Get information about the latest available matrices
matrix_info <- getRLImatrixInfo()
print(matrix_info)
# View available content areas
unique(matrix_info$CONTENT_AREA)
# Check matrix dimensions
table(matrix_info$MATRIX_DIMENSION)
# Get all mathematics matrices for US
math_matrices <- getRLImatrixInfo(locale = "US", year = "ALL")
math_only <- math_matrices[CONTENT_AREA == "MATHEMATICS"]
# View student counts by year
math_only[, .(avg_students = mean(STUDENT_COUNT)), by = YEAR]
# Check available grade progressions
unique(math_only$GRADE_PROGRESSION)
# 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
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
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: READING_UNIFIED_RASCH matrices added
- v1.0-0.0: Initial release with Fall 2015-2016 baseline matrices
See the NEWS file for complete version history.
- 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
When using this package in research or publications, please cite:
citation("RLImatrices")
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.