Skip to main content

Qualitative Research support tools in Python!

Project description

🔍 CRISP-T (Sense-making from Text and Numbers!)

Release Build status codecov Commit activity License Downloads Documentation

Generated by github-dependents-info

TL;DR 🚀 CRISP-T is a qualitative research method and a toolkit to perform textual (e.g. topic modelling) and numeric (e.g. decision trees) analysis of mixed datasets for computational triangulation and sense-making using large language models. 👉 See Demo.

Qualitative research focuses on collecting and analyzing textual data—such as interview transcripts, open-ended survey responses, and field notes—to explore complex phenomena and human experiences. Researchers may also incorporate quantitative or external sources (e.g., demographics, census data, social media) to provide context and triangulate findings. Characterized by an inductive approach, qualitative research emphasizes generating theories from data rather than testing hypotheses. While qualitative and quantitative data are often used together, there is no standard method for combining them.

CRISP-T is a method and toolset to integrate textual data (as a list of documents) and numeric data (as Pandas DataFrame) into structured classes that retain metadata from various analytical processes, such as topic modeling and decision trees. Researchers, with or without GenAI assistance, can define relationships between textual and numerical datasets based on their chosen theoretical lens. A final analytical phase ensures that proposed relationships actually hold true. 👉 See Demo.

An MCP server exposes all functionality as tools, resources, and prompts, enabling integration with AI agent platforms such as Claude desktop, VSCODE and other MCP-compatible clients. CRISP-T cannot directly code the documents, but it provides semantic chunk search that may be used in association with other tools to acheive automated coding. For example, VSCODE provides built in tools for editing text and markdown files, which can be used to code documents based on semantic search.

Installation

pip install crisp-t

Include machine learning features for numeric data analysis (Recommended):

pip install crisp-t[ml]

Include XGBoost for gradient boosting features (Optional):

pip install crisp-t[xg]
  • Mac users need to install libomp: brew install libomp for XGBoost to work. (Needed only if you want to use XGBoost)

Command Line Scripts

CRISP-T now provides four main command-line scripts:

  • crisp — Main CLI for qualitative triangulation and analysis (see below)
  • crispviz — Visualization CLI for corpus data (word frequencies, topic charts, wordclouds, etc.)
  • crispt — Corpus manipulation CLI (create, edit, query, and manage corpus objects)
  • crisp-mcp — Starts the MCP server for AI integration (see MCP section below)

All scripts are installed as entry points and can be run directly from the command line after installation.

crisp (Analytical CLI)

crisp [OPTIONS]

Input/Output Options

  • --source, -s PATH|URL: Read source data from a directory (reads .txt, .pdf and a single .csv) or from a URL
  • --sources PATH|URL: Provide multiple sources; can be used multiple times
  • --inp, -i PATH: Load an existing corpus from a folder containing corpus.json (and optional corpus_df.csv)
  • --out, -o PATH: When saving the corpus, provide a folder path; the CLI writes corpus.json (and corpus_df.csv if available) into that folder. When saving analysis results (topics, sentiment, etc.), this acts as a base path: files are written with suffixes, e.g., results_topics.json.
  • --unstructured, -t TEXT: Text CSV column(s) to analyze/compare (can be used multiple times). This is useful when you have free-form text data in a DataFrame. If this is provided, those columns are used as documents.
  • --ignore TEXT: Comma-separated words to ignore during ingestion (applies to --source/--sources)

Analysis Options

  • --codedict: Generate qualitative coding dictionary
  • --topics: Generate topic model using LDA
  • --assign: Assign documents to topics
  • --cat: List categories of entire corpus or individual documents
  • --summary: Generate extractive text summary
  • --sentiment: Generate sentiment scores using VADER
  • --sentence: Generate sentence-level scores when applicable
  • --nlp: Generate all NLP reports (combines above text analyses)
  • --nnet, --cls, --knn, --kmeans, --cart, --pca, --regression, --ml: Machine learning and clustering options (requires crisp-t[ml])
    • --regression: Perform linear or logistic regression (automatically detects binary outcomes for logistic regression)
  • --visualize: Generate visualizations (word clouds, topic charts, etc.)
  • --num, -n INTEGER: Number parameter (clusters, topics, epochs, etc.) - default: 3
  • --rec, -r INTEGER: Record parameter (top N results, recommendations) - default: 3
  • --filters, -f TEXT: Filters to apply as key=value (can be used multiple times); keeps only documents where document.metadata[key] == value. Invalid formats raise an error.
  • --verbose, -v: Print verbose messages for debugging

Data Sources

  • --source, -s PATH|URL: Read source data from a directory (reads .txt and .pdf) or from a URL
  • --sources PATH|URL: Provide multiple sources; can be used multiple times

crispviz (Visualization CLI)

crispviz [OPTIONS]
  • --inp, --source, --sources: Input corpus or sources
  • --out: Output directory for PNG images
  • Visualization flags: --freq, --by-topic, --wordcloud, --top-terms, --corr-heatmap
  • Optional params: --bins, --top-n, --columns

crispt (Corpus Manipulation CLI)

