Spaces:
Build error
Build error
File size: 31,211 Bytes
ed852a2 01be763 e5613af 782d38d eeb6964 bc938fb ed852a2 782d38d 369feea e5613af 782d38d eeb6964 369feea 782d38d eeb6964 ed852a2 782d38d 4046ae3 369feea 4046ae3 eeb6964 782d38d e5613af eeb6964 ed852a2 eeb6964 ed852a2 4046ae3 ed852a2 42bab1b ed852a2 42bab1b ed852a2 42bab1b ed852a2 eeb6964 ed852a2 eeb6964 ed852a2 eeb6964 ed852a2 eeb6964 ed852a2 eeb6964 ed852a2 eeb6964 ed852a2 eeb6964 ed852a2 eeb6964 ed852a2 eeb6964 ed852a2 eeb6964 ed852a2 eeb6964 ed852a2 eeb6964 ed852a2 eeb6964 ed852a2 eeb6964 ed852a2 eeb6964 ed852a2 eeb6964 fef09cf ed852a2 eeb6964 fef09cf eeb6964 b26b3e3 ed852a2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 | import streamlit as st
import pandas as pd
import numpy as np
import plotly.express as px
import plotly.graph_objects as go
from ydata_profiling import ProfileReport
from streamlit_pandas_profiling import st_profile_report
import os
from dotenv import load_dotenv
from groq import Groq
from langchain_community.vectorstores import FAISS
from langchain_community.document_loaders import TextLoader
from langchain.text_splitter import RecursiveCharacterTextSplitter
from langchain.embeddings import HuggingFaceEmbeddings
import re
from scipy import stats
from sklearn.preprocessing import StandardScaler, LabelEncoder, OneHotEncoder
import tempfile
# Set page config as the first Streamlit command
st.set_page_config(page_title="Data-Vision Pro", layout="wide")
# Load environment variables
load_dotenv()
# Initialize Groq client
client = Groq(api_key=os.getenv("GROQ_API_KEY"))
# Initialize HuggingFace embeddings for FAISS
embeddings = HuggingFaceEmbeddings(model_name="sentence-transformers/all-MiniLM-L6-v2")
# Custom CSS with Modernized Silver, Blue, and Gold Theme + Responsiveness
st.markdown("""
<style>
:root {
--silver-light: #D8D8D8;
--silver-dark: #B8B8B8;
--blue: #5C89BC;
--blue-dark: #4E73A0;
--blue-light: #6EA8E0;
--gold: #A87E01;
--text-color: #333333;
--shadow-color: rgba(0,0,0,0.1);
--shadow-color-stronger: rgba(0,0,0,0.2);
}
.stApp {
background: linear-gradient(135deg, var(--silver-light) 0%, var(--silver-dark) 100%);
font-family: 'Inter', sans-serif;
max-width: 900px;
margin: 0 auto;
padding: 10px;
transition: all 0.3s ease;
}
.header {
background: linear-gradient(90deg, var(--blue) 80%, var(--blue-dark) 100%);
color: white;
padding: 20px;
border-radius: 16px 16px 0 0;
box-shadow: 0 4px 12px var(--shadow-color);
text-align: center;
transition: transform 0.2s ease;
}
.header:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px var(--shadow-color-stronger);
}
.header-title {
font-size: 1.5rem;
font-weight: 700;
margin: 0;
}
.header-subtitle {
font-size: 0.9rem;
margin-top: 8px;
opacity: 0.9;
}
.sidebar .sidebar-content {
background-color: white;
border-radius: 16px;
box-shadow: 0 6px 16px var(--shadow-color);
padding: 20px;
transition: box-shadow 0.3s ease;
}
.sidebar .sidebar-content:hover {
box-shadow: 0 8px 20px var(--shadow-color-stronger);
}
.chat-container {
background-color: white;
border-radius: 16px;
box-shadow: 0 6px 16px var(--shadow-color);
padding: 20px;
margin-top: 25px;
transition: box-shadow 0.3s ease;
}
.chat-container:hover {
box-shadow: 0 8px 20px var(--shadow-color-stronger);
}
.user-message {
background: linear-gradient(45deg, var(--blue), var(--blue-light));
color: white;
border-radius: 20px 20px 6px 20px;
padding: 14px 18px;
margin-left: auto;
max-width: 80%;
margin-bottom: 12px;
box-shadow: 0 2px 8px var(--blue-dark);
transition: transform 0.2s ease;
}
.user-message:hover {
transform: scale(1.02);
}
.bot-message {
background-color: #F0F0F0;
color: var(--text-color);
border-radius: 20px 20px 20px 6px;
padding: 14px 18px;
margin-right: auto;
max-width: 80%;
margin-bottom: 12px;
box-shadow: 0 2px 8px var(--shadow-color);
transition: transform 0.2s ease;
}
.bot-message:hover {
transform: scale(1.02);
}
.footer {
text-align: center;
margin-top: 20px;
color: var(--text-color);
font-size: 0.8rem;
}
.tech-badge {
display: inline-block;
background-color: #E6ECEF;
color: var(--blue);
padding: 4px 8px;
border-radius: 12px;
font-size: 0.7rem;
margin: 0 4px;
}
h2 {
color: var(--blue);
border-bottom: 2px solid var(--gold);
padding-bottom: 5px;
font-size: 1.5rem;
font-weight: 700;
}
.stButton > button {
background-color: var(--gold);
color: white;
border-radius: 12px;
padding: 10px 20px;
border: none;
box-shadow: 0 4px 12px var(--shadow-color);
font-weight: 600;
transition: all 0.3s ease;
}
.stButton > button:hover {
background-color: #8C6B01;
transform: translateY(-2px);
box-shadow: 0 6px 16px var(--shadow-color-stronger);
}
@media (max-width: 768px) {
.header-title {
font-size: 1.2rem;
}
.header-subtitle {
font-size: 0.8rem;
}
.chat-container, .sidebar .sidebar-content {
padding: 10px;
}
.stApp {
padding: 5px;
}
h2 {
font-size: 1.2rem;
}
}
</style>
""", unsafe_allow_html=True)
# Helper Functions
def enhance_section_title(title):
st.markdown(f"<h2 style='border-bottom: 2px solid var(--gold); padding-bottom: 5px; color: var(--blue);'>{title}</h2>", unsafe_allow_html=True)
def update_cleaned_data(df):
st.session_state.cleaned_data = df
if 'data_versions' not in st.session_state:
st.session_state.data_versions = [st.session_state.raw_data.copy()]
st.session_state.data_versions.append(df.copy())
st.session_state.dataset_text = convert_df_to_text(df)
st.success("โ
Action completed successfully!")
st.rerun()
def convert_df_to_text(df):
text = f"Dataset Summary: {df.shape[0]} rows, {df.shape[1]} columns\n"
text += f"Missing Values: {df.isna().sum().sum()}\n"
text += "Columns:\n"
for col in df.columns:
text += f"- {col} ({df[col].dtype}): "
if pd.api.types.is_numeric_dtype(df[col]):
text += f"Mean={df[col].mean():.2f}, Min={df[col].min()}, Max={df[col].max()}"
else:
text += f"Unique={df[col].nunique()}, Top={df[col].mode()[0] if not df[col].mode().empty else 'N/A'}"
text += f", Missing={df[col].isna().sum()}\n"
return text
def create_vector_store(df_text):
with tempfile.NamedTemporaryFile(mode='w', suffix='.txt', delete=False) as temp_file:
temp_file.write(df_text)
temp_path = temp_file.name
loader = TextLoader(temp_path)
documents = loader.load()
text_splitter = RecursiveCharacterTextSplitter(chunk_size=500, chunk_overlap=100)
texts = text_splitter.split_documents(documents)
vector_store = FAISS.from_documents(texts, embeddings)
os.unlink(temp_path)
return vector_store
def update_vector_store_with_plot(plot_text, existing_vector_store):
with tempfile.NamedTemporaryFile(mode='w', suffix='.txt', delete=False) as temp_file:
temp_file.write(plot_text)
temp_path = temp_file.name
loader = TextLoader(temp_path)
documents = loader.load()
text_splitter = RecursiveCharacterTextSplitter(chunk_size=500, chunk_overlap=100)
texts = text_splitter.split_documents(documents)
if existing_vector_store:
existing_vector_store.add_documents(texts)
else:
existing_vector_store = FAISS.from_documents(texts, embeddings)
os.unlink(temp_path)
return existing_vector_store
def extract_plot_data(plot_info, df):
plot_type = plot_info["type"]
x_col = plot_info["x"]
y_col = plot_info["y"] if "y" in plot_info else None
data = pd.read_json(plot_info["data"])
plot_text = f"Plot Type: {plot_type}\n"
plot_text += f"X-Axis: {x_col}\n"
if y_col:
plot_text += f"Y-Axis: {y_col}\n"
if plot_type == "Scatter Plot" and y_col:
correlation = data[x_col].corr(data[y_col])
slope, intercept, r_value, p_value, std_err = stats.linregress(data[x_col].dropna(), data[y_col].dropna())
plot_text += f"Correlation: {correlation:.2f}\n"
plot_text += f"Linear Regression: Slope={slope:.2f}, Intercept={intercept:.2f}, Rยฒ={r_value**2:.2f}, p-value={p_value:.4f}\n"
plot_text += f"X Stats: Mean={data[x_col].mean():.2f}, Std={data[x_col].std():.2f}, Min={data[x_col].min():.2f}, Max={data[x_col].max():.2f}\n"
plot_text += f"Y Stats: Mean={data[y_col].mean():.2f}, Std={data[y_col].std():.2f}, Min={data[y_col].min():.2f}, Max={data[y_col].max():.2f}\n"
elif plot_type == "Histogram":
plot_text += f"Stats: Mean={data[x_col].mean():.2f}, Median={data[x_col].median():.2f}, Std={data[x_col].std():.2f}\n"
plot_text += f"Skewness: {data[x_col].skew():.2f}\n"
plot_text += f"Range: [{data[x_col].min():.2f}, {data[x_col].max():.2f}]\n"
elif plot_type == "Box Plot" and y_col:
q1, q3 = data[y_col].quantile(0.25), data[y_col].quantile(0.75)
iqr = q3 - q1
plot_text += f"Y Stats: Median={data[y_col].median():.2f}, Q1={q1:.2f}, Q3={q3:.2f}, IQR={iqr:.2f}\n"
plot_text += f"Outliers: {len(data[y_col][(data[y_col] < q1 - 1.5 * iqr) | (data[y_col] > q3 + 1.5 * iqr)])} potential outliers\n"
elif plot_type == "Line Chart" and y_col:
plot_text += f"Y Stats: Mean={data[y_col].mean():.2f}, Std={data[y_col].std():.2f}, Trend={'increasing' if data[y_col].iloc[-1] > data[y_col].iloc[0] else 'decreasing'}\n"
elif plot_type == "Bar Chart":
plot_text += f"Counts: {data[x_col].value_counts().to_dict()}\n"
elif plot_type == "Correlation Matrix":
corr = data.corr()
plot_text += "Correlation Matrix:\n"
for col1 in corr.columns:
for col2 in corr.index:
if col1 < col2:
plot_text += f"{col1} vs {col2}: {corr.loc[col2, col1]:.2f}\n"
return plot_text
def get_chatbot_response(user_input, app_mode, vector_store=None, model="llama3-70b-8192"):
system_prompt = (
"You are an AI assistant in Data-Vision Pro, a data analysis app with RAG capabilities. "
f"The user is on the '{app_mode}' page:\n"
"- **Data Upload**: Upload CSV/XLSX files, view stats, or generate reports.\n"
"- **Data Cleaning**: Clean data (e.g., handle missing values, encode variables).\n"
"- **EDA**: Visualize data (e.g., scatter plots, histograms) and analyze plots.\n"
"When analyzing plots, provide detailed insights based on numerical data extracted from them."
)
context = ""
if vector_store:
docs = vector_store.similarity_search(user_input, k=3)
if docs:
context = "\n\nDataset and Plot Context:\n" + "\n".join([f"- {doc.page_content}" for doc in docs])
system_prompt += f"Use this dataset and plot context to augment your response:\n{context}"
else:
system_prompt += "No dataset or plot data is loaded. Assist based on app functionality."
try:
response = client.chat.completions.create(
model=model,
messages=[
{"role": "system", "content": system_prompt},
{"role": "user", "content": user_input}
],
temperature=0.7,
max_tokens=1024
)
return response.choices[0].message.content
except Exception as e:
return f"Error: {str(e)}"
# Command Functions
def drop_columns(columns):
if 'cleaned_data' in st.session_state:
df = st.session_state.cleaned_data.copy()
columns_to_drop = [col.strip() for col in columns.split(',')]
valid_columns = [col for col in columns_to_drop if col in df.columns]
if valid_columns:
df.drop(valid_columns, axis=1, inplace=True)
update_cleaned_data(df)
return f"Dropped columns: {', '.join(valid_columns)}"
else:
return "No valid columns found to drop."
return "No dataset loaded."
def generate_scatter_plot(params):
df = st.session_state.cleaned_data
match = re.search(r"([\w\s]+)\s+vs\s+([\w\s]+)", params)
if match and len(match.groups()) >= 2:
x_axis, y_axis = match.group(1).strip(), match.group(2).strip()
if x_axis in df.columns and y_axis in df.columns:
fig = px.scatter(df, x=x_axis, y=y_axis, title=f'Scatter Plot of {x_axis} vs {y_axis}')
st.plotly_chart(fig)
st.session_state.last_plot = {"type": "Scatter Plot", "x": x_axis, "y": y_axis, "data": df[[x_axis, y_axis]].to_json()}
return f"Generated scatter plot of {x_axis} vs {y_axis}"
return "Invalid columns for scatter plot."
def generate_histogram(params):
df = st.session_state.cleaned_data
x_axis = params.strip()
if x_axis in df.columns:
fig = px.histogram(df, x=x_axis, title=f'Histogram of {x_axis}')
st.plotly_chart(fig)
st.session_state.last_plot = {"type": "Histogram", "x": x_axis, "data": df[[x_axis]].to_json()}
return f"Generated histogram of {x_axis}"
return "Invalid column for histogram."
def analyze_plot():
if "last_plot" not in st.session_state:
return "No plot available to analyze."
plot_info = st.session_state.last_plot
df = pd.read_json(plot_info["data"])
plot_text = extract_plot_data(plot_info, df)
return f"Analysis of the last plot:\n{plot_text}"
def parse_command(command):
command = command.lower().strip()
if "drop columns" in command or "drop column" in command:
columns = command.replace("drop columns", "").replace("drop column", "").strip()
return drop_columns, columns
elif "show a scatter plot" in command or "scatter plot of" in command:
params = command.replace("show a scatter plot of", "").replace("scatter plot of", "").strip()
return generate_scatter_plot, params
elif "show a histogram" in command or "histogram of" in command:
params = command.replace("show a histogram of", "").replace("histogram of", "").strip()
return generate_histogram, params
elif "analyze plot" in command:
return lambda x: analyze_plot(), None
return None, command
# Dataset Preview Function
def display_dataset_preview():
if 'cleaned_data' in st.session_state:
st.subheader("Current Dataset Preview")
st.dataframe(st.session_state.cleaned_data.head(10), use_container_width=True)
st.markdown("---")
# Main App
def main():
# Header
st.markdown("""
<div class="header">
<h1 class="header-title">Data-Vision Pro</h1>
<div class="header-subtitle">Advanced Data Analysis with Groq Inference</div>
</div>
""", unsafe_allow_html=True)
# Sidebar Navigation
with st.sidebar:
st.markdown("### ๐ฎ Data-Vision Pro")
st.markdown("Your AI-powered data analysis suite with RAG.")
st.markdown("---")
app_mode = st.selectbox(
"Navigation",
["Data Upload", "Data Cleaning", "EDA"],
format_func=lambda x: f"๐ {x}"
)
model = st.selectbox(
"Select Groq Model",
["llama3-70b-8192", "llama3-8b-8192", "mixtral-8x7b-32768", "gemma-7b-it"],
index=0
)
if app_mode == "Data Upload":
st.info("โฌ๏ธ Upload your CSV or XLSX dataset to begin.")
elif app_mode == "Data Cleaning":
st.info("๐งน Clean and preprocess your data.")
elif app_mode == "EDA":
st.info("๐ Explore your data visually.")
if 'cleaned_data' in st.session_state:
csv = st.session_state.cleaned_data.to_csv(index=False)
st.download_button(
label="Download Cleaned Data",
data=csv,
file_name='cleaned_data.csv',
mime='text/csv',
)
st.markdown("---")
st.markdown("Built with <span class='tech-badge'>Streamlit</span> + <span class='tech-badge'>Groq</span>", unsafe_allow_html=True)
# Initialize Session State
if 'vector_store' not in st.session_state:
st.session_state.vector_store = None
if 'chat_history' not in st.session_state:
st.session_state.chat_history = []
# Display Dataset Preview
display_dataset_preview()
# App Pages
if app_mode == "Data Upload":
st.header("๐ค Data Upload & Profiling")
uploaded_file = st.file_uploader("Choose a file", type=["csv", "xlsx"], key="file_uploader")
if uploaded_file:
st.session_state.pop('raw_data', None)
st.session_state.pop('cleaned_data', None)
st.session_state.pop('data_versions', None)
try:
if uploaded_file.name.endswith('.csv'):
df = pd.read_csv(uploaded_file)
else:
df = pd.read_excel(uploaded_file)
if df.empty:
st.error("Uploaded file is empty.")
st.stop()
st.session_state.raw_data = df
st.session_state.cleaned_data = df.copy()
st.session_state.dataset_text = convert_df_to_text(df)
st.session_state.vector_store = create_vector_store(st.session_state.dataset_text)
if 'data_versions' not in st.session_state:
st.session_state.data_versions = [df.copy()]
col1, col2, col3 = st.columns(3)
with col1: st.metric("Rows", df.shape[0])
with col2: st.metric("Columns", df.shape[1])
with col3: st.metric("Missing Values", df.isna().sum().sum())
if st.checkbox("Show Data Preview"):
st.dataframe(df.head(10), use_container_width=True)
if st.button("Generate Full Profile Report"):
with st.spinner("Generating report..."):
pr = ProfileReport(df, explorative=True)
st_profile_report(pr)
st.success("โ
Data loaded successfully!")
except Exception as e:
st.error(f"An error occurred: {str(e)}")
elif app_mode == "Data Cleaning":
st.header("๐งน Smart Data Cleaning")
if 'raw_data' not in st.session_state:
st.warning("Please upload data first in the Data Upload section.")
st.stop()
if 'cleaned_data' in st.session_state:
df = st.session_state.cleaned_data.copy()
else:
st.session_state.cleaned_data = st.session_state.raw_data.copy()
df = st.session_state.cleaned_data.copy()
enhance_section_title("๐ Data Health Dashboard")
with st.expander("Explore Data Health Metrics", expanded=True):
col1, col2, col3 = st.columns(3)
with col1: st.metric("Columns", len(df.columns))
with col2: st.metric("Rows", len(df))
with col3: st.metric("Missing Values", df.isna().sum().sum())
if st.button("Generate Detailed Health Report"):
with st.spinner("Generating report..."):
profile = ProfileReport(df, minimal=True)
st_profile_report(profile)
if 'data_versions' in st.session_state and len(st.session_state.data_versions) > 1:
if st.button("Undo Last Action"):
st.session_state.data_versions.pop()
st.session_state.cleaned_data = st.session_state.data_versions[-1].copy()
st.session_state.dataset_text = convert_df_to_text(st.session_state.cleaned_data)
st.session_state.vector_store = create_vector_store(st.session_state.dataset_text)
st.rerun()
with st.expander("๐ ๏ธ Data Cleaning Operations", expanded=True):
enhance_section_title("๐ Missing Values Treatment")
missing_cols = df.columns[df.isna().any()].tolist()
if missing_cols:
cols = st.multiselect("Select columns with missing values", missing_cols)
method = st.selectbox("Choose imputation method", [
"Drop Missing Values", "Fill with Mean/Median", "Fill with Custom Value", "Forward Fill", "Backward Fill"
])
if method == "Fill with Custom Value":
custom_val = st.text_input("Enter custom value:")
if st.button("Apply Missing Value Treatment"):
new_df = df.copy()
if method == "Drop Missing Values":
new_df = new_df.dropna(subset=cols)
elif method == "Fill with Mean/Median":
for col in cols:
if pd.api.types.is_numeric_dtype(new_df[col]):
new_df[col] = new_df[col].fillna(new_df[col].median())
else:
new_df[col] = new_df[col].fillna(new_df[col].mode()[0])
elif method == "Fill with Custom Value" and custom_val:
new_df[cols] = new_df[cols].fillna(custom_val)
elif method == "Forward Fill":
new_df[cols] = new_df[cols].ffill()
elif method == "Backward Fill":
new_df[cols] = new_df[cols].bfill()
update_cleaned_data(new_df)
else:
st.success("โจ No missing values detected!")
enhance_section_title("๐ Data Type Conversion")
col_to_convert = st.selectbox("Select column to convert", df.columns)
new_type = st.selectbox("Select new data type", ["String", "Integer", "Float", "Boolean", "Datetime"])
if new_type == "Datetime":
date_format = st.text_input("Enter date format (e.g., %Y-%m-%d):", "%Y-%m-%d")
if st.button("Convert Data Type"):
new_df = df.copy()
if new_type == "String":
new_df[col_to_convert] = new_df[col_to_convert].astype(str)
elif new_type == "Integer":
new_df[col_to_convert] = pd.to_numeric(new_df[col_to_convert], errors='coerce').astype('Int64')
elif new_type == "Float":
new_df[col_to_convert] = pd.to_numeric(new_df[col_to_convert], errors='coerce')
elif new_type == "Boolean":
new_df[col_to_convert] = new_df[col_to_convert].astype(bool)
elif new_type == "Datetime":
new_df[col_to_convert] = pd.to_datetime(new_df[col_to_convert], format=date_format, errors='coerce')
update_cleaned_data(new_df)
enhance_section_title("๐๏ธ Drop Columns")
columns_to_drop = st.multiselect("Select columns to remove", df.columns)
if columns_to_drop and st.button("Confirm Column Removal"):
new_df = df.copy()
new_df = new_df.drop(columns=columns_to_drop)
update_cleaned_data(new_df)
enhance_section_title("๐ข Encoding Options")
encoding_method = st.radio("Choose encoding method", ("Label Encoding", "One-Hot Encoding"))
data_to_encode = st.multiselect("Select columns to encode", df.select_dtypes(include='object').columns)
if data_to_encode and st.button("Apply Encoding"):
new_df = df.copy()
if encoding_method == "Label Encoding":
for col in data_to_encode:
le = LabelEncoder()
new_df[col] = le.fit_transform(new_df[col].astype(str))
elif encoding_method == "One-Hot Encoding":
new_df = pd.get_dummies(new_df, columns=data_to_encode, drop_first=True, dtype=int)
update_cleaned_data(new_df)
enhance_section_title("๐ StandardScaler")
scale_cols = st.multiselect("Select numerical columns to scale", df.select_dtypes(include=np.number).columns)
if scale_cols and st.button("Apply StandardScaler"):
new_df = df.copy()
scaler = StandardScaler()
new_df[scale_cols] = scaler.fit_transform(new_df[scale_cols])
update_cleaned_data(new_df)
elif app_mode == "EDA":
st.header("๐ Interactive Data Explorer")
if 'cleaned_data' not in st.session_state:
st.warning("Please upload and clean data first.")
st.stop()
df = st.session_state.cleaned_data.copy()
enhance_section_title("Dataset Overview")
with st.container():
col1, col2, col3, col4 = st.columns(4)
col1.metric("Total Rows", df.shape[0])
col2.metric("Total Columns", df.shape[1])
missing_percentage = df.isna().sum().sum() / df.size * 100
col3.metric("Missing Values", f"{df.isna().sum().sum()} ({missing_percentage:.1f}%)")
col4.metric("Duplicates", df.duplicated().sum())
tab1, tab2, tab3 = st.tabs(["Quick Preview", "Column Types", "Missing Matrix"])
with tab1:
st.write("First few rows of the dataset:")
st.dataframe(df.head(), use_container_width=True)
with tab2:
st.write("Column Data Types:")
type_counts = df.dtypes.value_counts().reset_index()
type_counts.columns = ['Type', 'Count']
st.dataframe(type_counts, use_container_width=True)
with tab3:
st.write("Missing Values Matrix:")
fig_missing = px.imshow(df.isna(), color_continuous_scale=['#e0e0e0', '#66c2a5'])
fig_missing.update_layout(coloraxis_colorscale=[[0, 'lightgrey'], [1, '#FF4B4B']])
st.plotly_chart(fig_missing, use_container_width=True)
enhance_section_title("Interactive Visualization Builder")
with st.container():
col1, col2 = st.columns([1, 3])
with col1:
plot_type = st.selectbox("Choose visualization type", [
"Scatter Plot", "Histogram", "Box Plot", "Line Chart", "Bar Chart", "Correlation Matrix"
])
x_axis = st.selectbox("X-axis", df.columns) if plot_type != "Correlation Matrix" else None
y_axis = st.selectbox("Y-axis", df.columns) if plot_type in ["Scatter Plot", "Box Plot", "Line Chart"] else None
color_by = st.selectbox("Color encoding", ["None"] + df.columns.tolist(), format_func=lambda x: "No color" if x == "None" else x) if plot_type != "Correlation Matrix" else None
with col2:
try:
fig = None
if plot_type == "Scatter Plot" and x_axis and y_axis:
fig = px.scatter(df, x=x_axis, y=y_axis, color=color_by if color_by != "None" else None, title=f'Scatter Plot of {x_axis} vs {y_axis}')
elif plot_type == "Histogram" and x_axis:
fig = px.histogram(df, x=x_axis, color=color_by if color_by != "None" else None, nbins=30, title=f'Histogram of {x_axis}')
elif plot_type == "Box Plot" and x_axis and y_axis:
fig = px.box(df, x=x_axis, y=y_axis, color=color_by if color_by != "None" else None, title=f'Box Plot of {x_axis} vs {y_axis}')
elif plot_type == "Line Chart" and x_axis and y_axis:
fig = px.line(df, x=x_axis, y=y_axis, color=color_by if color_by != "None" else None, title=f'Line Chart of {x_axis} vs {y_axis}')
elif plot_type == "Bar Chart" and x_axis:
fig = px.bar(df, x=x_axis, color=color_by if color_by != "None" else None, title=f'Bar Chart of {x_axis}')
elif plot_type == "Correlation Matrix":
numeric_df = df.select_dtypes(include=np.number)
if len(numeric_df.columns) > 1:
corr = numeric_df.corr()
fig = px.imshow(corr, text_auto=True, color_continuous_scale='RdBu_r', zmin=-1, zmax=1, title='Correlation Matrix')
if fig:
fig.update_layout(template="plotly_white")
st.plotly_chart(fig, use_container_width=True)
st.session_state.last_plot = {
"type": plot_type,
"x": x_axis,
"y": y_axis,
"data": df[[x_axis, y_axis]].to_json() if y_axis else df[[x_axis]].to_json()
}
plot_text = extract_plot_data(st.session_state.last_plot, df)
st.session_state.vector_store = update_vector_store_with_plot(plot_text, st.session_state.vector_store)
with st.expander("Extracted Plot Data"):
st.text(plot_text)
else:
st.error("Please provide required inputs for the selected plot type.")
except Exception as e:
st.error(f"Couldn't create visualization: {str(e)}")
# Chatbot Section
st.markdown("---")
st.markdown('<div class="chat-container">', unsafe_allow_html=True)
st.subheader("๐ฌ AI Chatbot Assistant (RAG Enabled)")
st.info("Ask about your data or app features! Try: 'drop columns X, Y', 'scatter plot of X vs Y', 'analyze plot'")
for message in st.session_state.chat_history:
with st.chat_message(message["role"]):
st.markdown(f'<div class="{message["role"]}-message">{message["content"]}</div>', unsafe_allow_html=True)
user_input = st.chat_input("Ask me anything...")
if user_input:
st.session_state.chat_history.append({"role": "user", "content": user_input})
with st.chat_message("user"):
st.markdown(f'<div class="user-message">{user_input}</div>', unsafe_allow_html=True)
with st.spinner("Processing..."):
func, param = parse_command(user_input)
if func:
response = func(param) if param else func(None)
else:
response = get_chatbot_response(user_input, app_mode, st.session_state.vector_store, model)
st.session_state.chat_history.append({"role": "assistant", "content": response})
with st.chat_message("assistant"):
st.markdown(f'<div class="bot-message">{response}</div>', unsafe_allow_html=True)
st.markdown('</div>', unsafe_allow_html=True)
# Footer
st.markdown("""
<div class="footer">
<div>Built with <span class="tech-badge">Streamlit</span> + <span class="tech-badge">Groq</span> + <span class="tech-badge">LangChain</span> + <span class="tech-badge">FAISS</span></div>
<div style="margin-top: 8px;">Fast inference for data insights</div>
</div>
""", unsafe_allow_html=True)
if __name__ == "__main__":
main() |