Untitled workspace
  • AI Chat
  • Code
  • Report
  • Spinner

    Here with Yuliia

    Let's analyze ticket sales!

    Unknown integration
    DataFrameavailable as
    yuliia
    variable
    -- Select the details and location of different events
    SELECT DATE_PART('month', saletime) AS month, COUNT(*) AS cnt
    FROM public.sales
    GROUP BY 1
    ORDER BY 1
    This query is taking long to finish...Consider adding a LIMIT clause or switching to Query mode to preview the result.
    import plotly.express as px
    
    fig = px.bar(yuliia, x="month", y="cnt")
    fig.show()