thanhnew2001 commited on
Commit
fe04344
1 Parent(s): fc701f5

Create chart.jsonl

Browse files
Files changed (1) hide show
  1. chart.jsonl +136 -0
chart.jsonl ADDED
@@ -0,0 +1,136 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"prompt": "Create a basic line chart with default data settings:", "Markdown code": "<|{data}|chart|type='scatter'|mode='lines'|>"}
2
+ {"prompt": "Set up a bar chart with specific x and y axis column names:", "Markdown code": "<|{data}|chart|type='bar'|x='Category'|y='Value'|>"}
3
+ {"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'|>"}
4
+ {"prompt": "Implement a bubble chart with specific color settings and a hover text:", "Markdown code": "<|{data}|chart|type='bubble'|color='Group'|hover_text='Details'|>"}
5
+ {"prompt": "Configure a pie chart with labels and values columns specified:", "Markdown code": "<|{data}|chart|type='pie'|labels='Category'|values='Value'|>"}
6
+ {"prompt": "Create a histogram with dynamic data and a specific class name:", "Markdown code": "<|{data}|chart|type='histogram'|class_name='taipy-chart'|>"}
7
+ {"prompt": "Set up a heatmap chart with editable properties and a custom layout:", "Markdown code": "<|{data}|chart|type='heatmap'|editable=True|layout={...}|>"}
8
+ {"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'|>"}
9
+ {"prompt": "Implement a radar chart with a specific orientation and marker settings:", "Markdown code": "<|{data}|chart|type='radar'|orientation='horizontal'|marker={...}|>"}
10
+ {"prompt": "Configure 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'|>"}
11
+ {"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'|>"}
12
+ {"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|>"}
13
+ {"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'|>"}
14
+ {"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'|>"}
15
+ {"prompt": "Configure 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|>"}
16
+ {"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={...}|>"}
17
+ {"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'|>"}
18
+ {"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|>"}
19
+ {"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'|>"}
20
+ {"prompt": "Configure 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={...}|>"}
21
+ {"prompt": "Create a line chart with data:", "Markdown code": "<|{data}|chart|type='scatter'|>"}
22
+ {"prompt": "Add a bar chart with x-axis labels:", "Markdown code": "<|{data}|chart|type='bar'|x='Category'|>"}
23
+ {"prompt": "Display a scatter plot with a custom title:", "Markdown code": "<|{data}|chart|type='scatter'|title='Scatter Plot'|>"}
24
+ {"prompt": "Show a bubble chart with color settings:", "Markdown code": "<|{data}|chart|type='bubble'|color='Group'|>"}
25
+ {"prompt": "Insert a pie chart with labels:", "Markdown code": "<|{data}|chart|type='pie'|labels='Category'|>"}
26
+ {"prompt": "Create a histogram with a class name:", "Markdown code": "<|{data}|chart|type='histogram'|class_name='taipy-chart'|>"}
27
+ {"prompt": "Design a heatmap chart with layout:", "Markdown code": "<|{data}|chart|type='heatmap'|layout={...}|>"}
28
+ {"prompt": "Generate a candlestick chart with values:", "Markdown code": "<|{data}|chart|type='candlestick'|values='Value'|>"}
29
+ {"prompt": "Set up a radar chart with orientation:", "Markdown code": "<|{data}|chart|type='radar'|orientation='horizontal'|>"}
30
+ {"prompt": "Configure a treemap chart with hover text:", "Markdown code": "<|{data}|chart|type='treemap'|hover_text='Info'|>"}
31
+ {"prompt": "Create a scatter plot chart with x-axis column:", "Markdown code": "<|{data}|chart|type='scatter'|x='X_Column'|>"}
32
+ {"prompt": "Display a bar chart with dynamic data rendering:", "Markdown code": "<|{data}|chart|type='bar'|render=True|>"}
33
+ {"prompt": "Show a bubble chart with hover text:", "Markdown code": "<|{data}|chart|type='bubble'|hover_text='Bubble Details'|>"}
34
+ {"prompt": "Insert a pie chart with editable properties:", "Markdown code": "<|{data}|chart|type='pie'|editable=True|>"}
35
+ {"prompt": "Generate a heatmap chart with custom x-axis and y-axis:", "Markdown code": "<|{data}|chart|type='heatmap'|x='X_Axis'|y='Y_Axis'|>"}
36
+ {"prompt": "Implement a candlestick chart for financial data:", "Markdown code": "<|{data}|chart|type='candlestick'|>"}
37
+ {"prompt": "Set up a radar chart with specific marker setting:", "Markdown code": "<|{data}|chart|type='radar'|marker={...}|>"}
38
+ {"prompt": "Create a treemap chart with parent and text columns:", "Markdown code": "<|{data}|chart|type='treemap'|parents='Parent'|text='Label'|>"}
39
+ {"prompt": "Generate a histogram with class name:", "Markdown code": "<|{data}|chart|type='histogram'|class_name='taipy-chart'|>"}
40
+ {"prompt": "Design a line chart with custom layout:", "Markdown code": "<|{data}|chart|type='scatter'|layout={...}|>"}
41
+ {"prompt": "Create a bar chart with a specific title:", "Markdown code": "<|{data}|chart|type='bar'|title='Bar Chart'|>"}
42
+ {"prompt": "Add a scatter plot chart with editable data:", "Markdown code": "<|{data}|chart|type='scatter'|editable=True|>"}
43
+ {"prompt": "Display a heatmap chart with custom orientation:", "Markdown code": "<|{data}|chart|type='heatmap'|orientation='horizontal'|>"}
44
+ {"prompt": "Show a pie chart with editable properties:", "Markdown code": "<|{data}|chart|type='pie'|editable=True|>"}
45
+ {"prompt": "Insert a radar chart with specific hover text:", "Markdown code": "<|{data}|chart|type='radar'|hover_text='Radar Info'|>"}
46
+ {"prompt": "Generate a treemap chart with parent and text columns:", "Markdown code": "<|{data}|chart|type='treemap'|parents='Parent'|text='Label'|>"}
47
+ {"prompt": "Create a bubble chart with color settings:", "Markdown code": "<|{data}|chart|type='bubble'|color='Group'|>"}
48
+ {"prompt": "Add a histogram with specific class name:", "Markdown code": "<|{data}|chart|type='histogram'|class_name='taipy-chart'|>"}
49
+ {"prompt": "Display a candlestick chart for financial data:", "Markdown code": "<|{data}|chart|type='candlestick'|>"}
50
+ {"prompt": "Show a line chart with custom layout:", "Markdown code": "<|{data}|chart|type='scatter'|layout={...}|>"}
51
+ {"prompt": "Insert a bar chart with dynamic data rendering:", "Markdown code": "<|{data}|chart|type='bar'|render=True|>"}
52
+ {"prompt": "Generate a scatter plot chart with hover text:", "Markdown code": "<|{data}|chart|type='scatter'|hover_text='Scatter Info'|>"}
53
+ {"prompt": "Create a pie chart with labels:", "Markdown code": "<|{data}|chart|type='pie'|labels='Category'|>"}
54
+ {"prompt": "Add a bubble chart with editable data:", "Markdown code": "<|{data}|chart|type='bubble'|editable=True|>"}
55
+ {"prompt": "Display a heatmap chart with custom x-axis:", "Markdown code": "<|{data}|chart|type='heatmap'|x='X_Axis'|>"}
56
+ {"prompt": "Show a candlestick chart with specific values:", "Markdown code": "<|{data}|chart|type='candlestick'|values='Value'|>"}
57
+ {"prompt": "Insert a radar chart with orientation:", "Markdown code": "<|{data}|chart|type='radar'|orientation='vertical'|>"}
58
+ {"prompt": "Generate a treemap chart with a custom title:", "Markdown code": "<|{data}|chart|type='treemap'|title='Treemap Chart'|>"}
59
+ {"prompt": "Create a histogram with hover text:", "Markdown code": "<|{data}|chart|type='histogram'|hover_text='Histogram Info'|>"}
60
+ {"prompt": "Add a line chart with editable data:", "Markdown code": "<|{data}|chart|type='scatter'|editable=True|>"}
61
+ {"prompt": "Create a bar chart.", "Markdown code": "<|{data}|chart|type='bar'|>"}
62
+ {"prompt": "Add a scatter plot chart.", "Markdown code": "<|{data}|chart|type='scatter'|>"}
63
+ {"prompt": "Display a heatmap chart.", "Markdown code": "<|{data}|chart|type='heatmap'|>"}
64
+ {"prompt": "Show a pie chart.", "Markdown code": "<|{data}|chart|type='pie'|>"}
65
+ {"prompt": "Insert a radar chart.", "Markdown code": "<|{data}|chart|type='radar'|>"}
66
+ {"prompt": "Generate a treemap chart.", "Markdown code": "<|{data}|chart|type='treemap'|>"}
67
+ {"prompt": "Create a bubble chart.", "Markdown code": "<|{data}|chart|type='bubble'|>"}
68
+ {"prompt": "Add a histogram.", "Markdown code": "<|{data}|chart|type='histogram'|>"}
69
+ {"prompt": "Display a candlestick chart.", "Markdown code": "<|{data}|chart|type='candlestick'|>"}
70
+ {"prompt": "Show a line chart.", "Markdown code": "<|{data}|chart|type='scatter'|>"}
71
+ {"prompt": "Insert a bar chart with dynamic data rendering.", "Markdown code": "<|{data}|chart|type='bar'|render=True|>"}
72
+ {"prompt": "Generate a scatter plot chart with hover text.", "Markdown code": "<|{data}|chart|type='scatter'|hover_text='Scatter Info'|>"}
73
+ {"prompt": "Create a pie chart with labels.", "Markdown code": "<|{data}|chart|type='pie'|labels='Category'|>"}
74
+ {"prompt": "Add a bubble chart with editable data.", "Markdown code": "<|{data}|chart|type='bubble'|editable=True|>"}
75
+ {"prompt": "Display a heatmap chart with custom x-axis.", "Markdown code": "<|{data}|chart|type='heatmap'|x='X_Axis'|>"}
76
+ {"prompt": "Show a candlestick chart with specific values.", "Markdown code": "<|{data}|chart|type='candlestick'|values='Value'|>"}
77
+ {"prompt": "Insert a radar chart with orientation.", "Markdown code": "<|{data}|chart|type='radar'|orientation='vertical'|>"}
78
+ {"prompt": "Generate a treemap chart with a custom title.", "Markdown code": "<|{data}|chart|type='treemap'|title='Treemap Chart'|>"}
79
+ {"prompt": "Create a histogram with hover text.", "Markdown code": "<|{data}|chart|type='histogram'|hover_text='Histogram Info'|>"}
80
+ {"prompt": "Add a line chart with editable data.", "Markdown code": "<|{data}|chart|type='scatter'|editable=True|>"}
81
+ {"prompt": "Create a Sales Pie Chart of Sales against Region", "Markdown code": "<|{data}|chart|type=pie|values=SALES|labels=Region|title=Sales Pie Chart|>"}
82
+ {"prompt": "Show a Pie Chart of Profit against Region", "Markdown code": "<|{data}|chart|type=pie|values=PROFIT|labels=Region|>"}
83
+ {"prompt": "Display Productivity against Employee in a line chart", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=PRODUCTIVITY|>"}
84
+ {"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|>"}
85
+ {"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|>"}
86
+ {"prompt": "Display Productivity against Employee with a Dashed line", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=PRODUCTIVITY|line=dash|>"}
87
+ {"prompt": "Show Satisfaction by Employee on a Dotted line", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=SATISFACTION|line=dot|>"}
88
+ {"prompt": "Add a Blue line chart for Productivity against Employee", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=PRODUCTIVITY|color=Blue|>"}
89
+ {"prompt": "Insert a Green line chart for Satisfaction against Employee", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=SATISFACTION|color=Green|>"}
90
+ {"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|>"}
91
+ {"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|>"}
92
+ {"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|>"}
93
+ {"prompt": "Highlight Employee according to Productivity", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=PRODUCTIVITY|>"}
94
+ {"prompt": "Add a bar chart for Productivity against Employee", "Markdown code": "<|{data}|chart|type=bar|x=EMPLOYEE|y=PRODUCTIVITY|>"}
95
+ {"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|>"}
96
+ {"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|>"}
97
+ {"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|>"}
98
+ {"prompt": "Insert a scatter plot to Show Productivity against Employee", "Markdown code": "<|{data}|chart|type=scatter|mode=markers|x=EMPLOYEE|y=PRODUCTIVITY|>"}
99
+ {"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|>"}
100
+ {"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|>"}
101
+ {"prompt": "Insert a histogram to Add Population against Country", "Markdown code": "<|{data}|chart|type=histogram|x=POPULATION|>"}
102
+ {"prompt": "Create a horizontal histogram to Display Population against Country", "Markdown code": "<|{data}|chart|type=histogram|x=POPULATION|>"}
103
+ {"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|>"}
104
+ {"prompt": "Insert a histogram titled 'Population and GDP Distribution' to Illustrate 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|>"}
105
+ {"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|>"}
106
+ {"prompt": "Add a pie chart to Depict Population against Country", "Markdown code": "<|{data}|chart|type=pie|values=POPULATION|labels=Country|>"}
107
+ {"prompt": "Create a pie chart titled 'Population Pie Chart' to Illustrate Population against Country", "Markdown code": "<|{data}|chart|type=pie|values=POPULATION|labels=Country|title=Population Pie Chart|>"}
108
+ {"prompt": "Insert a pie chart to Depict GDP against Country", "Markdown code": "<|{data}|chart|type=pie|values=GDP|labels=Country|>"}
109
+ {"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|>"}
110
+ {"prompt": "Depict a pie chart of Profit against Region", "Markdown code": "<|{data}|chart|type=pie|values=PROFIT|labels=Region|>"}
111
+ {"prompt": "Visualize Productivity against Employee in a line chart", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=PRODUCTIVITY|>"}
112
+ {"prompt": "Showcase 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|>"}
113
+ {"prompt": "Depict Productivity and Satisfaction against Employee", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y[1]=PRODUCTIVITY|y[2]=SATISFACTION|>"}
114
+ {"prompt": "Illustrate Productivity against Employee with a Dashed line", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=PRODUCTIVITY|line=dash|>"}
115
+ {"prompt": "Present Satisfaction by Employee on a Dotted line", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=SATISFACTION|line=dot|>"}
116
+ {"prompt": "Plot Productivity against Employee in Blue", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=PRODUCTIVITY|color=Blue|>"}
117
+ {"prompt": "Exhibit Satisfaction against Employee in Green", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=SATISFACTION|color=Green|>"}
118
+ {"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|>"}
119
+ {"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|>"}
120
+ {"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|>"}
121
+ {"prompt": "Highlight Employee according to Productivity", "Markdown code": "<|{data}|chart|type=lines|x=EMPLOYEE|y=PRODUCTIVITY|>"}
122
+ {"prompt": "Depict in a bar chart the Productivity against Employee", "Markdown code": "<|{data}|chart|type=bar|x=EMPLOYEE|y=PRODUCTIVITY|>"}
123
+ {"prompt": "Depict 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|>"}
124
+ {"prompt": "Showcase Productivity and Satisfaction against Employee in a bar chart", "Markdown code": "<|{data}|chart|type=bar|x=EMPLOYEE|y[1]=PRODUCTIVITY|y[2]=SATISFACTION|>"}
125
+ {"prompt": "Depict 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|>"}
126
+ {"prompt": "Depict in a scatter plot Productivity against Employee", "Markdown code": "<|{data}|chart|type=scatter|mode=markers|x=EMPLOYEE|y=PRODUCTIVITY|>"}
127
+ {"prompt": "Illustrate 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|>"}
128
+ {"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|>"}
129
+ {"prompt": "Display a histogram of Productivity against Employee", "Markdown code": "<|{data}|chart|type=histogram|x=PRODUCTIVITY|>"}
130
+ {"prompt": "Showcase a horizontal histogram of Productivity against Employee", "Markdown code": "<|{data}|chart|type=histogram|x=PRODUCTIVITY|>"}
131
+ {"prompt": "Illustrate the distribution of Productivity and Satisfaction against Employee", "Markdown code": "<|{data}|chart|type=histogram|x[1]=PRODUCTIVITY|x[2]=SATISFACTION|>"}
132
+ {"prompt": "Illustrate 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|>"}
133
+ {"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|>"}
134
+ {"prompt": "Depict a pie chart of Population against Country", "Markdown code": "<|{data}|chart|type=pie|values=POPULATION|labels=Country|>"}
135
+ {"prompt": "Illustrate 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|>"}
136
+ {"prompt": "Depict a pie chart of GDP against Country", "Markdown code": "<|{data}|chart|type=pie|values=GDP|labels=Country|>"}