-
Notifications
You must be signed in to change notification settings - Fork 0
Method Selection Guide
Bell Eapen edited this page Nov 10, 2025
·
1 revision
This table helps newcomers choose the appropriate CRISP-T analysis method based on their data type and research goal.
| Goal / Data Type | Textual Data (documents) | Numeric Data (DataFrame) | Both (Mixed) | Recommended CLI Flags / Tools |
|---|---|---|---|---|
| Topic discovery | Yes | No | Yes (text) |
--topics, --assign, crispviz --ldavis
|
| Sentiment analysis | Yes | No | Yes (text) |
--sentiment, --sentence
|
| Summarization | Yes | No | Yes (text) | --summary |
| Clustering | No | Yes | Yes |
--ml --kmeans, --pca, crispviz --pca
|
| Predictive modeling (outcome) | No | Yes | Yes |
--ml --cart (Decision Tree), --regression
|
| Topological structure (TDABM) | No | Yes | Yes |
crispt --tdabm, crispviz --tdabm
|
| Semantic search/filtering | Yes | No | Yes (text) |
--semantic, --filters key=value
|
| Triangulation (mixed methods) | Yes | Yes | Yes | Combine above; inspect metadata, use --print
|
| Visualization | Yes | Yes | Yes | crispviz --wordcloud --ldavis --pca --tdabm |
Notes: