Skip to content

nim-ach/ASQ3

Repository files navigation

ASQ3

R-CMD-check Lifecycle: experimental

The purpose of the {ASQ3} package is to provide access to the data collected by the Centro Asistencial Docente e Investigación de la Universidad de Magallanes (CADI-UMAG).

The data were treated, eliminating any sensitive information that could compromise the identity of the participants or linked individuals. Data preparation process can be seen here.

Installation

You can install the development version of ASQ3 from GitHub with:

# install.packages("devtools")
devtools::install_github("nim-ach/ASQ3")

Example

This is a basic example which shows you how to use the dataset from your console.

library(ASQ3) # Load the package

head(dataset[, 1:4], n = 5) # Print the first 5 rows of the first 4 columns
#>    profesional_id profesional_especialidad paciente_id respondedor_vinculo
#> 1:              4             Kinesiologia           1               Padre
#> 2:              4             Kinesiologia           2               Madre
#> 3:              4             Kinesiologia           3               Madre
#> 4:              3           Fonoaudiologia           4               Padre
#> 5:              2               Enfermeria           5               Madre

For more information about the dataset, you can consult the dataset documentation.

About

R is a high-level statistical programming language used for data analysis, as well as for the development of software tools such as websites, reports, applications, digital books, etc. For more information you can visit the R-project website.