thanhnew2001 commited on
Commit
b47bf01
1 Parent(s): f706440

Create chart.jsonl

Browse files
Files changed (1) hide show
  1. chart.jsonl +100 -0
chart.jsonl ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"prompt": "Basic line chart", "code": "<|{data}|chart|type='scatter'|mode='lines'|>"}
2
+ {"prompt": "Bar chart with axis names", "code": "<|{data}|chart|type='bar'|x='Category'|y='Value'|>"}
3
+ {"prompt": "Editable scatter plot with title", "code": "<|{data}|chart|type='scatter'|mode='markers'|editable=True|title='Scatter Plot'|>"}
4
+ {"prompt": "Bubble chart with color and hover text", "code": "<|{data}|chart|type='bubble'|color='Group'|hover_text='Details'|>"}
5
+ {"prompt": "Pie chart with specified labels and values", "code": "<|{data}|chart|type='pie'|labels='Category'|values='Value'|>"}
6
+ {"prompt": "Histogram with class name", "code": "<|{data}|chart|type='histogram'|class_name='taipy-chart'|>"}
7
+ {"prompt": "Editable heatmap with layout", "code": "<|{data}|chart|type='heatmap'|editable=True|layout={...}|>"}
8
+ {"prompt": "Candlestick chart for financial data", "code": "<|{data}|chart|type='candlestick'|high='High'|low='Low'|open='Open'|close='Close'|>"}
9
+ {"prompt": "Radar chart with orientation and markers", "code": "<|{data}|chart|type='radar'|orientation='horizontal'|marker={...}|>"}
10
+ {"prompt": "Treemap chart with hover text", "code": "<|{data}|chart|type='treemap'|parents='Parent'|text='Label'|hover_text='Info'|>"}
11
+ {"prompt": "Scatter plot with editable data and axis", "code": "<|{data}|chart|type='scatter'|mode='markers'|editable=True|title='Scatter Plot'|x='X_Column'|y='Y_Column'|>"}
12
+ {"prompt": "Dynamic bar chart with layout", "code": "<|{data}|chart|type='bar'|class_name='taipy-chart'|layout={...}|render=True|>"}
13
+ {"prompt": "Bubble chart with labels, values, hover text", "code": "<|{data}|chart|type='bubble'|labels='Category'|values='Value'|hover_text='Bubble Details'|>"}
14
+ {"prompt": "Editable pie chart with title", "code": "<|{data}|chart|type='pie'|editable=True|labels='Category'|values='Value'|title='Pie Chart'|>"}
15
+ {"prompt": "Heatmap with custom axes and orientation", "code": "<|{data}|chart|type='heatmap'|x='X_Axis'|y='Y_Axis'|orientation='horizontal'|render=True|>"}
16
+ {"prompt": "Candlestick chart with layout", "code": "<|{data}|chart|type='candlestick'|high='High'|low='Low'|open='Open'|close='Close'|layout={...}|>"}
17
+ {"prompt": "Editable radar chart with hover text", "code": "<|{data}|chart|type='radar'|editable=True|marker={...}|hover_text='Radar Info'|>"}
18
+ {"prompt": "Dynamic treemap chart with title", "code": "<|{data}|chart|type='treemap'|parents='Parent'|text='Label'|title='Treemap Chart'|render=True|>"}
19
+ {"prompt": "Histogram with labels and hover text", "code": "<|{data}|chart|type='histogram'|labels='Data Points'|class_name='taipy-chart'|hover_text='Histogram Details'|>"}
20
+ {"prompt": "Line chart with editable data and layout", "code": "<|{data}|chart|type='scatter'|mode='lines'|x='X_Column'|y='Y_Column'|editable=True|layout={...}|>"}
21
+ {"prompt": "Line chart with custom color", "code": "<|{data}|chart|type='line'|color='blue'|>"}
22
+ {"prompt": "Bar chart with opacity", "code": "<|{data}|chart|type='bar'|opacity=0.7|>"}
23
+ {"prompt": "Scatter plot with marker size", "code": "<|{data}|chart|type='scatter'|marker_size=10|>"}
24
+ {"prompt": "Bubble chart with custom x-axis", "code": "<|{data}|chart|type='bubble'|x='Date'|>"}
25
+ {"prompt": "Pie chart with inner radius", "code": "<|{data}|chart|type='pie'|inner_radius=50|>"}
26
+ {"prompt": "Histogram with bin size", "code": "<|{data}|chart|type='histogram'|bin_size=5|>"}
27
+ {"prompt": "Heatmap with custom y-axis", "code": "<|{data}|chart|type='heatmap'|y='Score'|>"}
28
+ {"prompt": "Candlestick chart with date axis", "code": "<|{data}|chart|type='candlestick'|x='Date'|>"}
29
+ {"prompt": "Radar chart with line style", "code": "<|{data}|chart|type='radar'|line_style='dashed'|>"}
30
+ {"prompt": "Treemap chart with color scale", "code": "<|{data}|chart|type='treemap'|color_scale='greens'|>"}
31
+ {"prompt": "Area chart with fill", "code": "<|{data}|chart|type='area'|fill='tozeroy'|>"}
32
+ {"prompt": "Donut chart with hole size", "code": "<|{data}|chart|type='donut'|hole=0.4|>"}
33
+ {"prompt": "Polar chart with radial axis", "code": "<|{data}|chart|type='polar'|radial_axis=True|>"}
34
+ {"prompt": "Funnel chart with orientation", "code": "<|{data}|chart|type='funnel'|orientation='h'|>"}
35
+ {"prompt": "Gauge chart with range", "code": "<|{data}|chart|type='gauge'|range=[0, 100]|>"}
36
+ {"prompt": "Choropleth map with geojson", "code": "<|{data}|chart|type='choropleth'|geojson='map.json'|>"}
37
+ {"prompt": "3D scatter plot with z-axis", "code": "<|{data}|chart|type='scatter3d'|z='Depth'|>"}
38
+ {"prompt": "Waterfall chart with increasing color", "code": "<|{data}|chart|type='waterfall'|increasing_color='green'|>"}
39
+ {"prompt": "Sunburst chart with radius", "code": "<|{data}|chart|type='sunburst'|radius='auto'|>"}
40
+ {"prompt": "Box plot with box points", "code": "<|{data}|chart|type='box'|boxpoints='all'|>"}
41
+ {"prompt": "Bar chart with custom width", "code": "<|{data}|chart|type='bar'|bar_width=20|>"}
42
+ {"prompt": "Scatter plot with custom hover info", "code": "<|{data}|chart|type='scatter'|hover_info='x+y+text'|>"}
43
+ {"prompt": "Line chart with dashed line style", "code": "<|{data}|chart|type='line'|line_style='dashed'|>"}
44
+ {"prompt": "Pie chart with custom start angle", "code": "<|{data}|chart|type='pie'|start_angle=90|>"}
45
+ {"prompt": "Histogram with custom axis", "code": "<|{data}|chart|type='histogram'|x='Time'|>"}
46
+ {"prompt": "Bubble chart with size scale", "code": "<|{data}|chart|type='bubble'|size_scale=2|>"}
47
+ {"prompt": "Heatmap with custom z-axis", "code": "<|{data}|chart|type='heatmap'|z='Temperature'|>"}
48
+ {"prompt": "Radar chart with custom line thickness", "code": "<|{data}|chart|type='radar'|line_thickness=3|>"}
49
+ {"prompt": "Treemap with custom text position", "code": "<|{data}|chart|type='treemap'|text_position='inside'|>"}
50
+ {"prompt": "Area chart with gradient fill", "code": "<|{data}|chart|type='area'|gradient_fill=True|>"}
51
+ {"prompt": "Donut chart with label orientation", "code": "<|{data}|chart|type='donut'|label_orientation='tangential'|>"}
52
+ {"prompt": "Polar chart with custom angle", "code": "<|{data}|chart|type='polar'|angle=45|>"}
53
+ {"prompt": "Funnel chart with custom colors", "code": "<|{data}|chart|type='funnel'|colors=['red', 'blue', 'green']|>"}
54
+ {"prompt": "Gauge chart with custom needle color", "code": "<|{data}|chart|type='gauge'|needle_color='blue'|>"}
55
+ {"prompt": "Choropleth map with custom projection", "code": "<|{data}|chart|type='choropleth'|projection='mercator'|>"}
56
+ {"prompt": "3D scatter plot with custom point size", "code": "<|{data}|chart|type='scatter3d'|point_size=5|>"}
57
+ {"prompt": "Waterfall chart with decreasing color", "code": "<|{data}|chart|type='waterfall'|decreasing_color='red'|>"}
58
+ {"prompt": "Sunburst chart with custom rotation", "code": "<|{data}|chart|type='sunburst'|rotation=90|>"}
59
+ {"prompt": "Box plot with custom outlier color", "code": "<|{data}|chart|type='box'|outlier_color='orange'|>"}
60
+ {"prompt": "Candlestick chart with custom line width", "code": "<|{data}|chart|type='candlestick'|line_width=2|>"}
61
+ {"prompt": "Scatter plot with custom point color", "code": "<|{data}|chart|type='scatter'|point_color='purple'|>"}
62
+ {"prompt": "Line chart with custom x-axis label", "code": "<|{data}|chart|type='line'|x_label='Date'|>"}
63
+ {"prompt": "Bar chart with custom y-axis label", "code": "<|{data}|chart|type='bar'|y_label='Sales'|>"}
64
+ {"prompt": "Pie chart with label distance", "code": "<|{data}|chart|type='pie'|label_distance=15|>"}
65
+ {"prompt": "Histogram with custom orientation", "code": "<|{data}|chart|type='histogram'|orientation='horizontal'|>"}
66
+ {"prompt": "Bubble chart with custom size range", "code": "<|{data}|chart|type='bubble'|size_range=[5,15]|>"}
67
+ {"prompt": "Heatmap with intensity scale", "code": "<|{data}|chart|type='heatmap'|intensity_scale=10|>"}
68
+ {"prompt": "Radar chart with custom fill color", "code": "<|{data}|chart|type='radar'|fill_color='cyan'|>"}
69
+ {"prompt": "Treemap with custom parent label", "code": "<|{data}|chart|type='treemap'|parent_label='Category'|>"}
70
+ {"prompt": "Area chart with line smoothing", "code": "<|{data}|chart|type='area'|line_smoothing=True|>"}
71
+ {"prompt": "Donut chart with rotation", "code": "<|{data}|chart|type='donut'|rotation=45|>"}
72
+ {"prompt": "Polar chart with gridlines", "code": "<|{data}|chart|type='polar'|gridlines=True|>"}
73
+ {"prompt": "Funnel chart with label position", "code": "<|{data}|chart|type='funnel'|label_position='inside'|>"}
74
+ {"prompt": "Gauge chart with custom gauge width", "code": "<|{data}|chart|type='gauge'|gauge_width=20|>"}
75
+ {"prompt": "Choropleth map with color scale range", "code": "<|{data}|chart|type='choropleth'|color_scale_range=[0,100]|>"}
76
+ {"prompt": "3D scatter plot with custom grid color", "code": "<|{data}|chart|type='scatter3d'|grid_color='grey'|>"}
77
+ {"prompt": "Waterfall chart with connector lines", "code": "<|{data}|chart|type='waterfall'|connector_lines=True|>"}
78
+ {"prompt": "Sunburst chart with custom text size", "code": "<|{data}|chart|type='sunburst'|text_size=12|>"}
79
+ {"prompt": "Box plot with whisker width", "code": "<|{data}|chart|type='box'|whisker_width=0.5|>"}
80
+ {"prompt": "Candlestick chart with custom opacity", "code": "<|{data}|chart|type='candlestick'|opacity=0.8|>"}
81
+ {"prompt": "Line chart with custom line width", "code": "<|{data}|chart|type='line'|line_width=3|>"}
82
+ {"prompt": "Bar chart with gradient fill", "code": "<|{data}|chart|type='bar'|gradient_fill=True|>"}
83
+ {"prompt": "Scatter plot with custom axis ticks", "code": "<|{data}|chart|type='scatter'|axis_ticks='inside'|>"}
84
+ {"prompt": "Pie chart with custom slice colors", "code": "<|{data}|chart|type='pie'|slice_colors=['red', 'green', 'blue']|>"}
85
+ {"prompt": "Histogram with custom axis range", "code": "<|{data}|chart|type='histogram'|axis_range=[0,100]|>"}
86
+ {"prompt": "Bubble chart with opacity range", "code": "<|{data}|chart|type='bubble'|opacity_range=[0.5, 1]|>"}
87
+ {"prompt": "Heatmap with custom color scale", "code": "<|{data}|chart|type='heatmap'|color_scale='YlGnBu'|>"}
88
+ {"prompt": "Radar chart with area opacity", "code": "<|{data}|chart|type='radar'|area_opacity=0.7|>"}
89
+ {"prompt": "Treemap with custom hover mode", "code": "<|{data}|chart|type='treemap'|hover_mode='closest'|>"}
90
+ {"prompt": "Area chart with custom axis type", "code": "<|{data}|chart|type='area'|axis_type='logarithmic'|>"}
91
+ {"prompt": "Donut chart with custom label font size", "code": "<|{data}|chart|type='donut'|label_font_size=14|>"}
92
+ {"prompt": "Polar chart with radial labels", "code": "<|{data}|chart|type='polar'|radial_labels=True|>"}
93
+ {"prompt": "Funnel chart with custom text alignment", "code": "<|{data}|chart|type='funnel'|text_align='center'|>"}
94
+ {"prompt": "Gauge chart with custom dial radius", "code": "<|{data}|chart|type='gauge'|dial_radius=50|>"}
95
+ {"prompt": "Choropleth map with custom legend", "code": "<|{data}|chart|type='choropleth'|legend=True|>"}
96
+ {"prompt": "3D scatter plot with custom hover label", "code": "<|{data}|chart|type='scatter3d'|hover_label='Data Point'|>"}
97
+ {"prompt": "Waterfall chart with custom total color", "code": "<|{data}|chart|type='waterfall'|total_color='blue'|>"}
98
+ {"prompt": "Sunburst chart with custom partition", "code": "<|{data}|chart|type='sunburst'|partition='category'|>"}
99
+ {"prompt": "Box plot with custom outlier style", "code": "<|{data}|chart|type='box'|outlier_style='star'|>"}
100
+ {"prompt": "Candlestick chart with custom background", "code": "<|{data}|chart|type='candlestick'|background='lightgray'|>"}