Spaces:
Sleeping
Sleeping
File size: 372 Bytes
182afc5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# src/ui/components/analysis_view.py
import streamlit as st
import plotly.graph_objects as go
from typing import Dict
class AnalysisView:
"""Component for displaying interaction analysis"""
def __init__(self, data: Dict):
self.data = data
def show(self):
"""Display analysis results"""
# Display components here
pass
|