realigns's picture
Upload USAGE.md with huggingface_hub
6772e76 verified
|
Raw
History Blame Contribute Delete
766 Bytes

Usage Guide

This guide shows how developers can use the Realigns Business Open Data Pack for analytics, dashboards, RAG workflows, and AI training examples.

Load CSV with pandas

import pandas as pd

df = pd.read_csv("data/synthetic_sales_crm/synthetic_sales_crm_pipeline.csv")
print(df.head())
print(df.columns)
cd ~/Downloads/realigns-business-open-data-pack

python3 - <<'PY'
from pathlib import Path

content = r'''# Usage Guide

This guide shows how developers can use the Realigns Business Open Data Pack for analytics, dashboards, RAG workflows, and AI training examples.

## Load CSV with pandas

```python
import pandas as pd

df = pd.read_csv("data/synthetic_sales_crm/synthetic_sales_crm_pipeline.csv")
print(df.head())
print(df.columns)