├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── event-class.R └── helpers.R ├── README.md ├── foregen.Rproj └── man ├── Event-class.Rd ├── events_to_regressors.Rd └── table_to_events.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relaypro-open/foregen/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relaypro-open/foregen/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relaypro-open/foregen/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/event-class.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relaypro-open/foregen/HEAD/R/event-class.R -------------------------------------------------------------------------------- /R/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relaypro-open/foregen/HEAD/R/helpers.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relaypro-open/foregen/HEAD/README.md -------------------------------------------------------------------------------- /foregen.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relaypro-open/foregen/HEAD/foregen.Rproj -------------------------------------------------------------------------------- /man/Event-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relaypro-open/foregen/HEAD/man/Event-class.Rd -------------------------------------------------------------------------------- /man/events_to_regressors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relaypro-open/foregen/HEAD/man/events_to_regressors.Rd -------------------------------------------------------------------------------- /man/table_to_events.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/relaypro-open/foregen/HEAD/man/table_to_events.Rd --------------------------------------------------------------------------------