crispt [OPTIONS]
  • --id, --name, --description: Corpus metadata
  • --doc: Add document as id|name|text or id|text (repeatable)
  • --remove-doc: Remove document by ID (repeatable)
  • --meta: Add/update corpus metadata as key=value (repeatable)
  • --add-rel: Add relationship as first|second|relation (repeatable)
  • --clear-rel: Clear all relationships
  • --out: Save corpus to folder/file as corpus.json
  • --inp: Load corpus from folder/file containing corpus.json
  • Query options:
    • --df-cols: Print DataFrame column names
    • --df-row-count: Print DataFrame row count
    • --df-row INDEX: Print DataFrame row by index
    • --doc-ids: Print all document IDs
    • --doc-id ID: Print document by ID
    • --relationships: Print all relationships
    • --relationships-for-keyword KEYWORD: Print relationships involving a keyword
  • Semantic search (requires chromadb):
    • --semantic QUERY: Perform semantic search with query string

    • --semantic-n N: Number of results to return (default: 5)

    • --semantic-chunks QUERY: Perform semantic search on document chunks. Returns matching chunks for a specific document (use with --doc-id and --rec for similarity threshold between 0 and 10 with a default of 8.5)

    • --rec THRESHOLD: Threshold for semantic chunk search (0-10, default: 8.5). Only chunks with similarity above this value are returned

    • --metadata-df: Export collection metadata as DataFrame+

    • --metadata-keys KEYS: Comma-separated metadata keys to include+

      • The above two options can be used to export or add metadata from NLP to the DataFrame. For example, you can extract sentiment scores or topic assignments as additional columns for numerical analysis. This is useful if dataframe and documents are aligned as in a survey response.

Example Usage

When saving the corpus via --out, the CLI writes corpus.json (and corpus_df.csv if present) into the specified folder. If you pass a file path, only its parent directory is used for writing corpus.json.

MCP Server

CRISP-T provides a Model Context Protocol (MCP) server that exposes all functionality as tools, resources, and prompts. This enables integration with AI assistants and other MCP-compatible clients.

Using the MCP Server

Configuring MCP Clients

Claude Desktop

Add to your Claude Desktop configuration file:

MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "crisp-t": {
      "command": "<python-path>crisp-mcp"
    }
  }
}

Using with Other MCP Clients

The server can be used with any MCP-compatible client. Configure your client to run the crisp-mcp command via stdio.

Available Tools

The MCP server provides tools for:

Corpus Management

  • load_corpus - Load corpus from folder or source
  • save_corpus - Save corpus to folder
  • add_document - Add new document
  • remove_document - Remove document by ID
  • get_document - Get document details
  • list_documents - List all document IDs
  • add_relationship - Link text keywords with numeric columns
  • get_relationships - Get all relationships
  • get_relationships_for_keyword - Query relationships by keyword

NLP/Text Analysis

  • assign_topics - Assign documents to topics (creates keyword labels)
  • extract_categories - Extract common concepts
  • generate_summary - Generate extractive summary
  • sentiment_analysis - VADER sentiment analysis

Semantic Search (requires chromadb)

  • semantic_search - Find documents similar to a query using semantic similarity
  • semantic_chunk_search - Find relevant chunks within a specific document (useful for coding/annotating documents)
  • export_metadata_df - Export ChromaDB metadata as DataFrame

DataFrame/CSV Operations

  • get_df_columns - Get DataFrame column names
  • get_df_row_count - Get number of rows
  • get_df_row - Get specific row by index

Machine Learning (requires crisp-t[ml])

  • kmeans_clustering - K-Means clustering
  • decision_tree_classification - Decision tree with feature importance
  • svm_classification - SVM classification
  • neural_network_classification - Neural network classification
  • regression_analysis - Linear/logistic regression with coefficients
  • pca_analysis - Principal Component Analysis
  • association_rules - Apriori association rules
  • knn_search - K-nearest neighbors search

Resources

The server exposes corpus documents as resources:

  • corpus://document/{id} - Access document text by ID

Prompts

  • analysis_workflow - Complete step-by-step analysis guide based on INSTRUCTIONS.md
  • triangulation_guide - Guide for triangulating qualitative and quantitative findings

Example MCP commands

Role of CRISP-T in research and practice

The workflow enables AI assistants to help conduct comprehensive analyses by combining text analytics, machine learning, and triangulation of qualitative-quantitative findings.

For example, in market research, a company collects:

  • Textual feedback from customer support interactions.
  • Numerical data on customer retention and sales performance. Using this framework, business analysts can investigate how recurring concerns in feedback correspond to measurable business outcomes.

Framework Documentation

For detailed information about available functions, metadata handling, and theoretical frameworks, see the comprehensive user instructions. For semantic search examples and best practices, see the Semantic Search Guide. Documentation (WIP) is also available here.

Data model

crisp-t

Citation

  • Released on 10/11/2025 for presentation at ICIS 2025 conference.
  • Paper coming soon. Cite this repository in the meantime:

Give us a star ⭐️

If you find this project useful, give us a star. It helps others discover the project.

Contact

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

crisp_t-0.4.0.tar.gz (710.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

crisp_t-0.4.0-py3-none-any.whl (88.7 kB view details)

Uploaded Python 3

File details

Details for the file crisp_t-0.4.0.tar.gz.

File metadata

  • Download URL: crisp_t-0.4.0.tar.gz
  • Upload date:
  • Size: 710.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for crisp_t-0.4.0.tar.gz
Algorithm Hash digest
SHA256 0a3c1e0c0a99139e74c6f6660fc080a652bdccb84404f57548a6e560f20edb68
MD5 368ca39a61f4f7a0d03e17ca09aae92a
BLAKE2b-256 1d06b6d2c979db0f71801aeed20dad87a9f21c160c3e4f2a8d49ba25c1f56ee9

See more details on using hashes here.

File details

Details for the file crisp_t-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: crisp_t-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 88.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for crisp_t-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b93449c2648cce5c156d1bba89704a42c77b4706a73227d2afd9c4358d9a939c
MD5 7361dc7d86b2137ad59255223d14cea4
BLAKE2b-256 362fe6eecfae1af28c7da33e6b0fa731f0307d1ca6469f816b9c1891db592338

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page