├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── add_entity.R ├── add_relationship.R ├── as_entityset.R ├── calculate_feature_matrix.R ├── create_entityset.R ├── dfs.R ├── extract_features.R ├── install_featuretools.R ├── list_primitives.R ├── load_features.R ├── save_features.R ├── tidy_feature_matrix.R └── zzz.R ├── README.md ├── man ├── add_entity.Rd ├── add_relationship.Rd ├── as_entityset.Rd ├── calculate_feature_matrix.Rd ├── create_entityset.Rd ├── dfs.Rd ├── extract_features.Rd ├── install_featuretools.Rd ├── list_primitives.Rd ├── load_features.Rd ├── save_features.Rd └── tidy_feature_matrix.Rd └── tests ├── testthat.R └── testthat ├── test_main.R ├── test_utils.R └── utils.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Magnus Furugård 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/add_entity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/R/add_entity.R -------------------------------------------------------------------------------- /R/add_relationship.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/R/add_relationship.R -------------------------------------------------------------------------------- /R/as_entityset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/R/as_entityset.R -------------------------------------------------------------------------------- /R/calculate_feature_matrix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/R/calculate_feature_matrix.R -------------------------------------------------------------------------------- /R/create_entityset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/R/create_entityset.R -------------------------------------------------------------------------------- /R/dfs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/R/dfs.R -------------------------------------------------------------------------------- /R/extract_features.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/R/extract_features.R -------------------------------------------------------------------------------- /R/install_featuretools.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/R/install_featuretools.R -------------------------------------------------------------------------------- /R/list_primitives.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/R/list_primitives.R -------------------------------------------------------------------------------- /R/load_features.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/R/load_features.R -------------------------------------------------------------------------------- /R/save_features.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/R/save_features.R -------------------------------------------------------------------------------- /R/tidy_feature_matrix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/R/tidy_feature_matrix.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/README.md -------------------------------------------------------------------------------- /man/add_entity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/man/add_entity.Rd -------------------------------------------------------------------------------- /man/add_relationship.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/man/add_relationship.Rd -------------------------------------------------------------------------------- /man/as_entityset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/man/as_entityset.Rd -------------------------------------------------------------------------------- /man/calculate_feature_matrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/man/calculate_feature_matrix.Rd -------------------------------------------------------------------------------- /man/create_entityset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/man/create_entityset.Rd -------------------------------------------------------------------------------- /man/dfs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/man/dfs.Rd -------------------------------------------------------------------------------- /man/extract_features.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/man/extract_features.Rd -------------------------------------------------------------------------------- /man/install_featuretools.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/man/install_featuretools.Rd -------------------------------------------------------------------------------- /man/list_primitives.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/man/list_primitives.Rd -------------------------------------------------------------------------------- /man/load_features.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/man/load_features.Rd -------------------------------------------------------------------------------- /man/save_features.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/man/save_features.Rd -------------------------------------------------------------------------------- /man/tidy_feature_matrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/man/tidy_feature_matrix.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_main.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/tests/testthat/test_main.R -------------------------------------------------------------------------------- /tests/testthat/test_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/tests/testthat/test_utils.R -------------------------------------------------------------------------------- /tests/testthat/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praktiskt/featuretoolsR/HEAD/tests/testthat/utils.R --------------------------------------------------------------------------------