Spaces:
Sleeping
Sleeping
File size: 5,564 Bytes
b89c575 8bfeb0b b89c575 90f6d44 b89c575 90f6d44 b89c575 e023d29 b89c575 e023d29 b89c575 90f6d44 b89c575 e023d29 b89c575 e023d29 b89c575 | 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 | """
Gallery data configuration for ChaRtBot
Add new gallery items by appending to the GALLERY_DATA list
"""
GALLERY_DATA = [
{
"image": "/assets/gallery/1_image.png",
"prompt": "Create an Animated Choropleth map of the USA displaying state-wise percentage of votes (in a blue color scale) for DEMOCRAT over the years.",
"csv_link": "/assets/gallery/datasets/1976-2020_president.csv",
"badge": "Animated choropleth"
},
{
"image": "/assets/gallery/2_image.png",
"prompt": "Create a Manhattan-style plot where purchases are grouped along the x-axis by Category, with each point representing an Order_Value. Alternate colours by Category so each group forms its own block, highlighting large spending spikes.",
"csv_link": "/assets/gallery/datasets/amazon-purchases-2021-sample-5k.csv",
"badge": "Manhattan"
},
{
"image": "/assets/gallery/3_image.png",
"prompt": "Create a sunburst chart showing the launch ecosystem hierarchy for the year 2005 Use Company as the first level, Rocket as the second level, Mission as the third level, and MissionStatus as the outer level.",
"csv_link": "/assets/gallery/datasets/space_missions_data.csv",
"badge": "Hierarchical"
},
{
"image": "/assets/gallery/4_image.png",
"prompt": "Create a Sankey diagram where the flow goes from Team → Match Result where: - Source nodes are team_name - Target nodes are result Aggregate the number of matches for each team–opponent–result flow. For readability, limit the visualization to teams with the highest total match counts.",
"csv_link": "/assets/gallery/datasets/ewf_appearances.csv",
"badge": "Flow"
},
{
"image": "/assets/gallery/5_image.png",
"prompt": "Create a calendar-like circular gold price chart for the year 2020, wherein going clock-wise on the chart will move from Jan -> Dec. Each month shall have a number of bars equal to the number of days in that month. The length of each bar will represent the price of gold on that day. Use a mustard colour for all the bars.",
"csv_link": "/assets/gallery/datasets/gold prices.csv",
"badge": "Circular"
},
{
"image": "/assets/gallery/6_image.png",
"prompt": "Depict the sum of the purchase amount per day of the week using a heatmap. The X-axis should represent the months, labeled with month names, and the Y-axis should represent the days of the week. Use colour to depict the purchase amounts, with the X-axis ordered chronologically by both days and months.",
"csv_link": "/assets/gallery/datasets/amazon-purchases-2021-sample-5k.csv",
"badge": "Heatmap"
},
{
"image": "/assets/gallery/7_image.png",
"prompt": "Create a total of four visualizations, (2 rows, 2 columns) which display: 1. Top 5 Categories by Quantity 2. Top 5 Categories by Price 3. Average Purchase Price per State (USA choropleth map) 4. State-wise Quantity Distribution (USA choropleth map)",
"csv_link": "/assets/gallery/datasets/amazon-purchases-2021-sample-5k.csv",
"badge": "Subplots"
},
{
"image": "/assets/gallery/8_image.png",
"prompt": "Create a candle-stick chart of gold prices in the year 2020, add a column named 'Ticker' and make sure all the values in this column are 'Gold'.",
"csv_link": "/assets/gallery/datasets/gold prices.csv",
"badge": "Financial"
},
{
"image": "/assets/gallery/9_image.png",
"prompt": "Create a bubble chart that visualizes rocket launch prices over the years Use Date on the x-axis and Price on the y-axis. Size each bubble by Price to reflect the relative cost of each mission. colour the bubbles by Company. Ensure bubbles are semi-transparent to avoid overlap issues. Add detailed hover tooltips showing Company, Rocket, Mission, Location, MissionStatus, and Price.",
"csv_link": "/assets/gallery/datasets/space_missions_data.csv",
"badge": "Bubble"
},
{
"image": "/assets/gallery/10_image.png",
"prompt": "Create an animated bubble chart where Categories are represented as bubbles that grow, shrink, and gently reposition over time based on total Order_Value, revealing how category importance changes month by month.",
"csv_link": "/assets/gallery/datasets/amazon-purchases-2021-sample-5k.csv",
"badge": "Animated bubbles"
},
{
"image": "/assets/gallery/11_image.png",
"prompt": "Create a calendar-like circular gold price chart for the year 2020, wherein going clock-wise on the chart will move from Jan -> Dec. Each month shall have a number of bars equal to the number of days in that month. Colour of each bar: Based on the price of gold on that day. Length of each bar: Equal to the day of the month.",
"csv_link": "/assets/gallery/datasets/gold prices.csv",
"badge": "Circular"
},
{
"image": "/assets/gallery/12_image.png",
"prompt": "Create a dumbbell chart showing the teams' scores over the years. Each team shall have only two data points in their dumbbells, the first point and the last. Each point must be a sum of goals scored by the team in the specific season. Use blue colour for the first point and red for the second point in the dumbbell. In the tooltips show the following information: - Team name - Score - Season - Year",
"csv_link": "/assets/gallery/datasets/ewf_appearances.csv",
"badge": "Dumbbell"
}
] |