Nothing
# NeuroDataSets - A Comprehensive Collection of Neuroscience and Brain-Related Datasets
# Version 0.1.0
# Copyright (C) 2025 Renzo Caceres Rossi
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
# neurocognitive_psychiatric_df
library(testthat)
# Test 1: Check that the object is a data.frame and has 10 columns
test_that("neurocognitive_psychiatric_df is a data.frame with 10 columns", {
expect_s3_class(neurocognitive_psychiatric_df, "data.frame")
expect_equal(ncol(neurocognitive_psychiatric_df), 10)
expect_equal(length(neurocognitive_psychiatric_df), 10)
})
# Test 2: Check the number of rows (excluding NAs due to na.action=omit)
test_that("neurocognitive_psychiatric_df has 242 rows", {
expect_equal(nrow(neurocognitive_psychiatric_df), 242)
})
# Test 3: Validate column names
test_that("neurocognitive_psychiatric_df has correct column names", {
expect_named(
neurocognitive_psychiatric_df,
c("Dx", "Speed", "Attention", "Memory", "Verbal", "Visual",
"ProbSolv", "SocialCog", "Age", "Sex")
)
})
# Test 4: Check data types
test_that("neurocognitive_psychiatric_df has correct data types", {
expect_s3_class(neurocognitive_psychiatric_df$Dx, "factor")
expect_type(neurocognitive_psychiatric_df$Speed, "integer")
expect_type(neurocognitive_psychiatric_df$Attention, "integer")
expect_type(neurocognitive_psychiatric_df$Memory, "integer")
expect_type(neurocognitive_psychiatric_df$Verbal, "integer")
expect_type(neurocognitive_psychiatric_df$Visual, "integer")
expect_type(neurocognitive_psychiatric_df$ProbSolv, "integer")
expect_type(neurocognitive_psychiatric_df$SocialCog, "integer")
expect_type(neurocognitive_psychiatric_df$Age, "integer")
expect_s3_class(neurocognitive_psychiatric_df$Sex, "factor")
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.