Description Usage Arguments Details Value See Also Examples
View source: R/FeatureExtraction.R
This function does a feature extraction to create an analytics base table from the transactions and the personalAccounts tables. The features are mostly binary (occurence of a word) or discrete (count of a word) and very sparse.
| 1 | FeatureExtraction(ta, pa)
 | 
| ta | 
 | 
| pa | 
 | 
The analytics base table (ABT) containes feature values as int.
Columns represent features, rows data points (= transactions).
The ABT is accompanied by a FeatureList which describes the features.
It is necessary for conversion between different ABTs.
list of 2 objects
ABT int matrix analytics base table containing features as columns, data points as rows
FeatureList data.frame description of ABT columns with names and values
Other machine learning: CV,
Convert, Prediction,
Training
| 1 2 3 4 5 | db <- "db/test.db"
Create_testDB(db)
ta <- Select("transactions", db)
pa <- Select("personalAccounts", db)
res <- FeatureExtraction(ta, pa)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.