Loading...
Loading...
Use this for exploratory data analysis (EDA), generating visualizations, finding trends, and deriving insights from datasets using Python (Pandas/Seaborn/Plotly) or SQL.
npx skill4agent add k1lgor/virtual-company data-analystsales.csvimport plotly.express as px
df = pd.read_csv('sales.csv')
fig = px.line(df, x='month', y='sales', title='Monthly Sales Trend')
fig.show()import seaborn as sns
sns.boxplot(data=df, x='churned', y='age')