read_sistec: Read sistec files

Description Usage Arguments Details Value Examples

View source: R/read_sistec.R

Description

The package provides support if your data comes from setec or web. You just need to pass the folder's path were are your files. See Details if you need help to download the data from Sistec.

Usage

1
read_sistec(path = "", start = NULL)

Arguments

path

The sistec file's path.

start

A character with the date to start the comparison. The default is the minimum value found in the data. The date has to be in this format: "yyyy.semester". Ex.: "2019.1" or "2019.2".

Details

You can download the Sistec's student registration using your proper account on Sistec. Be sure that your data has these variables:

Tip: To take every student for your institution/campus using web, search by student name and use " ".

Value

A data frame.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
 
# this dataset is not a real one. It is just for test purpose.
sistec <- read_sistec(system.file("extdata/examples/sistec",
                                  package = "sistec"))

sistec

# example selecting the period
sistec_2019_2 <- read_sistec(system.file("extdata/examples/sistec", package = "sistec"),
                                start = "2019.2") 

sistec_2019_2 

sistec documentation built on Oct. 27, 2020, 1:06 a.m.