-
Notifications
You must be signed in to change notification settings - Fork 0
Visualization Commands
Bell Eapen edited this page Jan 29, 2026
·
1 revision
The crispviz tool creates publication-quality visualizations from your analyzed corpus. All commands operate on a corpus that has already been processed with crisp or crispt.
General Syntax:
crispviz --inp <corpus_path> --out <viz_output_dir> [flags]Generate a word cloud for each identified topic.
-
Command:
crispviz --wordcloud -
Prerequisite: Run
crisp --topicsfirst.
Plot the frequency distribution of words in the corpus.
-
Command:
crispviz --freq -
Options:
--bins <N>(default: 100).
Bar chart of the most frequent terms.
-
Command:
crispviz --top-terms -
Options:
--top-n <N>(default: 20).
Create an interactive HTML visualization of your topic model.
-
Command:
crispviz --ldavis -
Prerequisite: Run
crisp --topicsfirst. -
Output: Saves an
.htmlfile instead of an image.
Visualize correlations between numeric columns in your dataframe.
-
Command:
crispviz --corr-heatmap -
Options:
--corr-columns "col1,col2"(Comma-separated list of columns to include. Auto-selects if empty).
Visualize the network of documents, keywords, and metadata.
-
Command:
crispviz --graph -
Prerequisite: Run
crisp --topics(for keywords) orcrispt --graph. -
Options:
-
--graph-nodes <types>: Filter nodes (e.g.,document,keyword). Default: all. -
--graph-layout <algo>: Layout algorithm (spring,circular,kamada_kawai,spectral).
-
Visualize the Topological Data Analysis network.
-
Command:
crispviz --tdabm -
Prerequisite: Run
crispt --tdabm ...first.
Plot the distribution of dominant topics across documents.
-
Command:
crispviz --by-topic -
Prerequisite: Run
crisp --assignfirst.
-
--out <dir>: Required. Directory to save the PNG/HTML files. -
--inp <dir>: Input corpus directory. -
--topics-num <N>: Number of topics to assume if regenerating models (default: 8).