File size: 21,216 Bytes
fe04344 5bf0de5 fe04344 5bf0de5 fe04344 5bf0de5 fe04344 5bf0de5 fe04344 5bf0de5 fe04344 5bf0de5 fe04344 5bf0de5 fe04344 5bf0de5 fe04344 5bf0de5 fe04344 5bf0de5 fe04344 5bf0de5 fe04344 5bf0de5 fe04344 5bf0de5 fe04344 5bf0de5 fe04344 5bf0de5 fe04344 5bf0de5 fe04344 5bf0de5 fe04344 5bf0de5 fe04344 5bf0de5 fe04344 5bf0de5 fe04344 5bf0de5 |
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 |
{"prompt": "Create a basic line chart with default data settings:", "Markdown code": "<|{data}|chart|type='scatter'|mode='lines'|>"}
{"prompt": "Set up a bar chart with specific x and y axis column names:", "Markdown code": "<|{data}|chart|type='bar'|x='Category'|y='Value'|>"}
{"prompt": "Design a scatter plot chart with editable data and a custom title:", "Markdown code": "<|{data}|chart|type='scatter'|mode='markers'|editable=True|title='Scatter Plot'|>"}
{"prompt": "Implement a bubble chart with specific color settings and a hover text:", "Markdown code": "<|{data}|chart|type='bubble'|color='Group'|hover_text='Details'|>"}
{"prompt": "Create a pie chart with labels and values columns specified:", "Markdown code": "<|{data}|chart|type='pie'|labels='Category'|values='Value'|>"}
{"prompt": "Create a histogram with dynamic data and a specific class name:", "Markdown code": "<|{data}|chart|type='histogram'|class_name='taipy-chart'|>"}
{"prompt": "Set up a heatmap chart with editable properties and a custom layout:", "Markdown code": "<|{data}|chart|type='heatmap'|editable=True|layout={...}|>"}
{"prompt": "Design a candlestick chart for financial data, with high, low, open, and close values:", "Markdown code": "<|{data}|chart|type='candlestick'|high='High'|low='Low'|open='Open'|close='Close'|>"}
{"prompt": "Implement a radar chart with a specific orientation and marker settings:", "Markdown code": "<|{data}|chart|type='radar'|orientation='horizontal'|marker={...}|>"}
{"prompt": "Create a treemap chart with parent and text columns specified, and a custom hover text:", "Markdown code": "<|{data}|chart|type='treemap'|parents='Parent'|text='Label'|hover_text='Info'|>"}
{"prompt": "Create a scatter plot chart with editable data, a custom title, and specific x and y axis columns:", "Markdown code": "<|{data}|chart|type='scatter'|mode='markers'|editable=True|title='Scatter Plot'|x='X_Column'|y='Y_Column'|>"}
{"prompt": "Set up a bar chart with dynamic data rendering, a custom class name, and a specific layout:", "Markdown code": "<|{data}|chart|type='bar'|class_name='taipy-chart'|layout={...}|render=True|>"}
{"prompt": "Design a bubble chart with labels and values columns, and a hover text for detailed information:", "Markdown code": "<|{data}|chart|type='bubble'|labels='Category'|values='Value'|hover_text='Bubble Details'|>"}
{"prompt": "Implement a pie chart with editable properties, specific axis names, and a custom title:", "Markdown code": "<|{data}|chart|type='pie'|editable=True|labels='Category'|values='Value'|title='Pie Chart'|>"}
{"prompt": "Create a heatmap chart with dynamic data rendering, custom x and y axes, and a specific orientation:", "Markdown code": "<|{data}|chart|type='heatmap'|x='X_Axis'|y='Y_Axis'|orientation='horizontal'|render=True|>"}
{"prompt": "Create a candlestick chart for financial data, with high, low, open, and close values, and a custom layout:", "Markdown code": "<|{data}|chart|type='candlestick'|high='High'|low='Low'|open='Open'|close='Close'|layout={...}|>"}
{"prompt": "Set up a radar chart with editable properties, a specific marker setting, and a custom hover text:", "Markdown code": "<|{data}|chart|type='radar'|editable=True|marker={...}|hover_text='Radar Info'|>"}
{"prompt": "Design a treemap chart with parent and text columns, a specific title, and dynamic data rendering:", "Markdown code": "<|{data}|chart|type='treemap'|parents='Parent'|text='Label'|title='Treemap Chart'|render=True|>"}
{"prompt": "Implement a histogram with labels for specific points, a custom class name, and a hover text:", "Markdown code": "<|{data}|chart|type='histogram'|labels='Data Points'|class_name='taipy-chart'|hover_text='Histogram Details'|>"}
{"prompt": "Create a line chart with specific x and y axis columns, editable data, and a custom layout:", "Markdown code": "<|{data}|chart|type='scatter'|mode='lines'|x='X_Column'|y='Y_Column'|editable=True|layout={...}|>"}
{"prompt": "Create a line chart with data:", "Markdown code": "<|{data}|chart|type='scatter'|>"}
{"prompt": "Add a bar chart with x-axis labels:", "Markdown code": "<|{data}|chart|type='bar'|x='Category'|>"}
{"prompt": "Display a scatter plot with a custom title:", "Markdown code": "<|{data}|chart|type='scatter'|title='Scatter Plot'|>"}
{"prompt": "Show a bubble chart with color settings:", "Markdown code": "<|{data}|chart|type='bubble'|color='Group'|>"}
{"prompt": "Insert a pie chart with labels:", "Markdown code": "<|{data}|chart|type='pie'|labels='Category'|>"}
{"prompt": "Create a histogram with a class name:", "Markdown code": "<|{data}|chart|type='histogram'|class_name='taipy-chart'|>"}
{"prompt": "Design a heatmap chart with layout:", "Markdown code": "<|{data}|chart|type='heatmap'|layout={...}|>"}
{"prompt": "Create a candlestick chart with values:", "Markdown code": "<|{data}|chart|type='candlestick'|values='Value'|>"}
{"prompt": "Set up a radar chart with orientation:", "Markdown code": "<|{data}|chart|type='radar'|orientation='horizontal'|>"}
{"prompt": "Create a treemap chart with hover text:", "Markdown code": "<|{data}|chart|type='treemap'|hover_text='Info'|>"}
{"prompt": "Create a scatter plot chart with x-axis column:", "Markdown code": "<|{data}|chart|type='scatter'|x='X_Column'|>"}
{"prompt": "Display a bar chart with dynamic data rendering:", "Markdown code": "<|{data}|chart|type='bar'|render=True|>"}
{"prompt": "Show a bubble chart with hover text:", "Markdown code": "<|{data}|chart|type='bubble'|hover_text='Bubble Details'|>"}
{"prompt": "Insert a pie chart with editable properties:", "Markdown code": "<|{data}|chart|type='pie'|editable=True|>"}
{"prompt": "Create a heatmap chart with custom x-axis and y-axis:", "Markdown code": "<|{data}|chart|type='heatmap'|x='X_Axis'|y='Y_Axis'|>"}
{"prompt": "Implement a candlestick chart for financial data:", "Markdown code": "<|{data}|chart|type='candlestick'|>"}
{"prompt": "Set up a radar chart with specific marker setting:", "Markdown code": "<|{data}|chart|type='radar'|marker={...}|>"}
{"prompt": "Create a treemap chart with parent and text columns:", "Markdown code": "<|{data}|chart|type='treemap'|parents='Parent'|text='Label'|>"}
{"prompt": "Create a histogram with class name:", "Markdown code": "<|{data}|chart|type='histogram'|class_name='taipy-chart'|>"}
{"prompt": "Design a line chart with custom layout:", "Markdown code": "<|{data}|chart|type='scatter'|layout={...}|>"}
{"prompt": "Create a bar chart with a specific title:", "Markdown code": "<|{data}|chart|type='bar'|title='Bar Chart'|>"}
{"prompt": "Add a scatter plot chart with editable data:", "Markdown code": "<|{data}|chart|type='scatter'|editable=True|>"}
{"prompt": "Display a heatmap chart with custom orientation:", "Markdown code": "<|{data}|chart|type='heatmap'|orientation='horizontal'|>"}
{"prompt": "Show a pie chart with editable properties:", "Markdown code": "<|{data}|chart|type='pie'|editable=True|>"}
{"prompt": "Insert a radar chart with specific hover text:", "Markdown code": "<|{data}|chart|type='radar'|hover_text='Radar Info'|>"}
{"prompt": "Create a treemap chart with parent and text columns:", "Markdown code": "<|{data}|chart|type='treemap'|parents='Parent'|text='Label'|>"}
{"prompt": "Create a bubble chart with color settings:", "Markdown code": "<|{data}|chart|type='bubble'|color='Group'|>"}
{"prompt": "Add a histogram with specific class name:", "Markdown code": "<|{data}|chart|type='histogram'|class_name='taipy-chart'|>"}
{"prompt": "Display a candlestick chart for financial data:", "Markdown code": "<|{data}|chart|type='candlestick'|>"}
{"prompt": "Show a line chart with custom layout:", "Markdown code": "<|{data}|chart|type='scatter'|layout={...}|>"}
{"prompt": "Insert a bar chart with dynamic data rendering:", "Markdown code": "<|{data}|chart|type='bar'|render=True|>"}
{"prompt": "Create a scatter plot chart with hover text:", "Markdown code": "<|{data}|chart|type='scatter'|hover_text='Scatter Info'|>"}
{"prompt": "Create a pie chart with labels:", "Markdown code": "<|{data}|chart|type='pie'|labels='Category'|>"}
{"prompt": "Add a bubble chart with editable data:", "Markdown code": "<|{data}|chart|type='bubble'|editable=True|>"}
{"prompt": "Display a heatmap chart with custom x-axis:", "Markdown code": "<|{data}|chart|type='heatmap'|x='X_Axis'|>"}
{"prompt": "Show a candlestick chart with specific values:", "Markdown code": "<|{data}|chart|type='candlestick'|values='Value'|>"}
{"prompt": "Insert a radar chart with orientation:", "Markdown code": "<|{data}|chart|type='radar'|orientation='vertical'|>"}
{"prompt": "Create a treemap chart with a custom title:", "Markdown code": "<|{data}|chart|type='treemap'|title='Treemap Chart'|>"}
{"prompt": "Create a histogram with hover text:", "Markdown code": "<|{data}|chart|type='histogram'|hover_text='Histogram Info'|>"}
{"prompt": "Add a line chart with editable data:", "Markdown code": "<|{data}|chart|type='scatter'|editable=True|>"}
{"prompt": "Create a bar chart.", "Markdown code": "<|{data}|chart|type='bar'|>"}
{"prompt": "Add a scatter plot chart.", "Markdown code": "<|{data}|chart|type='scatter'|>"}
{"prompt": "Display a heatmap chart.", "Markdown code": "<|{data}|chart|type='heatmap'|>"}
{"prompt": "Show a pie chart.", "Markdown code": "<|{data}|chart|type='pie'|>"}
{"prompt": "Insert a radar chart.", "Markdown code": "<|{data}|chart|type='radar'|>"}
{"prompt": "Create a treemap chart.", "Markdown code": "<|{data}|chart|type='treemap'|>"}
{"prompt": "Create a bubble chart.", "Markdown code": "<|{data}|chart|type='bubble'|>"}
{"prompt": "Add a histogram.", "Markdown code": "<|{data}|chart|type='histogram'|>"}
{"prompt": "Display a candlestick chart.", "Markdown code": "<|{data}|chart|type='candlestick'|>"}
{"prompt": "Show a line chart.", "Markdown code": "<|{data}|chart|type='scatter'|>"}
{"prompt": "Insert a bar chart with dynamic data rendering.", "Markdown code": "<|{data}|chart|type='bar'|render=True|>"}
{"prompt": "Create a scatter plot chart with hover text.", "Markdown code": "<|{data}|chart|type='scatter'|hover_text='Scatter Info'|>"}
{"prompt": "Create a pie chart with labels.", "Markdown code": "<|{data}|chart|type='pie'|labels='Category'|>"}
{"prompt": "Add a bubble chart with editable data.", "Markdown code": "<|{data}|chart|type='bubble'|editable=True|>"}
{"prompt": "Display a heatmap chart with custom x-axis.", "Markdown code": "<|{data}|chart|type='heatmap'|x='X_Axis'|>"}
{"prompt": "Show a candlestick chart with specific values.", "Markdown code": "<|{data}|chart|type='candlestick'|values='Value'|>"}
{"prompt": "Insert a radar chart with orientation.", "Markdown code": "<|{data}|chart|type='radar'|orientation='vertical'|>"}
{"prompt": "Create a treemap chart with a custom title.", "Markdown code": "<|{data}|chart|type='treemap'|title='Treemap Chart'|>"}
{"prompt": "Create a histogram with hover text.", "Markdown code": "<|{data}|chart|type='histogram'|hover_text='Histogram Info'|>"}
{"prompt": "Add a line chart with editable data.", "Markdown code": "<|{data}|chart|type='scatter'|editable=True|>"}
{"prompt": "Create a Sales Pie Chart of Sales against Region", "Markdown code": "<|{data}|chart|type=pie|values=SALES|labels=Region|title=Sales Pie Chart|>"}
{"prompt": "Show a Pie Chart of Profit against Region", "Markdown code": "<|{data}|chart|type=pie|values=PROFIT|labels=Region|>"}
{"prompt": "Display Productivity against Employee in a line chart", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=PRODUCTIVITY|>"}
{"prompt": "Insert a line chart titled 'Employee Productivity Trend' showing Productivity against Employee", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=PRODUCTIVITY|title=Employee Productivity Trend|>"}
{"prompt": "Add Productivity and Satisfaction against Employee in a line chart", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y[1]=PRODUCTIVITY|y[2]=SATISFACTION|>"}
{"prompt": "Display Productivity against Employee with a Dashed line", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=PRODUCTIVITY|line=dash|>"}
{"prompt": "Show Satisfaction by Employee on a Dotted line", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=SATISFACTION|line=dot|>"}
{"prompt": "Add a Blue line chart for Productivity against Employee", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=PRODUCTIVITY|color=Blue|>"}
{"prompt": "Insert a Green line chart for Satisfaction against Employee", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=SATISFACTION|color=Green|>"}
{"prompt": "Create a line chart titled 'Satisfaction Overview' to Show Satisfaction against Employee in Green", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=SATISFACTION|color=Green|title=Satisfaction Overview|>"}
{"prompt": "Insert a Red line chart for Productivity and a Yellow line chart for Satisfaction against Employee", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y[1]=PRODUCTIVITY|y[2]=SATISFACTION|color[1]=Red|color[2]=Yellow|>"}
{"prompt": "Display a Red dashed line chart for GDP and a Yellow Dotted line chart for Population against Country", "Markdown code": "<|{data}|chart|type=lines|x=COUNTRY|y[1]=GDP|y[2]=POPULATION|line[1]=dash|line[2]=dot|color[1]=Red|color[2]=Yellow|>"}
{"prompt": "Highlight Employee according to Productivity", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=PRODUCTIVITY|>"}
{"prompt": "Add a bar chart for Productivity against Employee", "Markdown code": "<|{data}|chart|type=bar|x=EMPLOYEE|y=PRODUCTIVITY|>"}
{"prompt": "Insert a bar chart for Productivity against Employee and Satisfaction against Employee", "Markdown code": "<|{data}|chart|type=bar|x=EMPLOYEE|y[1]=PRODUCTIVITY|y[2]=SATISFACTION|>"}
{"prompt": "Create a bar chart to Display Productivity and Satisfaction against Employee", "Markdown code": "<|{data}|chart|type=bar|x=EMPLOYEE|y[1]=PRODUCTIVITY|y[2]=SATISFACTION|>"}
{"prompt": "Add a bar chart titled 'Work Overview' for Productivity against Employee and Satisfaction against Employee", "Markdown code": "<|{data}|chart|type=bar|x=EMPLOYEE|y[1]=PRODUCTIVITY|y[2]=SATISFACTION|title=Work Overview|>"}
{"prompt": "Insert a scatter plot to Show Productivity against Employee", "Markdown code": "<|{data}|chart|type=scatter|mode=markers|x=EMPLOYEE|y=PRODUCTIVITY|>"}
{"prompt": "Create a scatter plot titled 'Employee Scatter Plot' to Display Productivity and Satisfaction against Employee", "Markdown code": "<|{data}|chart|type=scatter|mode=markers|x=EMPLOYEE|y[1]=PRODUCTIVITY|y[2]=SATISFACTION|>"}
{"prompt": "Show GDP in Green points and Population in Yellow points against Country in a scatter plot", "Markdown code": "<|{data}|chart|type=scatter|mode=markers|x=COUNTRY|y[1]=GDP|y[2]=POPULATION|color[1]=Green|color[2]=Yellow|>"}
{"prompt": "Insert a histogram to Add Population against Country", "Markdown code": "<|{data}|chart|type=histogram|x=POPULATION|>"}
{"prompt": "Create a horizontal histogram to Display Population against Country", "Markdown code": "<|{data}|chart|type=histogram|x=POPULATION|>"}
{"prompt": "Show the distribution of Productivity and Satisfaction against Employee in a histogram", "Markdown code": "<|{data}|chart|type=histogram|x[1]=PRODUCTIVITY|x[2]=SATISFACTION|>"}
{"prompt": "Insert a histogram titled 'Population and GDP Distribution' to Create the distribution of Population and GDP against Country", "Markdown code": "<|{data}|chart|type=histogram|x[1]=POPULATION|x[2]=GDP|title=Population and GDP Distribution|>"}
{"prompt": "Create a horizontal distribution titled 'Population and GDP Distribution' to Present Population and GDP against Country", "Markdown code": "<|{data}|chart|type=histogram|y[1]=POPULATION|y[2]=GDP|title=Population and GDP Distribution|>"}
{"prompt": "Add a pie chart to Create Population against Country", "Markdown code": "<|{data}|chart|type=pie|values=POPULATION|labels=Country|>"}
{"prompt": "Create a pie chart titled 'Population Pie Chart' to Create Population against Country", "Markdown code": "<|{data}|chart|type=pie|values=POPULATION|labels=Country|title=Population Pie Chart|>"}
{"prompt": "Insert a pie chart to Create GDP against Country", "Markdown code": "<|{data}|chart|type=pie|values=GDP|labels=Country|>"}
{"prompt": "Display a pie chart of Sales against Region titled 'Sales Pie Chart'", "Markdown code": "<|{data}|chart|type=pie|values=SALES|labels=Region|title=Sales Pie Chart|>"}
{"prompt": "Create a pie chart of Profit against Region", "Markdown code": "<|{data}|chart|type=pie|values=PROFIT|labels=Region|>"}
{"prompt": "Visualize Productivity against Employee in a line chart", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=PRODUCTIVITY|>"}
{"prompt": "Create Productivity against Employee in a line chart titled 'Employee Productivity Trend'", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=PRODUCTIVITY|title=Employee Productivity Trend|>"}
{"prompt": "Create Productivity and Satisfaction against Employee", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y[1]=PRODUCTIVITY|y[2]=SATISFACTION|>"}
{"prompt": "Create Productivity against Employee with a Dashed line", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=PRODUCTIVITY|line=dash|>"}
{"prompt": "Present Satisfaction by Employee on a Dotted line", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=SATISFACTION|line=dot|>"}
{"prompt": "Plot Productivity against Employee in Blue", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=PRODUCTIVITY|color=Blue|>"}
{"prompt": "Exhibit Satisfaction against Employee in Green", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=SATISFACTION|color=Green|>"}
{"prompt": "Show Satisfaction against Employee in Green titled 'Satisfaction Overview'", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=SATISFACTION|color=Green|title=Satisfaction Overview|>"}
{"prompt": "Display Productivity in Red and Satisfaction in Yellow against Employee", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y[1]=PRODUCTIVITY|y[2]=SATISFACTION|color[1]=Red|color[2]=Yellow|>"}
{"prompt": "Visualize Satisfaction by Employee in a Red dashed line and Productivity in a Yellow Dotted line", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y[1]=SATISFACTION|y[2]=PRODUCTIVITY|line[1]=dash|line[2]=dot|color[1]=Red|color[2]=Yellow|>"}
{"prompt": "Highlight Employee according to Productivity", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=PRODUCTIVITY|>"}
{"prompt": "Create in a bar chart the Productivity against Employee", "Markdown code": "<|{data}|chart|type=bar|x=EMPLOYEE|y=PRODUCTIVITY|>"}
{"prompt": "Create in a bar chart the Productivity against Employee and Satisfaction against Employee", "Markdown code": "<|{data}|chart|type=bar|x=EMPLOYEE|y[1]=PRODUCTIVITY|y[2]=SATISFACTION|>"}
{"prompt": "Create Productivity and Satisfaction against Employee in a bar chart", "Markdown code": "<|{data}|chart|type=bar|x=EMPLOYEE|y[1]=PRODUCTIVITY|y[2]=SATISFACTION|>"}
{"prompt": "Create in a bar chart the Productivity against Employee and Satisfaction against Employee titled 'Work Overview'", "Markdown code": "<|{data}|chart|type=bar|x=EMPLOYEE|y[1]=PRODUCTIVITY|y[2]=SATISFACTION|title=Work Overview|>"}
{"prompt": "Create in a scatter plot Productivity against Employee", "Markdown code": "<|{data}|chart|type=scatter|mode=markers|x=EMPLOYEE|y=PRODUCTIVITY|>"}
{"prompt": "Create Productivity and Satisfaction against Employee in a scatter plot", "Markdown code": "<|{data}|chart|type=scatter|mode=markers|x=EMPLOYEE|y[1]=PRODUCTIVITY|y[2]=SATISFACTION|>"}
{"prompt": "Plot Satisfaction in Green points and Productivity in Yellow points against Employee", "Markdown code": "<|{data}|chart|type=scatter|mode=markers|x=EMPLOYEE|y[1]=SATISFACTION|y[2]=PRODUCTIVITY|color[1]=Green|color[2]=Yellow|>"}
{"prompt": "Display a histogram of Productivity against Employee", "Markdown code": "<|{data}|chart|type=histogram|x=PRODUCTIVITY|>"}
{"prompt": "Create a horizontal histogram of Productivity against Employee", "Markdown code": "<|{data}|chart|type=histogram|x=PRODUCTIVITY|>"}
{"prompt": "Create the distribution of Productivity and Satisfaction against Employee", "Markdown code": "<|{data}|chart|type=histogram|x[1]=PRODUCTIVITY|x[2]=SATISFACTION|>"}
{"prompt": "Create the distribution of Productivity and Satisfaction against Employee titled 'Productivity and Satisfaction Distribution'", "Markdown code": "<|{data}|chart|type=histogram|x[1]=PRODUCTIVITY|x[2]=GDP|title=Productivity and Satisfaction Distribution|>"}
{"prompt": "Present a horizontal distribution of Population and GDP against Country titled 'Population and GDP Distribution'", "Markdown code": "<|{data}|chart|type=histogram|y[1]=POPULATION|y[2]=GDP|title=Population and GDP Distribution|>"}
{"prompt": "Create a pie chart of Population against Country", "Markdown code": "<|{data}|chart|type=pie|values=POPULATION|labels=Country|>"}
{"prompt": "Create a pie chart of Population against Country titled 'Population Pie Chart'", "Markdown code": "<|{data}|chart|type=pie|values=POPULATION|labels=Country|title=Population Pie Chart|>"}
{"prompt": "Create a pie chart of GDP against Country", "Markdown code": "<|{data}|chart|type=pie|values=GDP|labels=Country|>"}
|