diff --git a/evaluations/datastes/recommend/README.en.md b/evaluations/datastes/recommend/README.en.md new file mode 100644 index 0000000..c6a66a7 --- /dev/null +++ b/evaluations/datastes/recommend/README.en.md @@ -0,0 +1,41 @@ +# Chart Recommendation Dataset +This folder provides datasets for evaluating/fine-tuning large models on the "Chart Recommendation" task. Here, the chart recommendation task refers to recommending suitable charts to display data based on the given data. + +Currently, the dataset covers 16 types of charts, with 1-3 distinct data scenarios for each chart type. Each scenario contains 15+ sets of chart data. The data will be continually updated, and we welcome contributions of chart data collected from your use scenarios. + +## Dataset Description +### Original Chart Data +Data is organized into different folders based on chart types, and chart data is divided into different files based on data scenarios. For example, the column chart folder column contains two files: 01_base.json for basic column chart data, and 02_split.json for split column chart data. + +In each data entry, source represents the user input. source.data contains the original data, and source.meta includes metadata about the input data, mainly field names and data types. One of these pieces of information can be missing. target represents the recommended chart type and the field mappings in the chart configuration. Here is an example: + +```json +{ + "source": { + // Metadata about data fields + "metas": [{"name": "City", "dataType": "string"}, {"name": "Population", "dataType": "number"}], + // Original data + "data": [{"City": "Beijing", "Population": 2154}, {"City": "Shanghai", "Population": 2424}, {"City": "Guangzhou", "Population": 1530}] + }, + "target": [ + { + "type": "column", + "encode": { + "x": ["City"], // Field for x-axis + "y": ["Population"] // Field for y-axis + } + } + ] +} +``` + +### Model Fine-Tuning Dataset +The gpt_vis_train.jsonl file is a fine-tuning training dataset generated from the above original chart data. The generation strategy is as follows: randomly select half of the cases for each chart type (the remaining data is used for evaluation). Since the number of original data entries varies for each chart type, to avoid imbalanced chart quantities affecting recommendation results, some chart data entries are repeated a certain number of times to ensure there are 60 entries for each chart type in the training set. + +### Evaluation Result File +The evalResult.json file contains the results of our model evaluation after fine-tuning. In this file, every source entry is the original input, target is the expected output, and generation is the model's output. Comparing these entries allows the evaluation of recommendation accuracy. + +### Model's Performance on Chart Recommendation Task +Using the above datasets, we achieved a chart type accuracy of 85% and an encode accuracy of 70% with fine-tuning based on the `qwen2.5-14b-instruct`. + +It is important to note that the model recommendations can satisfy the requirement of "providing data and returning chart and configuration" in most scenarios. However, the model's output is not entirely controlled, which may result in invalid output or charts that cannot be successfully rendered. We recommend combining these with the recommendation modules in [@antv/ava](https://ava.antv.antgroup.com/api/advice/advisor). In scenarios where the model performance is suboptimal or where traditional rules fulfill the recommendation requirements, rule-based recommendation pipelines can be used as a fallback. diff --git a/evaluations/datastes/recommend/README.md b/evaluations/datastes/recommend/README.md new file mode 100644 index 0000000..eb0fcd1 --- /dev/null +++ b/evaluations/datastes/recommend/README.md @@ -0,0 +1,42 @@ +# 图表推荐数据集 + +该文件夹中提供用于评测/微调大模型在“图表推荐”任务上能力的数据集。图表推荐任务在这里指,根据数据推荐适合展示数据的图表 + +数据集目前涵盖了 16 种图表类型,每种图表类型下 1-3 个不同数据场景,每个场景下 15+ 个图表数据。数据会持续更新,也欢迎向我们贡献你的使用场景中收集的图表数据~ + +## 数据集说明 + +### 原始图表数据 +数据按照图表类型进行图表类型分为不同文件夹,图表数据按照数据场景划分为不同文件。例如柱形图 `column` 包含两个文件 `01_base.json` 为基础柱形图数据,`02_split.json` 为带拆分的柱形图。 + +每条数据中 `source` 为用户输入,`source.data` 为输入的原始数据,`source.meta` 为输入的数据的元信息,主要是字段名和字段数值类型,推荐时两个信息可以缺少其中之一。`target` 为推荐的图表类型和图表配置中的字段映射。数据示例: +```json +{ + "source": { + // 数据字段元信息 + "metas": [{"name": "城市", "dataType": "string"},{"name": "人口","dataType": "number"}], + // 原始数据 + "data": [{"城市": "北京","人口": 2154},{"城市": "上海","人口": 2424},{"城市": "广州","人口": 1530}] + }, + "target": [ + { + "type": "column", + "encode": { + "x": ["城市"], // x 轴字段 + "y": ["人口"] // y 轴字段 + } + } + ] +} +``` + +### 模型微调数据集 +`gpt_vis_train.jsonl` 文件是我们使用上述原始图表数据集生成的微调训练数据集。生成策略如下:每种图表随机抽取一半的 case (剩余数据用作评测),由于每种图表原始数据条数不同,为避免图表数量不均衡影响推荐结果,通过将部分图表数据重复一定次数,保证每种图表在训练集中有 60 条数据。 + +### 评测结果文件 +`evalResult.json` 文件是我们执行模型微调后,用模型评测的结果,其中每条数据的 `source` 为原始输入,`target` 为期望输出,`generation` 为模型输出,通过比对可以评估推荐的准确率。 + +## 模型推荐图表效果说明 +我们使用上述数据集,基于 `qwen2.5-14b-instruct` 微调后的图表类型准确率可达 85%,`encode` 准确率达 70%。 + +需要注意的是,模型推荐在大部分场景下能够满足“给出数据,返回图表及配置”的需求,但模型输出不完全可控,存在输出结果不合法、输出的图表无法绘制成功等情况。推荐结合 [@antv/ava](https://ava.antv.antgroup.com/api/advice/advisor) 中的推荐模块使用,在模型效果不佳或者传统规则已满足推荐需求的场景下,可以使用规则推荐的工程链路进行兜底。 diff --git a/evaluations/datastes/recommend/column/01_base.json b/evaluations/datastes/recommend/column/01_base.json new file mode 100644 index 0000000..5feb764 --- /dev/null +++ b/evaluations/datastes/recommend/column/01_base.json @@ -0,0 +1,808 @@ +[ + { + "source": { + "metas": [ + { + "name": "城市", + "dataType": "string" + }, + { + "name": "人口", + "dataType": "number" + } + ], + "data": [ + { + "城市": "北京", + "人口": 2154 + }, + { + "城市": "上海", + "人口": 2424 + }, + { + "城市": "广州", + "人口": 1530 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "城市" + ], + "y": [ + "人口" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Country", + "dataType": "string" + }, + { + "name": "GDP", + "dataType": "number" + } + ], + "data": [ + { + "Country": "USA", + "GDP": 21433 + }, + { + "Country": "China", + "GDP": 14140 + }, + { + "Country": "Japan", + "GDP": 5065 + }, + { + "Country": "Germany", + "GDP": 3861 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "Country" + ], + "y": [ + "GDP" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "季节", + "dataType": "string" + }, + { + "name": "温度", + "dataType": "number" + } + ], + "data": [ + { + "季节": "春", + "温度": 15.0 + }, + { + "季节": "夏", + "温度": 28.0 + }, + { + "季节": "秋", + "温度": 20.0 + }, + { + "季节": "冬", + "温度": 5.0 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "季节" + ], + "y": [ + "温度" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Product", + "dataType": "string" + }, + { + "name": "Sales", + "dataType": "number" + } + ], + "data": [ + { + "Product": "Laptop", + "Sales": 250 + }, + { + "Product": "Tablet", + "Sales": 150 + }, + { + "Product": "Smartphone", + "Sales": 300 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "Product" + ], + "y": [ + "Sales" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "颜色", + "dataType": "string" + }, + { + "name": "数量", + "dataType": "number" + } + ], + "data": [ + { + "颜色": "红色", + "数量": 100 + }, + { + "颜色": "蓝色", + "数量": 200 + }, + { + "颜色": "绿色", + "数量": 150 + }, + { + "颜色": "黄色", + "数量": 75 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "颜色" + ], + "y": [ + "数量" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "城市", + "dataType": "string" + }, + { + "name": "平均气温", + "dataType": "number" + } + ], + "data": [ + { + "城市": "伦敦", + "平均气温": 11 + }, + { + "城市": "东京", + "平均气温": 15 + }, + { + "城市": "纽约", + "平均气温": 13 + }, + { + "城市": "巴黎", + "平均气温": 12 + }, + { + "城市": "悉尼", + "平均气温": 17 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "城市" + ], + "y": [ + "平均气温" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "星座", + "dataType": "string" + }, + { + "name": "人数", + "dataType": "number" + } + ], + "data": [ + { + "星座": "白羊座", + "人数": 120 + }, + { + "星座": "金牛座", + "人数": 130 + }, + { + "星座": "双子座", + "人数": 110 + }, + { + "星座": "巨蟹座", + "人数": 90 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "星座" + ], + "y": [ + "人数" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Activity", + "dataType": "string" + }, + { + "name": "Duration (hrs)", + "dataType": "number" + } + ], + "data": [ + { + "Activity": "Running", + "Duration (hrs)": 5 + }, + { + "Activity": "Swimming", + "Duration (hrs)": 3 + }, + { + "Activity": "Cycling", + "Duration (hrs)": 4 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "Activity" + ], + "y": [ + "Duration (hrs)" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "交通工具", + "dataType": "string" + }, + { + "name": "数量", + "dataType": "number" + } + ], + "data": [ + { + "交通工具": "汽车", + "数量": 120 + }, + { + "交通工具": "自行车", + "数量": 80 + }, + { + "交通工具": "公交车", + "数量": 50 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "交通工具" + ], + "y": [ + "数量" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "site", + "dataType": "string" + }, + { + "name": "yield", + "dataType": "number" + } + ], + "data": [ + { + "site": "University Farm", + "yield": 27 + }, + { + "site": "Waseca", + "yield": 48.86667 + }, + { + "site": "Morris", + "yield": 27.43334 + }, + { + "site": "Crookston", + "yield": 39.93333 + }, + { + "site": "Grand Rapids", + "yield": 32.96667 + }, + { + "site": "Duluth", + "yield": 28.96667 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "site" + ], + "y": [ + "yield" + ] + } + } + ] +}, + { + "source": { + "metas": [ + { + "name": "城市", + "dataType": "string" + }, + { + "name": "人口", + "dataType": "number" + } + ], + "data": [ + { + "城市": "北京", + "人口": 21542000 + }, + { + "城市": "上海", + "人口": 24256800 + }, + { + "城市": "广州", + "人口": 13081000 + }, + { + "城市": "深圳", + "人口": 10969000 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "城市" + ], + "y": [ + "人口" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "产品类别", + "dataType": "string" + }, + { + "name": "销量", + "dataType": "number" + } + ], + "data": [ + { + "产品类别": "电子产品", + "销量": 500 + }, + { + "产品类别": "家居用品", + "销量": 300 + }, + { + "产品类别": "服装", + "销量": 450 + }, + { + "产品类别": "食品", + "销量": 600 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "产品类别" + ], + "y": [ + "销量" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "项目阶段", + "dataType": "string" + }, + { + "name": "完成百分比", + "dataType": "number" + } + ], + "data": [ + { + "项目阶段": "需求分析", + "完成百分比": 100 + }, + { + "项目阶段": "设计", + "完成百分比": 80 + }, + { + "项目阶段": "开发", + "完成百分比": 60 + }, + { + "项目阶段": "测试", + "完成百分比": 40 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "项目阶段" + ], + "y": [ + "完成百分比" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "学科", + "dataType": "string" + }, + { + "name": "平均分数", + "dataType": "number" + } + ], + "data": [ + { + "学科": "数学", + "平均分数": 85 + }, + { + "学科": "英语", + "平均分数": 80 + }, + { + "学科": "物理", + "平均分数": 88 + }, + { + "学科": "化学", + "平均分数": 82 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "学科" + ], + "y": [ + "平均分数" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "年龄段", + "dataType": "string" + }, + { + "name": "用户数", + "dataType": "number" + } + ], + "data": [ + { + "年龄段": "18-24岁", + "用户数": 1500 + }, + { + "年龄段": "25-34岁", + "用户数": 2000 + }, + { + "年龄段": "35-44岁", + "用户数": 1800 + }, + { + "年龄段": "45岁以上", + "用户数": 1200 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "年龄段" + ], + "y": [ + "用户数" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "季度", + "dataType": "string" + }, + { + "name": "利润", + "dataType": "number" + } + ], + "data": [ + { + "季度": "Q1", + "利润": 500000 + }, + { + "季度": "Q2", + "利润": 550000 + }, + { + "季度": "Q3", + "利润": 600000 + }, + { + "季度": "Q4", + "利润": 650000 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "季度" + ], + "y": [ + "利润" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "国家", + "dataType": "string" + }, + { + "name": "GDP", + "dataType": "number" + } + ], + "data": [ + { + "国家": "美国", + "GDP": 21439453 + }, + { + "国家": "中国", + "GDP": 14140163 + }, + { + "国家": "日本", + "GDP": 5177086 + }, + { + "国家": "德国", + "GDP": 3885000 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "国家" + ], + "y": [ + "GDP" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "部门", + "dataType": "string" + }, + { + "name": "员工数", + "dataType": "number" + } + ], + "data": [ + { + "部门": "销售部", + "员工数": 50 + }, + { + "部门": "技术部", + "员工数": 70 + }, + { + "部门": "市场部", + "员工数": 40 + }, + { + "部门": "人力资源部", + "员工数": 30 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "部门" + ], + "y": [ + "员工数" + ] + } + } + ] + } +] diff --git a/evaluations/datastes/recommend/column/02_split.json b/evaluations/datastes/recommend/column/02_split.json new file mode 100644 index 0000000..ccc52c8 --- /dev/null +++ b/evaluations/datastes/recommend/column/02_split.json @@ -0,0 +1,3182 @@ +[ + { + "source": { + "metas": [ + { + "name": "地区", + "dataType": "string" + }, + { + "name": "销售额", + "dataType": "number" + }, + { + "name": "产品类别", + "dataType": "string" + } + ], + "data": [ + { + "地区": "北区", + "销售额": 750, + "产品类别": "电子产品" + }, + { + "地区": "南区", + "销售额": 300, + "产品类别": "生活用品" + }, + { + "地区": "西区", + "销售额": 900, + "产品类别": "服装" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "地区" + ], + "y": [ + "销售额" + ], + "s": [ + "产品类别" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "City", + "dataType": "string" + }, + { + "name": "Population", + "dataType": "number" + }, + { + "name": "Continent", + "dataType": "string" + } + ], + "data": [ + { + "City": "New York", + "Population": 8419000, + "Continent": "North America" + }, + { + "City": "London", + "Population": 8982000, + "Continent": "Europe" + }, + { + "City": "Tokyo", + "Population": 13929000, + "Continent": "Asia" + }, + { + "City": "Cairo", + "Population": 9908000, + "Continent": "Africa" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "City" + ], + "y": [ + "Population" + ], + "s": [ + "Continent" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Month", + "dataType": "string" + }, + { + "name": "Rainfall", + "dataType": "number" + }, + { + "name": "City", + "dataType": "string" + } + ], + "data": [ + { + "Month": "January", + "Rainfall": 120, + "City": "Shanghai" + }, + { + "Month": "February", + "Rainfall": 85, + "City": "Shanghai" + }, + { + "Month": "January", + "Rainfall": 200, + "City": "London" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "Month" + ], + "y": [ + "Rainfall" + ], + "s": [ + "City" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "国家", + "dataType": "string" + }, + { + "name": "GDP", + "dataType": "number" + }, + { + "name": "洲", + "dataType": "string" + } + ], + "data": [ + { + "国家": "中国", + "GDP": 14342903, + "洲": "亚洲" + }, + { + "国家": "美国", + "GDP": 21433300, + "洲": "北美洲" + }, + { + "国家": "德国", + "GDP": 3845630, + "洲": "欧洲" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "国家" + ], + "y": [ + "GDP" + ], + "s": [ + "洲" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Year", + "dataType": "string" + }, + { + "name": "Sales", + "dataType": "number" + }, + { + "name": "Region", + "dataType": "string" + } + ], + "data": [ + { + "Year": "2019", + "Sales": 2000000, + "Region": "USA" + }, + { + "Year": "2020", + "Sales": 2200000, + "Region": "USA" + }, + { + "Year": "2019", + "Sales": 1500000, + "Region": "China" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "Year" + ], + "y": [ + "Sales" + ], + "s": [ + "Region" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "产品", + "dataType": "string" + }, + { + "name": "库存量", + "dataType": "number" + }, + { + "name": "仓库", + "dataType": "string" + } + ], + "data": [ + { + "产品": "电视", + "库存量": 500, + "仓库": "A" + }, + { + "产品": "空调", + "库存量": 100, + "仓库": "B" + }, + { + "产品": "冰箱", + "库存量": 300, + "仓库": "C" + }, + { + "产品": "洗衣机", + "库存量": 400, + "仓库": "A" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "产品" + ], + "y": [ + "库存量" + ], + "s": [ + "仓库" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Genre", + "dataType": "string" + }, + { + "name": "Sales", + "dataType": "number" + }, + { + "name": "Platform", + "dataType": "string" + } + ], + "data": [ + { + "Genre": "Action", + "Sales": 500000, + "Platform": "PC" + }, + { + "Genre": "Adventure", + "Sales": 300000, + "Platform": "Console" + }, + { + "Genre": "Sports", + "Sales": 200000, + "Platform": "Mobile" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "Genre" + ], + "y": [ + "Sales" + ], + "s": [ + "Platform" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "纪元", + "dataType": "string" + }, + { + "name": "发电量", + "dataType": "number" + }, + { + "name": "能源类型", + "dataType": "string" + } + ], + "data": [ + { + "纪元": "2021年", + "发电量": 5000, + "能源类型": "风能" + }, + { + "纪元": "2021年", + "发电量": 2000, + "能源类型": "太阳能" + }, + { + "纪元": "2022年", + "发电量": 5500, + "能源类型": "风能" + }, + { + "纪元": "2022年", + "发电量": 3000, + "能源类型": "太阳能" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "纪元" + ], + "y": [ + "发电量" + ], + "s": [ + "能源类型" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Vehicle", + "dataType": "string" + }, + { + "name": "Units Sold", + "dataType": "number" + }, + { + "name": "Region", + "dataType": "string" + } + ], + "data": [ + { + "Vehicle": "Sedan", + "Units Sold": 9000, + "Region": "Europe" + }, + { + "Vehicle": "SUV", + "Units Sold": 12000, + "Region": "North America" + }, + { + "Vehicle": "Truck", + "Units Sold": 3000, + "Region": "Asia" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "Vehicle" + ], + "y": [ + "Units Sold" + ], + "s": [ + "Region" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "医院", + "dataType": "string" + }, + { + "name": "患者人数", + "dataType": "number" + }, + { + "name": "科室", + "dataType": "string" + } + ], + "data": [ + { + "医院": "人民医院", + "患者人数": 500, + "科室": "内科" + }, + { + "医院": "人民医院", + "患者人数": 300, + "科室": "外科" + }, + { + "医院": "协和医院", + "患者人数": 400, + "科室": "内科" + }, + { + "医院": "协和医院", + "患者人数": 350, + "科室": "外科" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "医院" + ], + "y": [ + "患者人数" + ], + "s": [ + "科室" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "state", + "dataType": "string" + }, + { + "name": "population", + "dataType": "number" + }, + { + "name": "age", + "dataType": "string" + } + ], + "data": [ + { + "state": "AL", + "age": "<10", + "population": 598478 + }, + { + "state": "AK", + "age": "<10", + "population": 106741 + }, + { + "state": "AZ", + "age": "<10", + "population": 892083 + }, + { + "state": "AR", + "age": "<10", + "population": 392177 + }, + { + "state": "CA", + "age": "<10", + "population": 5038433 + }, + { + "state": "CO", + "age": "<10", + "population": 690830 + }, + { + "state": "CT", + "age": "<10", + "population": 399369 + }, + { + "state": "DE", + "age": "<10", + "population": 112177 + }, + { + "state": "DC", + "age": "<10", + "population": 74377 + }, + { + "state": "FL", + "age": "<10", + "population": 2211012 + }, + { + "state": "GA", + "age": "<10", + "population": 1363631 + }, + { + "state": "HI", + "age": "<10", + "population": 176484 + }, + { + "state": "ID", + "age": "<10", + "population": 236658 + }, + { + "state": "IL", + "age": "<10", + "population": 1619682 + }, + { + "state": "IN", + "age": "<10", + "population": 863029 + }, + { + "state": "IA", + "age": "<10", + "population": 401712 + }, + { + "state": "KS", + "age": "<10", + "population": 401751 + }, + { + "state": "KY", + "age": "<10", + "population": 555615 + }, + { + "state": "LA", + "age": "<10", + "population": 622061 + }, + { + "state": "ME", + "age": "<10", + "population": 137954 + }, + { + "state": "MD", + "age": "<10", + "population": 741952 + }, + { + "state": "MA", + "age": "<10", + "population": 737748 + }, + { + "state": "MI", + "age": "<10", + "population": 1181424 + }, + { + "state": "MN", + "age": "<10", + "population": 711604 + }, + { + "state": "MS", + "age": "<10", + "population": 400288 + }, + { + "state": "MO", + "age": "<10", + "population": 763948 + }, + { + "state": "MT", + "age": "<10", + "population": 126020 + }, + { + "state": "NE", + "age": "<10", + "population": 263518 + }, + { + "state": "NV", + "age": "<10", + "population": 369362 + }, + { + "state": "NH", + "age": "<10", + "population": 138762 + }, + { + "state": "NJ", + "age": "<10", + "population": 1079136 + }, + { + "state": "NM", + "age": "<10", + "population": 276468 + }, + { + "state": "NY", + "age": "<10", + "population": 2319945 + }, + { + "state": "NC", + "age": "<10", + "population": 1250298 + }, + { + "state": "ND", + "age": "<10", + "population": 99477 + }, + { + "state": "OH", + "age": "<10", + "population": 1422838 + }, + { + "state": "OK", + "age": "<10", + "population": 534481 + }, + { + "state": "OR", + "age": "<10", + "population": 474456 + }, + { + "state": "PA", + "age": "<10", + "population": 1458931 + }, + { + "state": "RI", + "age": "<10", + "population": 111377 + }, + { + "state": "SC", + "age": "<10", + "population": 599591 + }, + { + "state": "SD", + "age": "<10", + "population": 120366 + }, + { + "state": "TN", + "age": "<10", + "population": 818404 + }, + { + "state": "TX", + "age": "<10", + "population": 3983091 + }, + { + "state": "UT", + "age": "<10", + "population": 513515 + }, + { + "state": "VT", + "age": "<10", + "population": 63768 + }, + { + "state": "VA", + "age": "<10", + "population": 1033629 + }, + { + "state": "WA", + "age": "<10", + "population": 895790 + }, + { + "state": "WV", + "age": "<10", + "population": 207017 + }, + { + "state": "WI", + "age": "<10", + "population": 705648 + }, + { + "state": "WY", + "age": "<10", + "population": 78217 + }, + { + "state": "PR", + "age": "<10", + "population": 389428 + }, + { + "state": "AL", + "age": "10-19", + "population": 638789 + }, + { + "state": "AK", + "age": "10-19", + "population": 99926 + }, + { + "state": "AZ", + "age": "10-19", + "population": 912735 + }, + { + "state": "AR", + "age": "10-19", + "population": 397185 + }, + { + "state": "CA", + "age": "10-19", + "population": 5170341 + }, + { + "state": "CO", + "age": "10-19", + "population": 697447 + }, + { + "state": "CT", + "age": "10-19", + "population": 481065 + }, + { + "state": "DE", + "age": "10-19", + "population": 117854 + }, + { + "state": "DC", + "age": "10-19", + "population": 62783 + }, + { + "state": "FL", + "age": "10-19", + "population": 2331102 + }, + { + "state": "GA", + "age": "10-19", + "population": 1421557 + }, + { + "state": "HI", + "age": "10-19", + "population": 163559 + }, + { + "state": "ID", + "age": "10-19", + "population": 239509 + }, + { + "state": "IL", + "age": "10-19", + "population": 1715984 + }, + { + "state": "IN", + "age": "10-19", + "population": 905594 + }, + { + "state": "IA", + "age": "10-19", + "population": 418667 + }, + { + "state": "KS", + "age": "10-19", + "population": 402092 + }, + { + "state": "KY", + "age": "10-19", + "population": 575866 + }, + { + "state": "LA", + "age": "10-19", + "population": 613633 + }, + { + "state": "ME", + "age": "10-19", + "population": 155774 + }, + { + "state": "MD", + "age": "10-19", + "population": 764730 + }, + { + "state": "MA", + "age": "10-19", + "population": 862371 + }, + { + "state": "MI", + "age": "10-19", + "population": 1324071 + }, + { + "state": "MN", + "age": "10-19", + "population": 714399 + }, + { + "state": "MS", + "age": "10-19", + "population": 421329 + }, + { + "state": "MO", + "age": "10-19", + "population": 792935 + }, + { + "state": "MT", + "age": "10-19", + "population": 126294 + }, + { + "state": "NE", + "age": "10-19", + "population": 257610 + }, + { + "state": "NV", + "age": "10-19", + "population": 360263 + }, + { + "state": "NH", + "age": "10-19", + "population": 167495 + }, + { + "state": "NJ", + "age": "10-19", + "population": 1153625 + }, + { + "state": "NM", + "age": "10-19", + "population": 282662 + }, + { + "state": "NY", + "age": "10-19", + "population": 2445591 + }, + { + "state": "NC", + "age": "10-19", + "population": 1310398 + }, + { + "state": "ND", + "age": "10-19", + "population": 91069 + }, + { + "state": "OH", + "age": "10-19", + "population": 1530264 + }, + { + "state": "OK", + "age": "10-19", + "population": 522282 + }, + { + "state": "OR", + "age": "10-19", + "population": 485345 + }, + { + "state": "PA", + "age": "10-19", + "population": 1608018 + }, + { + "state": "RI", + "age": "10-19", + "population": 136885 + }, + { + "state": "SC", + "age": "10-19", + "population": 619144 + }, + { + "state": "SD", + "age": "10-19", + "population": 113383 + }, + { + "state": "TN", + "age": "10-19", + "population": 842873 + }, + { + "state": "TX", + "age": "10-19", + "population": 3910528 + }, + { + "state": "UT", + "age": "10-19", + "population": 479126 + }, + { + "state": "VT", + "age": "10-19", + "population": 79351 + }, + { + "state": "VA", + "age": "10-19", + "population": 1065461 + }, + { + "state": "WA", + "age": "10-19", + "population": 882812 + }, + { + "state": "WV", + "age": "10-19", + "population": 218547 + }, + { + "state": "WI", + "age": "10-19", + "population": 755224 + }, + { + "state": "WY", + "age": "10-19", + "population": 75535 + }, + { + "state": "PR", + "age": "10-19", + "population": 479749 + }, + { + "state": "AL", + "age": "20-29", + "population": 661666 + }, + { + "state": "AK", + "age": "20-29", + "population": 120674 + }, + { + "state": "AZ", + "age": "20-29", + "population": 939804 + }, + { + "state": "AR", + "age": "20-29", + "population": 399698 + }, + { + "state": "CA", + "age": "20-29", + "population": 5809455 + }, + { + "state": "CO", + "age": "20-29", + "population": 780508 + }, + { + "state": "CT", + "age": "20-29", + "population": 462323 + }, + { + "state": "DE", + "age": "20-29", + "population": 127554 + }, + { + "state": "DC", + "age": "20-29", + "population": 136976 + }, + { + "state": "FL", + "age": "20-29", + "population": 2597830 + }, + { + "state": "GA", + "age": "20-29", + "population": 1418696 + }, + { + "state": "HI", + "age": "20-29", + "population": 204336 + }, + { + "state": "ID", + "age": "20-29", + "population": 218684 + }, + { + "state": "IL", + "age": "20-29", + "population": 1789739 + }, + { + "state": "IN", + "age": "20-29", + "population": 905590 + }, + { + "state": "IA", + "age": "20-29", + "population": 419456 + }, + { + "state": "KS", + "age": "20-29", + "population": 406956 + }, + { + "state": "KY", + "age": "20-29", + "population": 593819 + }, + { + "state": "LA", + "age": "20-29", + "population": 683606 + }, + { + "state": "ME", + "age": "20-29", + "population": 156359 + }, + { + "state": "MD", + "age": "20-29", + "population": 815346 + }, + { + "state": "MA", + "age": "20-29", + "population": 971340 + }, + { + "state": "MI", + "age": "20-29", + "population": 1338179 + }, + { + "state": "MN", + "age": "20-29", + "population": 728222 + }, + { + "state": "MS", + "age": "20-29", + "population": 414195 + }, + { + "state": "MO", + "age": "20-29", + "population": 831725 + }, + { + "state": "MT", + "age": "20-29", + "population": 136346 + }, + { + "state": "NE", + "age": "20-29", + "population": 260646 + }, + { + "state": "NV", + "age": "20-29", + "population": 392834 + }, + { + "state": "NH", + "age": "20-29", + "population": 167554 + }, + { + "state": "NJ", + "age": "20-29", + "population": 1139927 + }, + { + "state": "NM", + "age": "20-29", + "population": 289801 + }, + { + "state": "NY", + "age": "20-29", + "population": 2894266 + }, + { + "state": "NC", + "age": "20-29", + "population": 1350242 + }, + { + "state": "ND", + "age": "20-29", + "population": 124509 + }, + { + "state": "OH", + "age": "20-29", + "population": 1535538 + }, + { + "state": "OK", + "age": "20-29", + "population": 552528 + }, + { + "state": "OR", + "age": "20-29", + "population": 538596 + }, + { + "state": "PA", + "age": "20-29", + "population": 1712448 + }, + { + "state": "RI", + "age": "20-29", + "population": 153674 + }, + { + "state": "SC", + "age": "20-29", + "population": 667523 + }, + { + "state": "SD", + "age": "20-29", + "population": 116748 + }, + { + "state": "TN", + "age": "20-29", + "population": 895337 + }, + { + "state": "TX", + "age": "20-29", + "population": 3946447 + }, + { + "state": "UT", + "age": "20-29", + "population": 465219 + }, + { + "state": "VT", + "age": "20-29", + "population": 81765 + }, + { + "state": "VA", + "age": "20-29", + "population": 1170634 + }, + { + "state": "WA", + "age": "20-29", + "population": 1004428 + }, + { + "state": "WV", + "age": "20-29", + "population": 232027 + }, + { + "state": "WI", + "age": "20-29", + "population": 760961 + }, + { + "state": "WY", + "age": "20-29", + "population": 82898 + }, + { + "state": "PR", + "age": "20-29", + "population": 480184 + }, + { + "state": "AL", + "age": "30-39", + "population": 603013 + }, + { + "state": "AK", + "age": "30-39", + "population": 102008 + }, + { + "state": "AZ", + "age": "30-39", + "population": 857054 + }, + { + "state": "AR", + "age": "30-39", + "population": 372998 + }, + { + "state": "CA", + "age": "30-39", + "population": 5354112 + }, + { + "state": "CO", + "age": "30-39", + "population": 766382 + }, + { + "state": "CT", + "age": "30-39", + "population": 424890 + }, + { + "state": "DE", + "age": "30-39", + "population": 114063 + }, + { + "state": "DC", + "age": "30-39", + "population": 121520 + }, + { + "state": "FL", + "age": "30-39", + "population": 2416176 + }, + { + "state": "GA", + "age": "30-39", + "population": 1357210 + }, + { + "state": "HI", + "age": "30-39", + "population": 187590 + }, + { + "state": "ID", + "age": "30-39", + "population": 209500 + }, + { + "state": "IL", + "age": "30-39", + "population": 1721954 + }, + { + "state": "IN", + "age": "30-39", + "population": 827086 + }, + { + "state": "IA", + "age": "30-39", + "population": 383638 + }, + { + "state": "KS", + "age": "30-39", + "population": 368732 + }, + { + "state": "KY", + "age": "30-39", + "population": 558201 + }, + { + "state": "LA", + "age": "30-39", + "population": 615411 + }, + { + "state": "ME", + "age": "30-39", + "population": 147695 + }, + { + "state": "MD", + "age": "30-39", + "population": 784097 + }, + { + "state": "MA", + "age": "30-39", + "population": 847306 + }, + { + "state": "MI", + "age": "30-39", + "population": 1162186 + }, + { + "state": "MN", + "age": "30-39", + "population": 715583 + }, + { + "state": "MS", + "age": "30-39", + "population": 374724 + }, + { + "state": "MO", + "age": "30-39", + "population": 763002 + }, + { + "state": "MT", + "age": "30-39", + "population": 125004 + }, + { + "state": "NE", + "age": "30-39", + "population": 244236 + }, + { + "state": "NV", + "age": "30-39", + "population": 390261 + }, + { + "state": "NH", + "age": "30-39", + "population": 151409 + }, + { + "state": "NJ", + "age": "30-39", + "population": 1143452 + }, + { + "state": "NM", + "age": "30-39", + "population": 260579 + }, + { + "state": "NY", + "age": "30-39", + "population": 2605355 + }, + { + "state": "NC", + "age": "30-39", + "population": 1268976 + }, + { + "state": "ND", + "age": "30-39", + "population": 94713 + }, + { + "state": "OH", + "age": "30-39", + "population": 1398724 + }, + { + "state": "OK", + "age": "30-39", + "population": 501392 + }, + { + "state": "OR", + "age": "30-39", + "population": 537767 + }, + { + "state": "PA", + "age": "30-39", + "population": 1520409 + }, + { + "state": "RI", + "age": "30-39", + "population": 126503 + }, + { + "state": "SC", + "age": "30-39", + "population": 596491 + }, + { + "state": "SD", + "age": "30-39", + "population": 105499 + }, + { + "state": "TN", + "age": "30-39", + "population": 837313 + }, + { + "state": "TX", + "age": "30-39", + "population": 3770534 + }, + { + "state": "UT", + "age": "30-39", + "population": 436010 + }, + { + "state": "VT", + "age": "30-39", + "population": 70092 + }, + { + "state": "VA", + "age": "30-39", + "population": 1112111 + }, + { + "state": "WA", + "age": "30-39", + "population": 970613 + }, + { + "state": "WV", + "age": "30-39", + "population": 220494 + }, + { + "state": "WI", + "age": "30-39", + "population": 714479 + }, + { + "state": "WY", + "age": "30-39", + "population": 76912 + }, + { + "state": "PR", + "age": "30-39", + "population": 441842 + }, + { + "state": "AL", + "age": "40-49", + "population": 625599 + }, + { + "state": "AK", + "age": "40-49", + "population": 91539 + }, + { + "state": "AZ", + "age": "40-49", + "population": 833290 + }, + { + "state": "AR", + "age": "40-49", + "population": 370157 + }, + { + "state": "CA", + "age": "40-49", + "population": 5179258 + }, + { + "state": "CO", + "age": "40-49", + "population": 705450 + }, + { + "state": "CT", + "age": "40-49", + "population": 496265 + }, + { + "state": "DE", + "age": "40-49", + "population": 117588 + }, + { + "state": "DC", + "age": "40-49", + "population": 80570 + }, + { + "state": "FL", + "age": "40-49", + "population": 2575576 + }, + { + "state": "GA", + "age": "40-49", + "population": 1404698 + }, + { + "state": "HI", + "age": "40-49", + "population": 176904 + }, + { + "state": "ID", + "age": "40-49", + "population": 194678 + }, + { + "state": "IL", + "age": "40-49", + "population": 1697069 + }, + { + "state": "IN", + "age": "40-49", + "population": 844059 + }, + { + "state": "IA", + "age": "40-49", + "population": 370719 + }, + { + "state": "KS", + "age": "40-49", + "population": 344427 + }, + { + "state": "KY", + "age": "40-49", + "population": 580553 + }, + { + "state": "LA", + "age": "40-49", + "population": 571991 + }, + { + "state": "ME", + "age": "40-49", + "population": 176908 + }, + { + "state": "MD", + "age": "40-49", + "population": 815875 + }, + { + "state": "MA", + "age": "40-49", + "population": 916106 + }, + { + "state": "MI", + "age": "40-49", + "population": 1283122 + }, + { + "state": "MN", + "age": "40-49", + "population": 692201 + }, + { + "state": "MS", + "age": "40-49", + "population": 377165 + }, + { + "state": "MO", + "age": "40-49", + "population": 750989 + }, + { + "state": "MT", + "age": "40-49", + "population": 116502 + }, + { + "state": "NE", + "age": "40-49", + "population": 222479 + }, + { + "state": "NV", + "age": "40-49", + "population": 387272 + }, + { + "state": "NH", + "age": "40-49", + "population": 182703 + }, + { + "state": "NJ", + "age": "40-49", + "population": 1254602 + }, + { + "state": "NM", + "age": "40-49", + "population": 244346 + }, + { + "state": "NY", + "age": "40-49", + "population": 2617327 + }, + { + "state": "NC", + "age": "40-49", + "population": 1357746 + }, + { + "state": "ND", + "age": "40-49", + "population": 80327 + }, + { + "state": "OH", + "age": "40-49", + "population": 1490959 + }, + { + "state": "OK", + "age": "40-49", + "population": 469410 + }, + { + "state": "OR", + "age": "40-49", + "population": 507826 + }, + { + "state": "PA", + "age": "40-49", + "population": 1645291 + }, + { + "state": "RI", + "age": "40-49", + "population": 137892 + }, + { + "state": "SC", + "age": "40-49", + "population": 619792 + }, + { + "state": "SD", + "age": "40-49", + "population": 96288 + }, + { + "state": "TN", + "age": "40-49", + "population": 866343 + }, + { + "state": "TX", + "age": "40-49", + "population": 3545746 + }, + { + "state": "UT", + "age": "40-49", + "population": 328569 + }, + { + "state": "VT", + "age": "40-49", + "population": 79982 + }, + { + "state": "VA", + "age": "40-49", + "population": 1134928 + }, + { + "state": "WA", + "age": "40-49", + "population": 921205 + }, + { + "state": "WV", + "age": "40-49", + "population": 238218 + }, + { + "state": "WI", + "age": "40-49", + "population": 732280 + }, + { + "state": "WY", + "age": "40-49", + "population": 68464 + }, + { + "state": "PR", + "age": "40-49", + "population": 456009 + }, + { + "state": "AL", + "age": "50-59", + "population": 673864 + }, + { + "state": "AK", + "age": "50-59", + "population": 104569 + }, + { + "state": "AZ", + "age": "50-59", + "population": 834858 + }, + { + "state": "AR", + "age": "50-59", + "population": 395070 + }, + { + "state": "CA", + "age": "50-59", + "population": 5042094 + }, + { + "state": "CO", + "age": "50-59", + "population": 725661 + }, + { + "state": "CT", + "age": "50-59", + "population": 546361 + }, + { + "state": "DE", + "age": "50-59", + "population": 133331 + }, + { + "state": "DC", + "age": "50-59", + "population": 74779 + }, + { + "state": "FL", + "age": "50-59", + "population": 2762983 + }, + { + "state": "GA", + "age": "50-59", + "population": 1337985 + }, + { + "state": "HI", + "age": "50-59", + "population": 188438 + }, + { + "state": "ID", + "age": "50-59", + "population": 205170 + }, + { + "state": "IL", + "age": "50-59", + "population": 1773366 + }, + { + "state": "IN", + "age": "50-59", + "population": 911778 + }, + { + "state": "IA", + "age": "50-59", + "population": 427554 + }, + { + "state": "KS", + "age": "50-59", + "population": 389834 + }, + { + "state": "KY", + "age": "50-59", + "population": 623164 + }, + { + "state": "LA", + "age": "50-59", + "population": 631936 + }, + { + "state": "ME", + "age": "50-59", + "population": 215787 + }, + { + "state": "MD", + "age": "50-59", + "population": 862778 + }, + { + "state": "MA", + "age": "50-59", + "population": 979128 + }, + { + "state": "MI", + "age": "50-59", + "population": 1454462 + }, + { + "state": "MN", + "age": "50-59", + "population": 782655 + }, + { + "state": "MS", + "age": "50-59", + "population": 400164 + }, + { + "state": "MO", + "age": "50-59", + "population": 857534 + }, + { + "state": "MT", + "age": "50-59", + "population": 149800 + }, + { + "state": "NE", + "age": "50-59", + "population": 250911 + }, + { + "state": "NV", + "age": "50-59", + "population": 373757 + }, + { + "state": "NH", + "age": "50-59", + "population": 217950 + }, + { + "state": "NJ", + "age": "50-59", + "population": 1307263 + }, + { + "state": "NM", + "age": "50-59", + "population": 280363 + }, + { + "state": "NY", + "age": "50-59", + "population": 2755620 + }, + { + "state": "NC", + "age": "50-59", + "population": 1356117 + }, + { + "state": "ND", + "age": "50-59", + "population": 98688 + }, + { + "state": "OH", + "age": "50-59", + "population": 1677794 + }, + { + "state": "OK", + "age": "50-59", + "population": 512850 + }, + { + "state": "OR", + "age": "50-59", + "population": 534421 + }, + { + "state": "PA", + "age": "50-59", + "population": 1881378 + }, + { + "state": "RI", + "age": "50-59", + "population": 156127 + }, + { + "state": "SC", + "age": "50-59", + "population": 663408 + }, + { + "state": "SD", + "age": "50-59", + "population": 117012 + }, + { + "state": "TN", + "age": "50-59", + "population": 904272 + }, + { + "state": "TX", + "age": "50-59", + "population": 3344930 + }, + { + "state": "UT", + "age": "50-59", + "population": 301596 + }, + { + "state": "VT", + "age": "50-59", + "population": 99521 + }, + { + "state": "VA", + "age": "50-59", + "population": 1162028 + }, + { + "state": "WA", + "age": "50-59", + "population": 970407 + }, + { + "state": "WV", + "age": "50-59", + "population": 269346 + }, + { + "state": "WI", + "age": "50-59", + "population": 848672 + }, + { + "state": "WY", + "age": "50-59", + "population": 81018 + }, + { + "state": "PR", + "age": "50-59", + "population": 452503 + }, + { + "state": "AL", + "age": "60-69", + "population": 548376 + }, + { + "state": "AK", + "age": "60-69", + "population": 70473 + }, + { + "state": "AZ", + "age": "60-69", + "population": 737884 + }, + { + "state": "AR", + "age": "60-69", + "population": 329734 + }, + { + "state": "CA", + "age": "60-69", + "population": 3737461 + }, + { + "state": "CO", + "age": "60-69", + "population": 563376 + }, + { + "state": "CT", + "age": "60-69", + "population": 400995 + }, + { + "state": "DE", + "age": "60-69", + "population": 110822 + }, + { + "state": "DC", + "age": "60-69", + "population": 56984 + }, + { + "state": "FL", + "age": "60-69", + "population": 2404659 + }, + { + "state": "GA", + "age": "60-69", + "population": 998253 + }, + { + "state": "HI", + "age": "60-69", + "population": 164957 + }, + { + "state": "ID", + "age": "60-69", + "population": 179429 + }, + { + "state": "IL", + "age": "60-69", + "population": 1326121 + }, + { + "state": "IN", + "age": "60-69", + "population": 704523 + }, + { + "state": "IA", + "age": "60-69", + "population": 344037 + }, + { + "state": "KS", + "age": "60-69", + "population": 300759 + }, + { + "state": "KY", + "age": "60-69", + "population": 495736 + }, + { + "state": "LA", + "age": "60-69", + "population": 488846 + }, + { + "state": "ME", + "age": "60-69", + "population": 179540 + }, + { + "state": "MD", + "age": "60-69", + "population": 636309 + }, + { + "state": "MA", + "age": "60-69", + "population": 737805 + }, + { + "state": "MI", + "age": "60-69", + "population": 1148131 + }, + { + "state": "MN", + "age": "60-69", + "population": 577313 + }, + { + "state": "MS", + "age": "60-69", + "population": 319443 + }, + { + "state": "MO", + "age": "60-69", + "population": 668878 + }, + { + "state": "MT", + "age": "60-69", + "population": 130977 + }, + { + "state": "NE", + "age": "60-69", + "population": 195705 + }, + { + "state": "NV", + "age": "60-69", + "population": 309651 + }, + { + "state": "NH", + "age": "60-69", + "population": 164287 + }, + { + "state": "NJ", + "age": "60-69", + "population": 946399 + }, + { + "state": "NM", + "age": "60-69", + "population": 239044 + }, + { + "state": "NY", + "age": "60-69", + "population": 2095207 + }, + { + "state": "NC", + "age": "60-69", + "population": 1095320 + }, + { + "state": "ND", + "age": "60-69", + "population": 73825 + }, + { + "state": "OH", + "age": "60-69", + "population": 1320776 + }, + { + "state": "OK", + "age": "60-69", + "population": 404704 + }, + { + "state": "OR", + "age": "60-69", + "population": 490894 + }, + { + "state": "PA", + "age": "60-69", + "population": 1491536 + }, + { + "state": "RI", + "age": "60-69", + "population": 117653 + }, + { + "state": "SC", + "age": "60-69", + "population": 579856 + }, + { + "state": "SD", + "age": "60-69", + "population": 92824 + }, + { + "state": "TN", + "age": "60-69", + "population": 741045 + }, + { + "state": "TX", + "age": "60-69", + "population": 2431494 + }, + { + "state": "UT", + "age": "60-69", + "population": 230007 + }, + { + "state": "VT", + "age": "60-69", + "population": 82136 + }, + { + "state": "VA", + "age": "60-69", + "population": 881763 + }, + { + "state": "WA", + "age": "60-69", + "population": 784208 + }, + { + "state": "WV", + "age": "60-69", + "population": 243108 + }, + { + "state": "WI", + "age": "60-69", + "population": 645015 + }, + { + "state": "WY", + "age": "60-69", + "population": 67484 + }, + { + "state": "PR", + "age": "60-69", + "population": 411924 + }, + { + "state": "AL", + "age": "70-79", + "population": 316598 + }, + { + "state": "AK", + "age": "70-79", + "population": 28422 + }, + { + "state": "AZ", + "age": "70-79", + "population": 466153 + }, + { + "state": "AR", + "age": "70-79", + "population": 197985 + }, + { + "state": "CA", + "age": "70-79", + "population": 2011678 + }, + { + "state": "CO", + "age": "70-79", + "population": 274466 + }, + { + "state": "CT", + "age": "70-79", + "population": 217827 + }, + { + "state": "DE", + "age": "70-79", + "population": 65369 + }, + { + "state": "DC", + "age": "70-79", + "population": 31362 + }, + { + "state": "FL", + "age": "70-79", + "population": 1615547 + }, + { + "state": "GA", + "age": "70-79", + "population": 528108 + }, + { + "state": "HI", + "age": "70-79", + "population": 85345 + }, + { + "state": "ID", + "age": "70-79", + "population": 97621 + }, + { + "state": "IL", + "age": "70-79", + "population": 728821 + }, + { + "state": "IN", + "age": "70-79", + "population": 384788 + }, + { + "state": "IA", + "age": "70-79", + "population": 197223 + }, + { + "state": "KS", + "age": "70-79", + "population": 166104 + }, + { + "state": "KY", + "age": "70-79", + "population": 273961 + }, + { + "state": "LA", + "age": "70-79", + "population": 266123 + }, + { + "state": "ME", + "age": "70-79", + "population": 97899 + }, + { + "state": "MD", + "age": "70-79", + "population": 330736 + }, + { + "state": "MA", + "age": "70-79", + "population": 401931 + }, + { + "state": "MI", + "age": "70-79", + "population": 619722 + }, + { + "state": "MN", + "age": "70-79", + "population": 312906 + }, + { + "state": "MS", + "age": "70-79", + "population": 181195 + }, + { + "state": "MO", + "age": "70-79", + "population": 388086 + }, + { + "state": "MT", + "age": "70-79", + "population": 70528 + }, + { + "state": "NE", + "age": "70-79", + "population": 107650 + }, + { + "state": "NV", + "age": "70-79", + "population": 173499 + }, + { + "state": "NH", + "age": "70-79", + "population": 84791 + }, + { + "state": "NJ", + "age": "70-79", + "population": 523620 + }, + { + "state": "NM", + "age": "70-79", + "population": 135013 + }, + { + "state": "NY", + "age": "70-79", + "population": 1160055 + }, + { + "state": "NC", + "age": "70-79", + "population": 609234 + }, + { + "state": "ND", + "age": "70-79", + "population": 41348 + }, + { + "state": "OH", + "age": "70-79", + "population": 728158 + }, + { + "state": "OK", + "age": "70-79", + "population": 239887 + }, + { + "state": "OR", + "age": "70-79", + "population": 255809 + }, + { + "state": "PA", + "age": "70-79", + "population": 850897 + }, + { + "state": "RI", + "age": "70-79", + "population": 63359 + }, + { + "state": "SC", + "age": "70-79", + "population": 322073 + }, + { + "state": "SD", + "age": "70-79", + "population": 50398 + }, + { + "state": "TN", + "age": "70-79", + "population": 414939 + }, + { + "state": "TX", + "age": "70-79", + "population": 1291486 + }, + { + "state": "UT", + "age": "70-79", + "population": 123674 + }, + { + "state": "VT", + "age": "70-79", + "population": 42978 + }, + { + "state": "VA", + "age": "70-79", + "population": 475141 + }, + { + "state": "WA", + "age": "70-79", + "population": 401094 + }, + { + "state": "WV", + "age": "70-79", + "population": 138134 + }, + { + "state": "WI", + "age": "70-79", + "population": 350772 + }, + { + "state": "WY", + "age": "70-79", + "population": 32819 + }, + { + "state": "PR", + "age": "70-79", + "population": 268783 + }, + { + "state": "AL", + "age": "≥80", + "population": 174781 + }, + { + "state": "AK", + "age": "≥80", + "population": 12503 + }, + { + "state": "AZ", + "age": "≥80", + "population": 254716 + }, + { + "state": "AR", + "age": "≥80", + "population": 113468 + }, + { + "state": "CA", + "age": "≥80", + "population": 1311374 + }, + { + "state": "CO", + "age": "≥80", + "population": 155175 + }, + { + "state": "CT", + "age": "≥80", + "population": 159475 + }, + { + "state": "DE", + "age": "≥80", + "population": 35937 + }, + { + "state": "DC", + "age": "≥80", + "population": 19658 + }, + { + "state": "FL", + "age": "≥80", + "population": 1019566 + }, + { + "state": "GA", + "age": "≥80", + "population": 269182 + }, + { + "state": "HI", + "age": "≥80", + "population": 66060 + }, + { + "state": "ID", + "age": "≥80", + "population": 54234 + }, + { + "state": "IL", + "age": "≥80", + "population": 478948 + }, + { + "state": "IN", + "age": "≥80", + "population": 243131 + }, + { + "state": "IA", + "age": "≥80", + "population": 143583 + }, + { + "state": "KS", + "age": "≥80", + "population": 117637 + }, + { + "state": "KY", + "age": "≥80", + "population": 155074 + }, + { + "state": "LA", + "age": "≥80", + "population": 152063 + }, + { + "state": "ME", + "age": "≥80", + "population": 62007 + }, + { + "state": "MD", + "age": "≥80", + "population": 208079 + }, + { + "state": "MA", + "age": "≥80", + "population": 288408 + }, + { + "state": "MI", + "age": "≥80", + "population": 398303 + }, + { + "state": "MN", + "age": "≥80", + "population": 215985 + }, + { + "state": "MS", + "age": "≥80", + "population": 100689 + }, + { + "state": "MO", + "age": "≥80", + "population": 242554 + }, + { + "state": "MT", + "age": "≥80", + "population": 41920 + }, + { + "state": "NE", + "age": "≥80", + "population": 78504 + }, + { + "state": "NV", + "age": "≥80", + "population": 82273 + }, + { + "state": "NH", + "age": "≥80", + "population": 52552 + }, + { + "state": "NJ", + "age": "≥80", + "population": 367432 + }, + { + "state": "NM", + "age": "≥80", + "population": 74393 + }, + { + "state": "NY", + "age": "≥80", + "population": 804091 + }, + { + "state": "NC", + "age": "≥80", + "population": 342497 + }, + { + "state": "ND", + "age": "≥80", + "population": 32206 + }, + { + "state": "OH", + "age": "≥80", + "population": 481890 + }, + { + "state": "OK", + "age": "≥80", + "population": 138055 + }, + { + "state": "OR", + "age": "≥80", + "population": 157153 + }, + { + "state": "PA", + "age": "≥80", + "population": 615069 + }, + { + "state": "RI", + "age": "≥80", + "population": 51021 + }, + { + "state": "SC", + "age": "≥80", + "population": 166727 + }, + { + "state": "SD", + "age": "≥80", + "population": 38540 + }, + { + "state": "TN", + "age": "≥80", + "population": 227483 + }, + { + "state": "TX", + "age": "≥80", + "population": 732179 + }, + { + "state": "UT", + "age": "≥80", + "population": 70711 + }, + { + "state": "VT", + "age": "≥80", + "population": 26656 + }, + { + "state": "VA", + "age": "≥80", + "population": 274606 + }, + { + "state": "WA", + "age": "≥80", + "population": 242589 + }, + { + "state": "WV", + "age": "≥80", + "population": 79201 + }, + { + "state": "WI", + "age": "≥80", + "population": 241747 + }, + { + "state": "WY", + "age": "≥80", + "population": 19682 + }, + { + "state": "PR", + "age": "≥80", + "population": 148963 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "state" + ], + "y": [ + "population" + ], + "s": ["age"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Month", + "dataType": "string" + }, + { + "name": "Revenue", + "dataType": "number" + }, + { + "name": "Department", + "dataType": "string" + } + ], + "data": [ + { + "Month": "January", + "Revenue": 80000, + "Department": "Electronics" + }, + { + "Month": "February", + "Revenue": 75000, + "Department": "Furniture" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "Month" + ], + "y": [ + "Revenue" + ], + "s": [ + "Department" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Country", + "dataType": "string" + }, + { + "name": "GDP", + "dataType": "number" + }, + { + "name": "Year", + "dataType": "string" + } + ], + "data": [ + { + "Country": "USA", + "GDP": 21433000, + "Year": "2022" + }, + { + "Country": "China", + "GDP": 14342000, + "Year": "2022" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "Country" + ], + "y": [ + "GDP" + ], + "s": [ + "Year" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Day", + "dataType": "string" + }, + { + "name": "Visitors", + "dataType": "number" + }, + { + "name": "Location", + "dataType": "string" + } + ], + "data": [ + { + "Day": "Monday", + "Visitors": 200, + "Location": "Park" + }, + { + "Day": "Monday", + "Visitors": 150, + "Location": "Museum" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "Day" + ], + "y": [ + "Visitors" + ], + "s": [ + "Location" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Quarter", + "dataType": "string" + }, + { + "name": "Earnings", + "dataType": "number" + }, + { + "name": "Sector", + "dataType": "string" + } + ], + "data": [ + { + "Quarter": "Q1", + "Earnings": 50000, + "Sector": "Tech" + }, + { + "Quarter": "Q1", + "Earnings": 75000, + "Sector": "Finance" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "Quarter" + ], + "y": [ + "Earnings" + ], + "s": [ + "Sector" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Continent", + "dataType": "string" + }, + { + "name": "Area", + "dataType": "number" + }, + { + "name": "Land Type", + "dataType": "string" + } + ], + "data": [ + { + "Continent": "Asia", + "Area": 44579000, + "Land Type": "Land Mass" + }, + { + "Continent": "Africa", + "Area": 30370000, + "Land Type": "Land Mass" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "Continent" + ], + "y": [ + "Area" + ], + "s": [ + "Land Type" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Region", + "dataType": "string" + }, + { + "name": "Temperature", + "dataType": "number" + }, + { + "name": "Month", + "dataType": "string" + } + ], + "data": [ + { + "Region": "Europe", + "Temperature": 15, + "Month": "June" + }, + { + "Region": "Africa", + "Temperature": 25, + "Month": "June" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "Region" + ], + "y": [ + "Temperature" + ], + "s": [ + "Month" + ] + } + } + ] + } +] diff --git a/evaluations/datastes/recommend/evalResult.json b/evaluations/datastes/recommend/evalResult.json new file mode 100644 index 0000000..d232ecb --- /dev/null +++ b/evaluations/datastes/recommend/evalResult.json @@ -0,0 +1,10223 @@ +[ + { + "source": { + "metas": [ + { + "name": "月份", + "dataType": "string" + }, + { + "name": "收入", + "dataType": "number" + }, + { + "name": "花费", + "dataType": "number" + } + ], + "data": [ + { + "月份": "一月", + "收入": 10000, + "花费": 8000 + }, + { + "月份": "二月", + "收入": 11000, + "花费": 8500 + }, + { + "月份": "三月", + "收入": 12500, + "花费": 9000 + }, + { + "月份": "四月", + "收入": 13000, + "花费": 9500 + }, + { + "月份": "五月", + "收入": 13500, + "花费": 10000 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": [ + "月份" + ], + "y": [ + "收入" + ], + "y2": [ + "花费" + ] + } + } + ], + "generation": [ + { + "type": "multiple", + "encode": { + "x": [ + "月份" + ], + "y": [ + "收入", + "花费" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "发表时间", + "dataType": "string" + }, + { + "name": "评论数", + "dataType": "number" + }, + { + "name": "转发数", + "dataType": "number" + } + ], + "data": [ + { + "发表时间": "2023-03-11", + "评论数": 1200, + "转发数": 450 + }, + { + "发表时间": "2023-03-12", + "评论数": 1300, + "转发数": 500 + }, + { + "发表时间": "2023-03-13", + "评论数": 1400, + "转发数": 550 + }, + { + "发表时间": "2023-03-14", + "评论数": 1500, + "转发数": 600 + }, + { + "发表时间": "2023-03-15", + "评论数": 1600, + "转发数": 650 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": [ + "发表时间" + ], + "y": [ + "评论数" + ], + "y2": [ + "转发数" + ] + } + } + ], + "generation": [ + { + "type": "line", + "encode": { + "x": [ + "发表时间" + ], + "y": [ + "评论数", + "转发数" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Category", + "dataType": "string" + }, + { + "name": "Sales", + "dataType": "number" + }, + { + "name": "Returns", + "dataType": "number" + } + ], + "data": [ + { + "Category": "Books", + "Sales": 15000, + "Returns": 500 + }, + { + "Category": "Clothing", + "Sales": 20000, + "Returns": 1000 + }, + { + "Category": "Food", + "Sales": 25000, + "Returns": 1500 + }, + { + "Category": "Toys", + "Sales": 30000, + "Returns": 2000 + }, + { + "Category": "Furniture", + "Sales": 35000, + "Returns": 2500 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": [ + "Category" + ], + "y": [ + "Sales" + ], + "y2": [ + "Returns" + ] + } + } + ], + "generation": [ + { + "type": "column", + "encode": { + "x": [ + "Category" + ], + "y": [ + "Sales", + "Returns" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "有效期至", + "dataType": "string" + }, + { + "name": "成本价", + "dataType": "number" + }, + { + "name": "折扣率", + "dataType": "number" + } + ], + "data": [ + { + "有效期至": "2023/04/01", + "成本价": 6543210, + "折扣率": 20 + }, + { + "有效期至": "2023/04/02", + "成本价": 5432100, + "折扣率": 30 + }, + { + "有效期至": "2023/04/03", + "成本价": 4321000, + "折扣率": 40 + }, + { + "有效期至": "2023/04/04", + "成本价": 3210000, + "折扣率": 50 + }, + { + "有效期至": "2023/04/05", + "成本价": 2100000, + "折扣率": 60 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": [ + "有效期至" + ], + "y": [ + "成本价" + ], + "y2": [ + "折扣率" + ] + } + } + ], + "generation": [ + { + "type": "multiple", + "encode": { + "x": [ + "有效期至" + ], + "y": [ + "成本价" + ], + "y2": [ + "折扣率" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "车型", + "dataType": "string" + }, + { + "name": "销售量", + "dataType": "number" + }, + { + "name": "市场份额", + "dataType": "number" + } + ], + "data": [ + { + "车型": "轿车", + "销售量": 3000000, + "市场份额": 0.45 + }, + { + "车型": "SUV", + "销售量": 3500000, + "市场份额": 0.52 + }, + { + "车型": "卡车", + "销售量": 400000, + "市场份额": 0.03 + }, + { + "车型": "电动车", + "销售量": 500000, + "市场份额": 0.07 + }, + { + "车型": "混动", + "销售量": 200000, + "市场份额": 0.03 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": [ + "车型" + ], + "y": [ + "销售量" + ], + "y2": [ + "市场份额" + ] + } + } + ], + "generation": [ + { + "type": "multiple", + "encode": { + "x": [ + "车型" + ], + "y": [ + "销售量" + ], + "y2": [ + "市场份额" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "日期", + "dataType": "string" + }, + { + "name": "销售额", + "dataType": "number" + }, + { + "name": "客户数", + "dataType": "number" + } + ], + "data": [ + { + "日期": "2023-01-15", + "销售额": 80000, + "客户数": 1500 + }, + { + "日期": "2023-01-16", + "销售额": 85000, + "客户数": 1600 + }, + { + "日期": "2023-01-17", + "销售额": 90000, + "客户数": 1700 + }, + { + "日期": "2023-01-18", + "销售额": 95000, + "客户数": 1800 + }, + { + "日期": "2023-01-19", + "销售额": 100000, + "客户数": 1900 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": [ + "日期" + ], + "y": [ + "销售额" + ], + "y2": [ + "客户数" + ] + } + } + ], + "generation": [ + { + "type": "multiple", + "encode": { + "x": [ + "日期" + ], + "y": [ + "销售额", + "客户数" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Company", + "dataType": "string" + }, + { + "name": "MarketCap", + "dataType": "number" + }, + { + "name": "Employees", + "dataType": "number" + } + ], + "data": [ + { + "Company": "Apple", + "MarketCap": 2200000, + "Employees": 147000 + }, + { + "Company": "Microsoft", + "MarketCap": 2000000, + "Employees": 181000 + }, + { + "Company": "Amazon", + "MarketCap": 1700000, + "Employees": 1335000 + }, + { + "Company": "Google", + "MarketCap": 1800000, + "Employees": 156500 + }, + { + "Company": "Facebook", + "MarketCap": 900000, + "Employees": 58604 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": [ + "Company" + ], + "y": [ + "MarketCap" + ], + "y2": [ + "Employees" + ] + } + } + ], + "generation": [ + { + "type": "multiple", + "encode": { + "x": [ + "Company" + ], + "y": [ + "MarketCap" + ], + "y2": [ + "Employees" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Date", + "dataType": "string" + }, + { + "name": "CaloriesBurned", + "dataType": "number" + }, + { + "name": "Humidity", + "dataType": "number" + } + ], + "data": [ + { + "Date": "01-04-2023", + "CaloriesBurned": 500, + "Steps": 7000 + }, + { + "Date": "02-04-2023", + "CaloriesBurned": 520, + "Steps": 7100 + }, + { + "Date": "03-04-2023", + "CaloriesBurned": 530, + "Steps": 7200 + }, + { + "Date": "04-04-2023", + "CaloriesBurned": 550, + "Steps": 7300 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": [ + "Date" + ], + "y": [ + "CaloriesBurned" + ], + "y2": [ + "Steps" + ] + } + } + ], + "generation": [ + { + "type": "multiple", + "encode": { + "x": [ + "Date" + ], + "y": [ + "CaloriesBurned", + "Steps" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "有效期至", + "dataType": "string" + }, + { + "name": "成本价", + "dataType": "number" + }, + { + "name": "折扣率", + "dataType": "number" + } + ], + "data": [ + { + "有效期至": "2023-04-06", + "成本价": 5678901, + "折扣率": 45 + }, + { + "有效期至": "2023-04-07", + "成本价": 6789012, + "折扣率": 67 + }, + { + "有效期至": "2023-04-08", + "成本价": 7890123, + "折扣率": 89 + }, + { + "有效期至": "2023-04-09", + "成本价": 8901234, + "折扣率": 10 + }, + { + "有效期至": "2023-04-10", + "成本价": 9012345, + "折扣率": 23 + } + ] + }, + "target": [ + { + "type": "mutiple", + "encode": { + "x": [ + "有效期至" + ], + "y": [ + "成本价" + ], + "y2": [ + "折扣率" + ] + } + } + ], + "generation": [ + { + "type": "multiple", + "encode": { + "x": [ + "有效期至" + ], + "y": [ + "成本价" + ], + "y2": [ + "折扣率" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "州名", + "dataType": "string" + }, + { + "name": "工作岗位", + "dataType": "number" + }, + { + "name": "失业率", + "dataType": "number" + } + ], + "data": [ + { + "州名": "加州", + "工作岗位": 17000000, + "失业率": 4.1 + }, + { + "州名": "得州", + "工作岗位": 12000000, + "失业率": 3.7 + }, + { + "州名": "佛罗里达州", + "工作岗位": 9500000, + "失业率": 3.3 + }, + { + "州名": "纽约州", + "工作岗位": 9200000, + "失业率": 4 + }, + { + "州名": "伊利诺伊州", + "工作岗位": 6000000, + "失业率": 4.5 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": [ + "州名" + ], + "y": [ + "工作岗位" + ], + "y2": [ + "失业率" + ] + } + } + ], + "generation": [ + { + "type": "multiple", + "encode": { + "x": [ + "州名" + ], + "y": [ + "工作岗位" + ], + "y2": [ + "失业率" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Country", + "dataType": "string" + }, + { + "name": "GDP", + "dataType": "number" + } + ], + "data": [ + { + "Country": "USA", + "GDP": 21433 + }, + { + "Country": "China", + "GDP": 14140 + }, + { + "Country": "Japan", + "GDP": 5065 + }, + { + "Country": "Germany", + "GDP": 3861 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "Country" + ], + "y": [ + "GDP" + ] + } + } + ], + "generation": [ + { + "type": "column", + "encode": { + "x": [ + "Country" + ], + "y": [ + "GDP" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "产品", + "dataType": "string" + }, + { + "name": "库存量", + "dataType": "number" + }, + { + "name": "仓库", + "dataType": "string" + } + ], + "data": [ + { + "产品": "电视", + "库存量": 500, + "仓库": "A" + }, + { + "产品": "空调", + "库存量": 100, + "仓库": "B" + }, + { + "产品": "冰箱", + "库存量": 300, + "仓库": "C" + }, + { + "产品": "洗衣机", + "库存量": 400, + "仓库": "A" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "产品" + ], + "y": [ + "库存量" + ], + "s": [ + "仓库" + ] + } + } + ], + "generation": [ + { + "type": "column", + "encode": { + "x": [ + "产品" + ], + "y": [ + "库存量" + ], + "s": [ + "仓库" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "部门", + "dataType": "string" + }, + { + "name": "员工数", + "dataType": "number" + } + ], + "data": [ + { + "部门": "销售部", + "员工数": 50 + }, + { + "部门": "技术部", + "员工数": 70 + }, + { + "部门": "市场部", + "员工数": 40 + }, + { + "部门": "人力资源部", + "员工数": 30 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "部门" + ], + "y": [ + "员工数" + ] + } + } + ], + "generation": [ + { + "type": "column", + "encode": { + "x": [ + "部门" + ], + "y": [ + "员工数" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Quarter", + "dataType": "string" + }, + { + "name": "Earnings", + "dataType": "number" + }, + { + "name": "Sector", + "dataType": "string" + } + ], + "data": [ + { + "Quarter": "Q1", + "Earnings": 50000, + "Sector": "Tech" + }, + { + "Quarter": "Q1", + "Earnings": 75000, + "Sector": "Finance" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "Quarter" + ], + "y": [ + "Earnings" + ], + "s": [ + "Sector" + ] + } + } + ], + "generation": [ + { + "type": "column", + "encode": { + "x": [ + "Quarter" + ], + "y": [ + "Earnings" + ], + "s": [ + "Sector" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "星座", + "dataType": "string" + }, + { + "name": "人数", + "dataType": "number" + } + ], + "data": [ + { + "星座": "白羊座", + "人数": 120 + }, + { + "星座": "金牛座", + "人数": 130 + }, + { + "星座": "双子座", + "人数": 110 + }, + { + "星座": "巨蟹座", + "人数": 90 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "星座" + ], + "y": [ + "人数" + ] + } + } + ], + "generation": [ + { + "type": "column", + "encode": { + "x": [ + "星座" + ], + "y": [ + "人数" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "颜色", + "dataType": "string" + }, + { + "name": "数量", + "dataType": "number" + } + ], + "data": [ + { + "颜色": "红色", + "数量": 100 + }, + { + "颜色": "蓝色", + "数量": 200 + }, + { + "颜色": "绿色", + "数量": 150 + }, + { + "颜色": "黄色", + "数量": 75 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "颜色" + ], + "y": [ + "数量" + ] + } + } + ], + "generation": [ + { + "type": "column", + "encode": { + "x": [ + "颜色" + ], + "y": [ + "数量" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "医院", + "dataType": "string" + }, + { + "name": "患者人数", + "dataType": "number" + }, + { + "name": "科室", + "dataType": "string" + } + ], + "data": [ + { + "医院": "人民医院", + "患者人数": 500, + "科室": "内科" + }, + { + "医院": "人民医院", + "患者人数": 300, + "科室": "外科" + }, + { + "医院": "协和医院", + "患者人数": 400, + "科室": "内科" + }, + { + "医院": "协和医院", + "患者人数": 350, + "科室": "外科" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "医院" + ], + "y": [ + "患者人数" + ], + "s": [ + "科室" + ] + } + } + ], + "generation": [ + { + "type": "column", + "encode": { + "x": [ + "医院" + ], + "y": [ + "患者人数" + ], + "s": [ + "科室" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "交通工具", + "dataType": "string" + }, + { + "name": "数量", + "dataType": "number" + } + ], + "data": [ + { + "交通工具": "汽车", + "数量": 120 + }, + { + "交通工具": "自行车", + "数量": 80 + }, + { + "交通工具": "公交车", + "数量": 50 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "交通工具" + ], + "y": [ + "数量" + ] + } + } + ], + "generation": [ + { + "type": "column", + "encode": { + "x": [ + "交通工具" + ], + "y": [ + "数量" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "城市", + "dataType": "string" + }, + { + "name": "人口", + "dataType": "number" + } + ], + "data": [ + { + "城市": "北京", + "人口": 21542000 + }, + { + "城市": "上海", + "人口": 24256800 + }, + { + "城市": "广州", + "人口": 13081000 + }, + { + "城市": "深圳", + "人口": 10969000 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "城市" + ], + "y": [ + "人口" + ] + } + } + ], + "generation": [ + { + "type": "column", + "encode": { + "x": [ + "城市" + ], + "y": [ + "人口" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Genre", + "dataType": "string" + }, + { + "name": "Sales", + "dataType": "number" + }, + { + "name": "Platform", + "dataType": "string" + } + ], + "data": [ + { + "Genre": "Action", + "Sales": 500000, + "Platform": "PC" + }, + { + "Genre": "Adventure", + "Sales": 300000, + "Platform": "Console" + }, + { + "Genre": "Sports", + "Sales": 200000, + "Platform": "Mobile" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "Genre" + ], + "y": [ + "Sales" + ], + "s": [ + "Platform" + ] + } + } + ], + "generation": [ + { + "type": "column", + "encode": { + "x": [ + "Genre" + ], + "y": [ + "Sales" + ], + "s": [ + "Platform" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Day", + "dataType": "string" + }, + { + "name": "Visitors", + "dataType": "number" + }, + { + "name": "Location", + "dataType": "string" + } + ], + "data": [ + { + "Day": "Monday", + "Visitors": 200, + "Location": "Park" + }, + { + "Day": "Monday", + "Visitors": 150, + "Location": "Museum" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "Day" + ], + "y": [ + "Visitors" + ], + "s": [ + "Location" + ] + } + } + ], + "generation": [ + { + "type": "column", + "encode": { + "x": [ + "Day" + ], + "y": [ + "Visitors" + ], + "s": [ + "Location" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "城市", + "dataType": "string" + }, + { + "name": "人口", + "dataType": "number" + } + ], + "data": [ + { + "城市": "北京", + "人口": 2154 + }, + { + "城市": "上海", + "人口": 2424 + }, + { + "城市": "广州", + "人口": 1530 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "城市" + ], + "y": [ + "人口" + ] + } + } + ], + "generation": [ + { + "type": "column", + "encode": { + "x": [ + "城市" + ], + "y": [ + "人口" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Vehicle", + "dataType": "string" + }, + { + "name": "Units Sold", + "dataType": "number" + }, + { + "name": "Region", + "dataType": "string" + } + ], + "data": [ + { + "Vehicle": "Sedan", + "Units Sold": 9000, + "Region": "Europe" + }, + { + "Vehicle": "SUV", + "Units Sold": 12000, + "Region": "North America" + }, + { + "Vehicle": "Truck", + "Units Sold": 3000, + "Region": "Asia" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "Vehicle" + ], + "y": [ + "Units Sold" + ], + "s": [ + "Region" + ] + } + } + ], + "generation": [ + { + "type": "column", + "encode": { + "x": [ + "Vehicle" + ], + "y": [ + "UnitsSold" + ], + "s": [ + "Region" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Activity", + "dataType": "string" + }, + { + "name": "Duration (hrs)", + "dataType": "number" + } + ], + "data": [ + { + "Activity": "Running", + "Duration (hrs)": 5 + }, + { + "Activity": "Swimming", + "Duration (hrs)": 3 + }, + { + "Activity": "Cycling", + "Duration (hrs)": 4 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "Activity" + ], + "y": [ + "Duration (hrs)" + ] + } + } + ], + "generation": [ + { + "type": "column", + "encode": { + "x": [ + "Activity" + ], + "y": [ + "Duration(hrs)" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Region", + "dataType": "string" + }, + { + "name": "Temperature", + "dataType": "number" + }, + { + "name": "Month", + "dataType": "string" + } + ], + "data": [ + { + "Region": "Europe", + "Temperature": 15, + "Month": "June" + }, + { + "Region": "Africa", + "Temperature": 25, + "Month": "June" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "Region" + ], + "y": [ + "Temperature" + ], + "s": [ + "Month" + ] + } + } + ], + "generation": [ + { + "type": "column", + "encode": { + "x": [ + "Region" + ], + "y": [ + "Temperature" + ], + "s": [ + "Month" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "学科", + "dataType": "string" + }, + { + "name": "平均分数", + "dataType": "number" + } + ], + "data": [ + { + "学科": "数学", + "平均分数": 85 + }, + { + "学科": "英语", + "平均分数": 80 + }, + { + "学科": "物理", + "平均分数": 88 + }, + { + "学科": "化学", + "平均分数": 82 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "学科" + ], + "y": [ + "平均分数" + ] + } + } + ], + "generation": [ + { + "type": "column", + "encode": { + "x": [ + "学科" + ], + "y": [ + "平均分数" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "项目阶段", + "dataType": "string" + }, + { + "name": "完成百分比", + "dataType": "number" + } + ], + "data": [ + { + "项目阶段": "需求分析", + "完成百分比": 100 + }, + { + "项目阶段": "设计", + "完成百分比": 80 + }, + { + "项目阶段": "开发", + "完成百分比": 60 + }, + { + "项目阶段": "测试", + "完成百分比": 40 + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "项目阶段" + ], + "y": [ + "完成百分比" + ] + } + } + ], + "generation": [ + { + "type": "progress", + "encode": { + "x": [ + "项目阶段" + ], + "y": [ + "完成百分比" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "City", + "dataType": "string" + }, + { + "name": "Population", + "dataType": "number" + }, + { + "name": "Continent", + "dataType": "string" + } + ], + "data": [ + { + "City": "New York", + "Population": 8419000, + "Continent": "North America" + }, + { + "City": "London", + "Population": 8982000, + "Continent": "Europe" + }, + { + "City": "Tokyo", + "Population": 13929000, + "Continent": "Asia" + }, + { + "City": "Cairo", + "Population": 9908000, + "Continent": "Africa" + } + ] + }, + "target": [ + { + "type": "column", + "encode": { + "x": [ + "City" + ], + "y": [ + "Population" + ], + "s": [ + "Continent" + ] + } + } + ], + "generation": [ + { + "type": "heatmap", + "encode": { + "x": [ + "City" + ], + "y": [ + "Continent" + ], + "size": [ + "Population" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "阶段": "需求收集", + "下一步": "需求分析" + }, + { + "阶段": "需求分析", + "下一步": "系统设计" + }, + { + "阶段": "系统设计", + "下一步": "实现" + } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "阶段", + "target": "下一步" + } + } + ], + "generation": [ + { + "type": "flow_diagram", + "encode": { + "source": "阶段", + "target": "下一步" + } + } + ] + }, + { + "source": { + "data": [ + { + "步骤": "起草合同", + "后续": "内部评审" + }, + { + "步骤": "内部评审", + "后续": "客户确认" + }, + { + "步骤": "客户确认", + "后续": "合同签署" + } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "步骤", + "target": "后续" + } + } + ], + "generation": [ + { + "type": "flow_diagram", + "encode": { + "source": "步骤", + "target": "后续" + } + } + ] + }, + { + "source": { + "data": [ + { + "上一步": "访问注册页面", + "下一步": "填写并提交注册表单", + "提示": "信息无误" + }, + { + "上一步": "填写并提交注册表单", + "下一步": "验证用户信息", + "提示": "信息无误" + }, + { + "上一步": "验证用户信息", + "下一步": "创建新用户账户", + "提示": "信息无误" + }, + { + "上一步": "验证用户信息", + "下一步": "提示修改错误信息", + "提示": "信息有误" + }, + { + "上一步": "创建新用户账户", + "下一步": "发送验证邮件", + "提示": "信息有误" + }, + { + "上一步": "发送验证邮件", + "下一步": "点击验证链接", + "提示": "信息无误" + }, + { + "上一步": "点击验证链接", + "下一步": "注册成功,跳转到登录页面", + "提示": "信息无误" + } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "上一步", + "target": "下一步" + } + } + ], + "generation": [ + { + "type": "flow_diagram", + "encode": { + "source": "上一步", + "target": "下一步", + "label": "提示" + } + } + ] + }, + { + "source": { + "data": [ + { + "步骤": "查找产品", + "下一步": "选择产品" + }, + { + "步骤": "选择产品", + "下一步": "加入购物车" + }, + { + "步骤": "加入购物车", + "下一步": "下单支付" + }, + { + "步骤": "下单支付", + "下一步": "完成购买" + } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "步骤", + "target": "下一步" + } + } + ], + "generation": [ + { + "type": "flow_diagram", + "encode": { + "source": "步骤", + "target": "下一步" + } + } + ] + }, + { + "source": { + "data": [ + { + "from": "Research Topic", + "to": "Draft Outline" + }, + { + "from": "Draft Outline", + "to": "Write Content" + }, + { + "from": "Write Content", + "to": "Edit Draft" + }, + { + "from": "Edit Draft", + "to": "Publish" + } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "from", + "target": "to" + } + } + ], + "generation": [ + { + "type": "flow_diagram", + "encode": { + "source": "from", + "target": "to" + } + } + ] + }, + { + "source": { + "data": [ + { + "任务": "准备食材", + "步骤": "切割" + }, + { + "任务": "切割", + "步骤": "烹饪" + }, + { + "任务": "烹饪", + "步骤": "摆盘" + } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "任务", + "target": "步骤" + } + } + ], + "generation": [ + { + "type": "flow_diagram", + "encode": { + "source": "任务", + "target": "步骤" + } + } + ] + }, + { + "source": { + "data": [ + { + "from": "客户下单", + "to": "系统生成订单" + }, + { + "from": "系统生成订单", + "to": "仓库拣货" + }, + { + "from": "仓库拣货", + "to": "仓库打包" + }, + { + "from": "仓库打包", + "to": "物流配送" + }, + { + "from": "物流配送", + "to": "客户收货" + } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "from", + "target": "to" + } + } + ], + "generation": [ + { + "type": "flow_diagram", + "encode": { + "source": "from", + "target": "to" + } + } + ] + }, + { + "source": { + "data": [ + { + "source": "Import Data", + "target": "Preprocessing" + }, + { + "source": "Preprocessing", + "target": "Feature Extraction" + }, + { + "source": "Feature Extraction", + "target": "Training" + } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "source", + "target": "target" + } + } + ], + "generation": [ + { + "type": "flow_diagram", + "encode": { + "source": "source", + "target": "target" + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "注册用户", + "dataType": "number" + }, + { + "name": "加入购物车", + "dataType": "number" + }, + { + "name": "下单成功", + "dataType": "number" + }, + { + "name": "购买成功", + "dataType": "number" + } + ], + "data": [ + { + "注册用户": 20000, + "加入购物车": 12000, + "下单成功": 3600, + "购买成功": 2800 + } + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": [ + "注册用户", + "加入购物车", + "下单成功", + "购买成功" + ] + } + } + ], + "generation": [ + { + "type": "funnel", + "encode": { + "y": [ + "注册用户", + "加入购物车", + "下单成功", + "购买成功" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Leads Generated", + "dataType": "number" + }, + { + "name": "Contacted", + "dataType": "number" + }, + { + "name": "Qualified", + "dataType": "number" + }, + { + "name": "Converted", + "dataType": "number" + } + ], + "data": [ + { + "Leads Generated": 12000, + "Contacted": 6000, + "Qualified": 3000, + "Converted": 1200 + } + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": [ + "Leads Generated", + "Contacted", + "Qualified", + "Converted" + ] + } + } + ], + "generation": [ + { + "type": "funnel", + "encode": { + "y": [ + "LeadsGenerated", + "Contacted", + "Qualified", + "Converted" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "广告展示", + "dataType": "number" + }, + { + "name": "广告点击", + "dataType": "number" + }, + { + "name": "进入网站", + "dataType": "number" + }, + { + "name": "完成注册", + "dataType": "number" + } + ], + "data": [ + { + "广告展示": 500000, + "广告点击": 100000, + "进入网站": 20000, + "完成注册": 1000 + } + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": [ + "广告展示", + "广告点击", + "进入网站", + "完成注册" + ] + } + } + ], + "generation": [ + { + "type": "funnel", + "encode": { + "y": [ + "广告展示", + "广告点击", + "进入网站", + "完成注册" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "注册会展", + "dataType": "number" + }, + { + "name": "到场参与", + "dataType": "number" + }, + { + "name": "深度交谈", + "dataType": "number" + }, + { + "name": "后续联系", + "dataType": "number" + } + ], + "data": [ + { + "注册会展": 1000, + "到场参与": 600, + "深度交谈": 300, + "后续联系": 100 + } + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": [ + "注册会展", + "到场参与", + "深度交谈", + "后续联系" + ] + } + } + ], + "generation": [ + { + "type": "funnel", + "encode": { + "y": [ + "注册会展", + "到场参与", + "深度交谈", + "后续联系" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "浏览新闻", + "dataType": "number" + }, + { + "name": "文章点击", + "dataType": "number" + }, + { + "name": "阅读完成", + "dataType": "number" + }, + { + "name": "分享", + "dataType": "number" + } + ], + "data": [ + { + "浏览新闻": 8000, + "文章点击": 6000, + "阅读完成": 3000, + "分享": 500 + } + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": [ + "浏览新闻", + "文章点击", + "阅读完成", + "分享" + ] + } + } + ], + "generation": [ + { + "type": "funnel", + "encode": { + "y": [ + "浏览新闻", + "文章点击", + "阅读完成", + "分享" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "咨询金额", + "dataType": "number" + }, + { + "name": "可用金额", + "dataType": "number" + }, + { + "name": "曝光金额", + "dataType": "number" + }, + { + "name": "成交金额", + "dataType": "number" + } + ], + "data": [ + { + "咨询金额": 1000, + "可用金额": 600, + "曝光金额": 300, + "提交金额": 100, + "成交金额": 100 + } + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": [ + "咨询金额", + "可用金额", + "曝光金额", + "提交金额", + "成交金额" + ] + } + } + ], + "generation": [ + { + "type": "funnel", + "encode": { + "y": [ + "咨询金额", + "可用金额", + "曝光金额", + "提交金额", + "成交金额" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Application Received", + "dataType": "number" + }, + { + "name": "First Review", + "dataType": "number" + }, + { + "name": "Interview", + "dataType": "number" + }, + { + "name": "Accept Offer", + "dataType": "number" + } + ], + "data": [ + { + "Application Received": 500, + "First Review": 300, + "Interview": 100, + "Accept Offer": 30 + } + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": [ + "Application Received", + "First Review", + "Interview", + "Accept Offer" + ] + } + } + ], + "generation": [ + { + "type": "funnel", + "encode": { + "y": [ + "ApplicationReceived", + "FirstReview", + "Interview", + "AcceptOffer" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Campaign Views", + "dataType": "number" + }, + { + "name": "Clicks", + "dataType": "number" + }, + { + "name": "Conversions", + "dataType": "number" + }, + { + "name": "Repeat Customers", + "dataType": "number" + } + ], + "data": [ + { + "Campaign Views": 100000, + "Clicks": 50000, + "Conversions": 20000, + "Repeat Customers": 5000 + } + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": [ + "Campaign Views", + "Clicks", + "Conversions", + "Repeat Customers" + ] + } + } + ], + "generation": [ + { + "type": "funnel", + "encode": { + "y": [ + "CampaignViews", + "Clicks", + "Conversions", + "RepeatCustomers" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Free Trial Signups", + "dataType": "number" + }, + { + "name": "Usage After Trial", + "dataType": "number" + }, + { + "name": "Upgrades", + "dataType": "number" + }, + { + "name": "Long-term Subscribers", + "dataType": "number" + } + ], + "data": [ + { + "Free Trial Signups": 600, + "Usage After Trial": 400, + "Upgrades": 150, + "Long-term Subscribers": 85 + } + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": [ + "Free Trial Signups", + "Usage After Trial", + "Upgrades", + "Long-term Subscribers" + ] + } + } + ], + "generation": [ + { + "type": "funnel", + "encode": { + "y": [ + "FreeTrialSignups", + "UsageAfterTrial", + "Upgrades", + "Long-termSubscribers" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "行业", + "dataType": "string" + }, + { + "name": "月份", + "dataType": "number" + }, + { + "name": "增长率", + "dataType": "number" + } + ], + "data": [ + { + "行业": "科技", + "月份": 1, + "增长率": 5.2 + }, + { + "行业": "医疗", + "月份": 1, + "增长率": 3.8 + }, + { + "行业": "金融", + "月份": 1, + "增长率": 2.4 + }, + { + "行业": "能源", + "月份": 1, + "增长率": 1.9 + }, + { + "行业": "零售", + "月份": 1, + "增长率": 4.1 + } + ] + }, + "target": [ + { + "type": "heatmap", + "encode": { + "x": [ + "行业" + ], + "y": [ + "月份" + ], + "size": [ + "增长率" + ] + } + }, + { + "type": "scatter", + "encode": { + "x": [ + "行业" + ], + "y": [ + "月份" + ], + "size": [ + "增长率" + ] + } + } + ], + "generation": [ + { + "type": "heatmap", + "encode": { + "x": [ + "行业" + ], + "y": [ + "月份" + ], + "size": [ + "增长率" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "年龄", + "dataType": "number" + }, + { + "name": "收入", + "dataType": "number" + }, + { + "name": "消费金额", + "dataType": "number" + } + ], + "data": [ + { + "年龄": 25, + "收入": 5000, + "消费金额": 2000 + }, + { + "年龄": 30, + "收入": 7000, + "消费金额": 3000 + }, + { + "年龄": 35, + "收入": 10000, + "消费金额": 5000 + }, + { + "年龄": 40, + "收入": 15000, + "消费金额": 7000 + }, + { + "年龄": 45, + "收入": 20000, + "消费金额": 8000 + } + ] + }, + "target": [ + { + "type": "heatmap", + "encode": { + "x": [ + "年龄" + ], + "y": [ + "收入" + ], + "size": [ + "消费金额" + ] + } + }, + { + "type": "scatter", + "encode": { + "x": [ + "年龄" + ], + "y": [ + "收入" + ], + "size": [ + "消费金额" + ] + } + } + ], + "generation": [ + { + "type": "scatter", + "encode": { + "x": [ + "年龄" + ], + "y": [ + "收入" + ], + "size": [ + "消费金额" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "产品", + "dataType": "string" + }, + { + "name": "季度", + "dataType": "number" + }, + { + "name": "销售额", + "dataType": "number" + } + ], + "data": [ + { + "产品": "手机", + "季度": 1, + "销售额": 100000 + }, + { + "产品": "笔记本", + "季度": 1, + "销售额": 80000 + }, + { + "产品": "平板", + "季度": 1, + "销售额": 40000 + }, + { + "产品": "电视", + "季度": 1, + "销售额": 60000 + }, + { + "产品": "耳机", + "季度": 1, + "销售额": 20000 + } + ] + }, + "target": [ + { + "type": "heatmap", + "encode": { + "x": [ + "产品" + ], + "y": [ + "季度" + ], + "size": [ + "销售额" + ] + } + }, + { + "type": "scatter", + "encode": { + "x": [ + "产品" + ], + "y": [ + "季度" + ], + "size": [ + "销售额" + ] + } + } + ], + "generation": [ + { + "type": "column", + "encode": { + "x": [ + "产品" + ], + "y": [ + "销售额" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "Entity": "All natural disasters", + "Year": 1900, + "Deaths": 1267360 + }, + { + "Entity": "All natural disasters", + "Year": 1901, + "Deaths": 200018 + }, + { + "Entity": "All natural disasters", + "Year": 1902, + "Deaths": 46037 + }, + { + "Entity": "All natural disasters", + "Year": 1903, + "Deaths": 6506 + }, + { + "Entity": "All natural disasters", + "Year": 1905, + "Deaths": 22758 + }, + { + "Entity": "All natural disasters", + "Year": 1906, + "Deaths": 42970 + }, + { + "Entity": "All natural disasters", + "Year": 1907, + "Deaths": 1325641 + }, + { + "Entity": "All natural disasters", + "Year": 1908, + "Deaths": 75033 + }, + { + "Entity": "All natural disasters", + "Year": 1909, + "Deaths": 1511524 + }, + { + "Entity": "All natural disasters", + "Year": 1910, + "Deaths": 148233 + }, + { + "Entity": "All natural disasters", + "Year": 1911, + "Deaths": 102408 + }, + { + "Entity": "All natural disasters", + "Year": 1912, + "Deaths": 52093 + }, + { + "Entity": "All natural disasters", + "Year": 1913, + "Deaths": 882 + }, + { + "Entity": "All natural disasters", + "Year": 1914, + "Deaths": 289 + }, + { + "Entity": "All natural disasters", + "Year": 1915, + "Deaths": 32167 + }, + { + "Entity": "All natural disasters", + "Year": 1916, + "Deaths": 300 + } + ], + "target": [ + { + "type": "heatmap", + "encode": { + "x": [ + "Entity" + ], + "y": [ + "Year" + ], + "size": [ + "Deaths" + ] + } + }, + { + "type": "scatter", + "encode": { + "x": [ + "Entity" + ], + "y": [ + "Year" + ], + "size": [ + "Deaths" + ] + } + } + ] + }, + "generation": [ + { + "type": "line", + "encode": { + "x": [ + "Year" + ], + "y": [ + "Deaths" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "月", + "dataType": "number" + }, + { + "name": "类别", + "dataType": "string" + }, + { + "name": "销量", + "dataType": "number" + } + ], + "data": [ + { + "月": 1, + "类别": "A", + "销量": 305 + }, + { + "月": 1, + "类别": "B", + "销量": 220 + }, + { + "月": 2, + "类别": "A", + "销量": 310 + }, + { + "月": 2, + "类别": "B", + "销量": 215 + }, + { + "月": 3, + "类别": "A", + "销量": 275 + }, + { + "月": 3, + "类别": "B", + "销量": 230 + }, + { + "月": 4, + "类别": "A", + "销量": 295 + }, + { + "月": 4, + "类别": "B", + "销量": 240 + } + ] + }, + "target": [ + { + "type": "heatmap", + "encode": { + "x": [ + "月" + ], + "y": [ + "类别" + ], + "size": [ + "销量" + ] + } + }, + { + "type": "scatter", + "encode": { + "x": [ + "月" + ], + "y": [ + "类别" + ], + "size": [ + "销量" + ] + } + } + ], + "generation": [ + { + "type": "line", + "encode": { + "x": [ + "月" + ], + "y": [ + "销量" + ], + "s": [ + "类别" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "budgetYear", + "dataType": "date" + }, + { + "name": "forecastYear", + "dataType": "date" + }, + { + "name": "value", + "dataType": "number" + } + ], + "data": [ + { + "budgetYear": 1980, + "forecastYear": 1980, + "value": -0.103 + }, + { + "budgetYear": 1980, + "forecastYear": 1981, + "value": -0.037 + }, + { + "budgetYear": 1980, + "forecastYear": 1982, + "value": 0.01 + }, + { + "budgetYear": 1980, + "forecastYear": 1983, + "value": 0.051 + }, + { + "budgetYear": 1981, + "forecastYear": 1980, + "value": -0.192 + }, + { + "budgetYear": 1981, + "forecastYear": 1981, + "value": -0.129 + } + ] + }, + "target": [ + { + "type": "heatmap", + "encode": { + "x": [ + "budgetYear" + ], + "y": [ + "forecastYear" + ], + "size": [ + "value" + ] + } + }, + { + "type": "scatter", + "encode": { + "x": [ + "budgetYear" + ], + "y": [ + "forecastYear" + ], + "size": [ + "value" + ] + } + } + ], + "generation": [ + { + "type": "heatmap", + "encode": { + "x": [ + "budgetYear" + ], + "y": [ + "forecastYear" + ], + "size": [ + "value" + ] + } + }, + { + "type": "line", + "encode": { + "x": [ + "budgetYear" + ], + "y": [ + "forecastYear" + ], + "size": [ + "value" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "grades": 85 + }, + { + "grades": 90 + }, + { + "grades": 88 + }, + { + "grades": 92 + }, + { + "grades": 75 + }, + { + "grades": 80 + } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": [ + "grades" + ] + } + } + ], + "generation": [ + { + "type": "histogram", + "encode": { + "y": [ + "grades" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "时长": 77 + }, + { + "时长": 84 + }, + { + "时长": 72 + }, + { + "时长": 80 + }, + { + "时长": 76 + } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": [ + "时长" + ] + } + } + ], + "generation": [ + { + "type": "histogram", + "encode": { + "y": [ + "时长" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "重量": 2.5 + }, + { + "重量": 3 + }, + { + "重量": 3.5 + }, + { + "重量": 4 + }, + { + "重量": 3.2 + } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": [ + "重量" + ] + } + } + ], + "generation": [ + { + "type": "histogram", + "encode": { + "y": [ + "重量" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "price": 250 + }, + { + "price": 300 + }, + { + "price": 275 + }, + { + "price": 260 + }, + { + "price": 290 + } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": [ + "price" + ] + } + } + ], + "generation": [ + { + "type": "histogram", + "encode": { + "y": [ + "price" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "revenue": 200000 + }, + { + "revenue": 150000 + }, + { + "revenue": 300000 + }, + { + "revenue": 250000 + }, + { + "revenue": 100000 + } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": [ + "revenue" + ] + } + } + ], + "generation": [ + { + "type": "histogram", + "encode": { + "y": [ + "revenue" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "温度": 36.5 + }, + { + "温度": 37 + }, + { + "温度": 36.8 + }, + { + "温度": 37.1 + }, + { + "温度": 36.9 + } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": [ + "温度" + ] + } + } + ], + "generation": [ + { + "type": "histogram", + "encode": { + "y": [ + "温度" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "humidity": 55 + }, + { + "humidity": 60 + }, + { + "humidity": 57 + }, + { + "humidity": 53 + }, + { + "humidity": 59 + } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": [ + "humidity" + ] + } + } + ], + "generation": [ + { + "type": "histogram", + "encode": { + "y": [ + "humidity" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "duration": 60 + }, + { + "duration": 45 + }, + { + "duration": 50 + }, + { + "duration": 70 + }, + { + "duration": 65 + } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": [ + "duration" + ] + } + } + ], + "generation": [ + { + "type": "histogram", + "encode": { + "y": [ + "duration" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "城市": "东京", + "longitude": 139.6917, + "latitude": 35.6895 + }, + { + "城市": "大阪", + "longitude": 135.5023, + "latitude": 34.6937 + }, + { + "城市": "名古屋", + "longitude": 136.9066, + "latitude": 35.1814 + } + ] + }, + "target": [ + { + "type": "map", + "encode": { + "x": [ + "longitude" + ], + "y": [ + "latitude" + ], + "label": [ + "城市" + ] + } + } + ], + "generation": [ + { + "type": "map", + "encode": { + "x": [ + "longitude" + ], + "y": [ + "latitude" + ], + "label": [ + "城市" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "median_income": 74000, + "longitude": -84.7519, + "latitude": 49.2827 + }, + { + "median_income": 62000, + "longitude": -71.2082, + "latitude": 46.8139 + }, + { + "median_income": 80000, + "longitude": -122.6587, + "latitude": 53.7267 + } + ] + }, + "target": [ + { + "type": "map", + "encode": { + "x": [ + "longitude" + ], + "y": [ + "latitude" + ], + "color": [ + "median_income" + ] + } + } + ], + "generation": [ + { + "type": "scatter_map", + "encode": { + "x": [ + "longitude" + ], + "y": [ + "latitude" + ], + "color": [ + "median_income" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "景点": "石屋洞", + "longitude": 120.130638, + "latitude": 30.219835 + }, + { + "景点": "满觉陇", + "longitude": 120.128125, + "latitude": 30.219386 + }, + { + "景点": "杨梅岭", + "longitude": 120.118362, + "latitude": 30.217175 + }, + { + "景点": "理安寺", + "longitude": 120.112958, + "latitude": 30.207319 + }, + { + "景点": "九溪烟树", + "longitude": 120.11335, + "latitude": 30.202395 + }, + { + "景点": "飞来峰", + "longitude": 120.100549, + "latitude": 30.236875 + }, + { + "景点": "灵隐寺", + "longitude": 120.101406, + "latitude": 30.240826 + }, + { + "景点": "天竺三寺", + "longitude": 120.105337, + "latitude": 30.236818 + }, + { + "景点": "杭州植物园", + "longitude": 120.116979, + "latitude": 30.252876 + }, + { + "景点": "杭州花圃", + "longitude": 120.127654, + "latitude": 30.245663 + }, + { + "景点": "苏堤", + "longitude": 120.135764, + "latitude": 30.251448 + }, + { + "景点": "虎跑公园", + "longitude": 120.130095, + "latitude": 30.207505 + }, + { + "景点": "玉皇飞云", + "longitude": 120.145323, + "latitude": 30.214993 + }, + { + "景点": "长桥公园", + "longitude": 120.155057, + "latitude": 30.232985 + } + ] + }, + "target": [ + { + "type": "map", + "encode": { + "x": [ + "longitude" + ], + "y": [ + "latitude" + ], + "label": [ + "景点" + ] + } + } + ], + "generation": [ + { + "type": "map", + "encode": { + "x": [ + "longitude" + ], + "y": [ + "latitude" + ], + "label": [ + "景点" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "城市": "上海", + "PM2.5": 56, + "longitude": 121.4737, + "latitude": 31.2304 + }, + { + "城市": "北京", + "PM2.5": 70, + "longitude": 116.4074, + "latitude": 39.9042 + }, + { + "城市": "广州", + "PM2.5": 42, + "longitude": 113.2644, + "latitude": 23.1291 + } + ] + }, + "target": [ + { + "type": "map", + "encode": { + "x": [ + "longitude" + ], + "y": [ + "latitude" + ], + "label": [ + "城市" + ], + "color": [ + "PM2.5" + ] + } + } + ], + "generation": [ + { + "type": "map", + "encode": { + "x": [ + "longitude" + ], + "y": [ + "latitude" + ], + "color": [ + "PM2.5" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "地区": "西湖区", + "AQI": 42, + "longitude": 120.1474, + "latitude": 30.2729 + }, + { + "地区": "拱墅区", + "AQI": 45, + "longitude": 120.1492, + "latitude": 30.3188 + }, + { + "地区": "滨江区", + "AQI": 50, + "longitude": 120.2106, + "latitude": 30.2066 + } + ] + }, + "target": [ + { + "type": "map", + "encode": { + "x": [ + "longitude" + ], + "y": [ + "latitude" + ], + "label": [ + "地区" + ], + "color": [ + "AQI" + ] + } + } + ], + "generation": [ + { + "type": "map", + "encode": { + "x": [ + "longitude" + ], + "y": [ + "latitude" + ], + "color": [ + "AQI" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "City": "New York", + "population_density": 27000, + "longitude": -74.006, + "latitude": 40.7128 + }, + { + "City": "Los Angeles", + "population_density": 8304, + "longitude": -118.2437, + "latitude": 34.0522 + }, + { + "City": "Chicago", + "population_density": 11900, + "longitude": -87.6298, + "latitude": 41.8781 + } + ] + }, + "target": [ + { + "type": "map", + "encode": { + "x": [ + "longitude" + ], + "y": [ + "latitude" + ], + "label": [ + "City" + ] + } + } + ], + "generation": [ + { + "type": "map", + "encode": { + "x": [ + "longitude" + ], + "y": [ + "latitude" + ], + "label": [ + "City" + ], + "color": [ + "population_density" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "层级": "企业架构", + "子层级": "战略层" + }, + { + "层级": "企业架构", + "子层级": "业务层" + }, + { + "层级": "企业架构", + "子层级": "应用层" + }, + { + "层级": "企业架构", + "子层级": "技术层" + }, + { + "子层级": "战略层", + "子子层级": "战略规划" + }, + { + "子层级": "业务层", + "子子层级": "业务流程优化" + }, + { + "子层级": "应用层", + "子子层级": "软件开发" + }, + { + "子层级": "技术层", + "子子层级": "基础设施管理" + } + ] + }, + "target": [ + { + "type": "mind_map", + "encode": { + "source": "层级", + "target": "子层级" + } + } + ], + "generation": [ + { + "type": "mind_map", + "encode": { + "source": "层级", + "target": "子层级" + } + } + ] + }, + { + "source": { + "data": [ + { + "parent": "健康生活方式", + "child": "均衡饮食" + }, + { + "parent": "健康生活方式", + "child": "定期锻炼" + }, + { + "parent": "健康生活方式", + "child": "充足睡眠" + }, + { + "parent": "均衡饮食", + "child": "多吃水果蔬菜" + }, + { + "parent": "均衡饮食", + "child": "减少糖分摄入" + }, + { + "parent": "定期锻炼", + "child": "有氧运动" + }, + { + "parent": "定期锻炼", + "child": "力量训练" + } + ] + }, + "target": [ + { + "type": "mind_map", + "encode": { + "source": "parent", + "target": "child" + } + } + ], + "generation": [ + { + "type": "mind_map", + "encode": { + "source": "parent", + "target": "child" + } + } + ] + }, + { + "source": { + "data": [ + { + "parent": "台风形成的因素", + "child": "温暖的海水" + }, + { + "parent": "台风形成的因素", + "child": "气压分布" + }, + { + "parent": "台风形成的因素", + "child": "湿度水平" + }, + { + "parent": "台风形成的因素", + "child": "风的切变" + }, + { + "parent": "地理环境", + "child": "大陆架的形状与深度" + }, + { + "parent": "地理环境", + "child": "海洋暖流的分布" + }, + { + "parent": "地理环境", + "child": "热带地区的气候特征" + }, + { + "parent": "地理环境", + "child": "岛屿的影响" + } + ] + }, + "target": [ + { + "type": "mind_map", + "encode": { + "source": "parent", + "target": "child" + } + } + ], + "generation": [ + { + "type": "mind_map", + "encode": { + "source": "parent", + "target": "child" + } + } + ] + }, + { + "source": { + "data": [ + { + "header": "Human Anatomy", + "node": "Skeletal System" + }, + { + "header": "Human Anatomy", + "node": "Muscular System" + }, + { + "header": "Human Anatomy", + "node": "Nervous System" + }, + { + "node": "Skeletal System", + "subnode": "Cranium" + }, + { + "node": "Skeletal System", + "subnode": "Spine" + }, + { + "node": "Muscular System", + "subnode": "Cardiac Muscles" + }, + { + "node": "Muscular System", + "subnode": "Skeletal Muscles" + } + ] + }, + "target": [ + { + "type": "mind_map", + "encode": { + "source": "header", + "target": "node" + } + } + ], + "generation": [ + { + "type": "mind_map", + "encode": { + "source": "node", + "target": "subnode" + } + } + ] + }, + { + "source": { + "data": [ + { + "主题": "旅行计划", + "子构思": "目的地" + }, + { + "主题": "旅行计划", + "子构思": "行程安排" + }, + { + "主题": "旅行计划", + "子构思": "预算法则" + }, + { + "子构思": "目的地", + "细节": "风景名胜" + }, + { + "子构思": "目的地", + "细节": "特色美食" + }, + { + "子构思": "行程安排", + "细节": "每日计划" + }, + { + "子构思": "行程安排", + "细节": "交通方式" + } + ] + }, + "target": [ + { + "type": "mind_map", + "encode": { + "source": "主题", + "target": "子构思" + } + } + ], + "generation": [ + { + "type": "mind_map", + "encode": { + "source": "主题", + "target": "子构思" + } + } + ] + }, + { + "source": { + "data": [ + { + "发源地": "长江", + "流经": "武汉" + }, + { + "发源地": "长江", + "流经": "南京" + }, + { + "发源地": "长江", + "流经": "上海" + }, + { + "发源地": "黄河", + "流经": "郑州" + }, + { + "发源地": "黄河", + "流经": "济南" + } + ] + }, + "target": { + "type": "network_graph", + "encode": { + "source": "发源地", + "target": "流经" + } + }, + "generation": [ + { + "type": "network_graph", + "encode": { + "source": "发源地", + "target": "流经" + } + } + ] + }, + { + "source": { + "data": [ + { + "起始地": "东京", + "目的地": "大阪", + "交通工具": "新干线" + }, + { + "起始地": "大阪", + "目的地": "京都", + "交通工具": "新干线" + }, + { + "起始地": "京都", + "目的地": "名古屋", + "交通工具": "新干线" + }, + { + "起始地": "名古屋", + "目的地": "东京", + "交通工具": "新干线" + } + ] + }, + "target": { + "type": "network_graph", + "encode": { + "source": "起始地", + "target": "目的地", + "label": "交通工具" + } + }, + "generation": { + "type": "network_graph", + "encode": { + "source": "起始地", + "target": "目的地", + "label": "交通工具" + } + } + }, + { + "source": { + "data": [ + { + "start": "New York", + "end": "Chicago" + }, + { + "start": "Chicago", + "end": "Los Angeles" + }, + { + "start": "Los Angeles", + "end": "San Francisco" + }, + { + "start": "San Francisco", + "end": "Las Vegas" + }, + { + "start": "Las Vegas", + "end": "Seattle" + } + ] + }, + "target": { + "type": "network_graph", + "encode": { + "source": "start", + "target": "end" + } + }, + "generation": { + "type": "network_graph", + "encode": { + "source": "start", + "target": "end" + } + } + }, + { + "source": { + "data": [ + { + "source": "哈利·波特", + "target": "赫敏·格兰杰", + "relation": "朋友" + }, + { + "source": "哈利·波特", + "target": "罗恩·韦斯莱", + "relation": "朋友" + }, + { + "source": "哈利·波特", + "target": "伏地魔", + "relation": "敌人" + }, + { + "source": "伏地魔", + "target": "哈利·波特", + "relation": "试图杀死" + } + ] + }, + "target": { + "type": "network_graph", + "encode": { + "source": "source", + "target": "target", + "label": "relation" + } + }, + "generation": { + "type": "network_graph", + "encode": { + "source": "source", + "target": "target", + "label": "relation" + } + } + }, + { + "source": { + "data": [ + { + "actor": "Leonardo DiCaprio", + "co_actor": "Kate Winslet", + "movie": "Titanic" + }, + { + "actor": "Leonardo DiCaprio", + "co_actor": "Tom Hanks", + "movie": "Catch Me If You Can" + }, + { + "actor": "Tom Hanks", + "co_actor": "Meg Ryan", + "movie": "You've Got Mail" + }, + { + "actor": "Tom Hanks", + "co_actor": "Robin Wright", + "movie": "Forrest Gump" + } + ] + }, + "target": { + "type": "network_graph", + "encode": { + "source": "actor", + "target": "co_actor", + "label": "movie" + } + }, + "generation": { + "type": "network_graph", + "encode": { + "source": "actor", + "target": "co_actor", + "label": "movie" + } + } + }, + { + "source": { + "data": [ + { + "交通方式": "私人汽车", + "份额": 70 + }, + { + "交通方式": "公共交通", + "份额": 20 + }, + { + "交通方式": "步行", + "份额": 10 + } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": [ + "交通方式" + ], + "y": [ + "份额" + ] + } + } + ], + "generation": [ + { + "type": "pie", + "encode": { + "x": [ + "交通方式" + ], + "y": [ + "份额" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "type": "微博", + "value": 93.33 + }, + { + "type": "其他", + "value": 6.67 + }, + { + "type": "论坛", + "value": 4.77 + }, + { + "type": "网站", + "value": 1.44 + }, + { + "type": "微信", + "value": 1.12 + }, + { + "type": "客户端", + "value": 1.05 + }, + { + "type": "新闻", + "value": 0.81 + }, + { + "type": "视频", + "value": 0.39 + }, + { + "type": "博客", + "value": 0.37 + }, + { + "type": "报刊", + "value": 0.17 + } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": [ + "type" + ], + "y": [ + "value" + ] + } + } + ], + "generation": [ + { + "type": "pie", + "encode": { + "x": [ + "type" + ], + "y": [ + "value" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "文化活动": "电影", + "人数": 60000 + }, + { + "文化活动": "音乐会", + "人数": 20000 + }, + { + "文化活动": "艺术展览", + "人数": 15000 + }, + { + "文化活动": "戏剧", + "人数": 12000 + } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": [ + "文化活动" + ], + "y": [ + "人数" + ] + } + } + ], + "generation": [ + { + "type": "pie", + "encode": { + "x": [ + "文化活动" + ], + "y": [ + "人数" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "社交媒体平台": "微信", + "用户数": 800000 + }, + { + "社交媒体平台": "微博", + "用户数": 300000 + }, + { + "社交媒体平台": "豆瓣", + "用户数": 120000 + }, + { + "社交媒体平台": "知乎", + "用户数": 130000 + } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": [ + "社交媒体平台" + ], + "y": [ + "用户数" + ] + } + } + ], + "generation": [ + { + "type": "pie", + "encode": { + "x": [ + "社交媒体平台" + ], + "y": [ + "用户数" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "品牌": "可口可乐", + "市场份额": 38 + }, + { + "品牌": "百事可乐", + "市场份额": 34 + }, + { + "品牌": "7喜", + "市场份额": 18 + }, + { + "品牌": "其他", + "市场份额": 10 + } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": [ + "品牌" + ], + "y": [ + "市场份额" + ] + } + } + ], + "generation": [ + { + "type": "pie", + "encode": { + "x": [ + "品牌" + ], + "y": [ + "市场份额" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "platform": "Windows", + "users": 80 + }, + { + "platform": "MacOS", + "users": 15 + }, + { + "platform": "Linux", + "users": 5 + } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": [ + "platform" + ], + "y": [ + "users" + ] + } + } + ], + "generation": [ + { + "type": "pie", + "encode": { + "x": [ + "platform" + ], + "y": [ + "users" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "Energy Source": "Solar", + "Usage": 1500 + }, + { + "Energy Source": "Wind", + "Usage": 800 + }, + { + "Energy Source": "Hydro", + "Usage": 2000 + }, + { + "Energy Source": "Nuclear", + "Usage": 2500 + }, + { + "Energy Source": "Coal", + "Usage": 3000 + } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": [ + "Energy Source" + ], + "y": [ + "Usage" + ] + } + } + ], + "generation": [ + { + "type": "pie", + "encode": { + "x": [ + "EnergySource" + ], + "y": [ + "Usage" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "Transport Mode": "Bicycle", + "Count": 15000 + }, + { + "Transport Mode": "Bus", + "Count": 60000 + }, + { + "Transport Mode": "Tram", + "Count": 30000 + }, + { + "Transport Mode": "Train", + "Count": 50000 + } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": [ + "Transport Mode" + ], + "y": [ + "Count" + ] + } + } + ], + "generation": [ + { + "type": "pie", + "encode": { + "x": [ + "TransportMode" + ], + "y": [ + "Count" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "宠物类别": "猫", + "数量": 5000 + }, + { + "宠物类别": "狗", + "数量": 8000 + }, + { + "宠物类别": "鸟", + "数量": 2000 + }, + { + "宠物类别": "鱼", + "数量": 4000 + } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": [ + "宠物类别" + ], + "y": [ + "数量" + ] + } + } + ], + "generation": [ + { + "type": "pie", + "encode": { + "x": [ + "宠物类别" + ], + "y": [ + "数量" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "语言": "Python", + "比例": 50 + }, + { + "语言": "Java", + "比例": 25 + }, + { + "语言": "JavaScript", + "比例": 15 + }, + { + "语言": "其他", + "比例": 10 + } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": [ + "语言" + ], + "y": [ + "比例" + ] + } + } + ], + "generation": [ + { + "type": "pie", + "encode": { + "x": [ + "语言" + ], + "y": [ + "比例" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "渠道": "线上", + "占比": 55 + }, + { + "渠道": "线下", + "占比": 45 + } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": [ + "渠道" + ], + "y": [ + "占比" + ] + } + } + ], + "generation": [ + { + "type": "pie", + "encode": { + "x": [ + "渠道" + ], + "y": [ + "占比" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "sector": "Education", + "date": "2021-Q1", + "budget": 320 + }, + { + "sector": "Education", + "date": "2021-Q2", + "budget": 400 + }, + { + "sector": "Education", + "date": "2021-Q3", + "budget": 450 + }, + { + "sector": "Education", + "date": "2021-Q4", + "budget": 390 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "date" + ], + "y": [ + "budget" + ], + "s": [ + "sector" + ] + } + }, + { + "type": "area", + "encode": { + "x": [ + "date" + ], + "y": [ + "budget" + ], + "s": [ + "sector" + ] + } + } + ], + "generation": [ + { + "type": "line", + "encode": { + "x": [ + "date" + ], + "y": [ + "budget" + ], + "s": [ + "sector" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "制造日期": "2023-01-01", + "成本": 123, + "售价": 567 + }, + { + "制造日期": "2023-01-02", + "成本": 345, + "售价": 1098 + }, + { + "制造日期": "2023-01-03", + "成本": 567, + "售价": 1234 + }, + { + "制造日期": "2023-01-04", + "成本": 789, + "售价": 1456 + }, + { + "制造日期": "2023-01-05", + "成本": 901, + "售价": 1678 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "制造日期" + ], + "y": [ + "成本", + "售价" + ] + } + } + ], + "generation": [ + { + "type": "line", + "encode": { + "x": [ + "制造日期" + ], + "y": [ + "成本", + "售价" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "date": "1/03/2023", + "rainfall": 10, + "snowfall": 0 + }, + { + "date": "2/03/2023", + "rainfall": 15, + "snowfall": 0 + }, + { + "date": "3/03/2023", + "rainfall": 5, + "snowfall": 3 + }, + { + "date": "4/03/2023", + "rainfall": 0, + "snowfall": 10 + }, + { + "date": "5/03/2023", + "rainfall": 12, + "snowfall": 1 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "date" + ], + "y": [ + "rainfall", + "snowfall" + ] + } + } + ], + "generation": [ + { + "type": "line", + "encode": { + "x": [ + "date" + ], + "y": [ + "rainfall", + "snowfall" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "城市": "北京", + "日期": "2020-01", + "温度": -5 + }, + { + "城市": "北京", + "日期": "2020-02", + "温度": 0 + }, + { + "城市": "北京", + "日期": "2020-03", + "温度": 8 + }, + { + "城市": "北京", + "日期": "2020-04", + "温度": 15 + }, + { + "城市": "北京", + "日期": "2020-05", + "温度": 20 + }, + { + "城市": "北京", + "日期": "2020-06", + "温度": 25 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "日期" + ], + "y": [ + "温度" + ], + "s": [ + "城市" + ] + } + }, + { + "type": "area", + "encode": { + "x": [ + "日期" + ], + "y": [ + "温度" + ], + "s": [ + "城市" + ] + } + } + ], + "generation": [ + { + "type": "line", + "encode": { + "x": [ + "日期" + ], + "y": [ + "温度" + ], + "s": [ + "城市" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "星期", + "dataType": "string" + }, + { + "name": "访客数", + "dataType": "number" + } + ], + "data": [ + { + "星期": "周一", + "访客数": 200 + }, + { + "星期": "周二", + "访客数": 180 + }, + { + "星期": "周三", + "访客数": 230 + }, + { + "星期": "周四", + "访客数": 250 + }, + { + "星期": "周五", + "访客数": 300 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "星期" + ], + "y": [ + "访客数" + ] + } + } + ], + "generation": [ + { + "type": "line", + "encode": { + "x": [ + "星期" + ], + "y": [ + "访客数" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "date": "1854-04-01", + "wounds": 0, + "other": 110, + "disease": 110 + }, + { + "date": "1854-05-01", + "wounds": 0, + "other": 95, + "disease": 105 + }, + { + "date": "1854-06-01", + "wounds": 0, + "other": 40, + "disease": 95 + }, + { + "date": "1854-07-01", + "wounds": 0, + "other": 140, + "disease": 520 + }, + { + "date": "1854-08-01", + "wounds": 20, + "other": 150, + "disease": 800 + }, + { + "date": "1854-09-01", + "wounds": 220, + "other": 230, + "disease": 740 + }, + { + "date": "1854-10-01", + "wounds": 305, + "other": 310, + "disease": 600 + }, + { + "date": "1854-11-01", + "wounds": 480, + "other": 290, + "disease": 820 + }, + { + "date": "1854-12-01", + "wounds": 295, + "other": 310, + "disease": 1100 + }, + { + "date": "1855-01-01", + "wounds": 230, + "other": 460, + "disease": 1440 + }, + { + "date": "1855-02-01", + "wounds": 180, + "other": 520, + "disease": 1270 + }, + { + "date": "1855-03-01", + "wounds": 155, + "other": 350, + "disease": 935 + }, + { + "date": "1855-04-01", + "wounds": 195, + "other": 195, + "disease": 560 + }, + { + "date": "1855-05-01", + "wounds": 180, + "other": 155, + "disease": 550 + }, + { + "date": "1855-06-01", + "wounds": 330, + "other": 130, + "disease": 650 + }, + { + "date": "1855-07-01", + "wounds": 260, + "other": 130, + "disease": 430 + }, + { + "date": "1855-08-01", + "wounds": 290, + "other": 110, + "disease": 490 + }, + { + "date": "1855-09-01", + "wounds": 355, + "other": 100, + "disease": 290 + }, + { + "date": "1855-10-01", + "wounds": 135, + "other": 95, + "disease": 245 + }, + { + "date": "1855-11-01", + "wounds": 100, + "other": 140, + "disease": 325 + }, + { + "date": "1855-12-01", + "wounds": 40, + "other": 120, + "disease": 215 + }, + { + "date": "1856-01-01", + "wounds": 0, + "other": 160, + "disease": 160 + }, + { + "date": "1856-02-01", + "wounds": 0, + "other": 100, + "disease": 100 + }, + { + "date": "1856-03-01", + "wounds": 0, + "other": 125, + "disease": 90 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "date" + ], + "y": [ + "wounds", + "other", + "disease" + ] + } + } + ], + "generation": [ + { + "type": "line", + "encode": { + "x": [ + "date" + ], + "y": [ + "wounds", + "other", + "disease" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "销售日期": "2023-05-01", + "收入": 423, + "支出": 123 + }, + { + "销售日期": "2023-05-02", + "收入": 489, + "支出": 178 + }, + { + "销售日期": "2023-05-03", + "收入": 512, + "支出": 230 + }, + { + "销售日期": "2023-05-04", + "收入": 678, + "支出": 340 + }, + { + "销售日期": "2023-05-05", + "收入": 789, + "支出": 450 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "销售日期" + ], + "y": [ + "收入", + "支出" + ] + } + } + ], + "generation": [ + { + "type": "line", + "encode": { + "x": [ + "销售日期" + ], + "y": [ + "收入", + "支出" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "week": "20230601", + "profit": 8000, + "loss": 3000 + }, + { + "week": "20230602", + "profit": 8200, + "loss": 3400 + }, + { + "week": "20230603", + "profit": 7900, + "loss": 3200 + }, + { + "week": "20230604", + "profit": 8500, + "loss": 3100 + }, + { + "week": "20230605", + "profit": 8700, + "loss": 2900 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "week" + ], + "y": [ + "profit", + "loss" + ] + } + } + ], + "generation": [ + { + "type": "line", + "encode": { + "x": [ + "week" + ], + "y": [ + "profit", + "loss" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "month": "January", + "production": 500, + "defects": 5 + }, + { + "month": "February", + "production": 550, + "defects": 6 + }, + { + "month": "March", + "production": 600, + "defects": 7 + }, + { + "month": "April", + "production": 580, + "defects": 6 + }, + { + "month": "May", + "production": 620, + "defects": 8 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "month" + ], + "y": [ + "production", + "defects" + ] + } + } + ], + "generation": [ + { + "type": "multiple", + "encode": { + "x": [ + "month" + ], + "y": [ + "production" + ], + "y2": [ + "defects" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "subject": "Math", + "semester": "S1 2019", + "score": 85 + }, + { + "subject": "Math", + "semester": "S2 2019", + "score": 87 + }, + { + "subject": "Math", + "semester": "S1 2020", + "score": 90 + }, + { + "subject": "Math", + "semester": "S2 2020", + "score": 88 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "semester" + ], + "y": [ + "score" + ], + "s": [ + "subject" + ] + } + }, + { + "type": "area", + "encode": { + "x": [ + "semester" + ], + "y": [ + "score" + ], + "s": [ + "subject" + ] + } + } + ], + "generation": [ + { + "type": "line", + "encode": { + "x": [ + "semester" + ], + "y": [ + "score" + ], + "s": [ + "subject" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "time": "04/01/2023", + "sales": 10000, + "profit": 2000 + }, + { + "time": "04/02/2023", + "sales": 20000, + "profit": 3000 + }, + { + "time": "04/03/2023", + "sales": 30000, + "profit": 4000 + }, + { + "time": "04/04/2023", + "sales": 40000, + "profit": 5000 + }, + { + "time": "04/05/2023", + "sales": 50000, + "profit": 6000 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "time" + ], + "y": [ + "sales", + "profit" + ] + } + } + ], + "generation": [ + { + "type": "line", + "encode": { + "x": [ + "time" + ], + "y": [ + "sales", + "profit" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "quarter": "Q1 2023", + "revenue": 20000, + "expenses": 12000 + }, + { + "quarter": "Q2 2023", + "revenue": 22000, + "expenses": 13000 + }, + { + "quarter": "Q3 2023", + "revenue": 25000, + "expenses": 15000 + }, + { + "quarter": "Q4 2023", + "revenue": 27000, + "expenses": 16000 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "quarter" + ], + "y": [ + "revenue", + "expenses" + ] + } + } + ], + "generation": [ + { + "type": "line", + "encode": { + "x": [ + "quarter" + ], + "y": [ + "revenue", + "expenses" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "国家": "中国", + "年份": "2015", + "GDP增长": 6.9 + }, + { + "国家": "中国", + "年份": "2016", + "GDP增长": 6.7 + }, + { + "国家": "中国", + "年份": "2017", + "GDP增长": 6.9 + }, + { + "国家": "中国", + "年份": "2018", + "GDP增长": 6.6 + }, + { + "国家": "中国", + "年份": "2019", + "GDP增长": 6 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "年份" + ], + "y": [ + "GDP增长" + ], + "s": [ + "国家" + ] + } + }, + { + "type": "area", + "encode": { + "x": [ + "年份" + ], + "y": [ + "GDP增长" + ], + "s": [ + "国家" + ] + } + } + ], + "generation": [ + { + "type": "line", + "encode": { + "x": [ + "年份" + ], + "y": [ + "GDP增长" + ], + "s": [ + "国家" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "timestamp": "2023/03/20", + "users": 500, + "new_users": 50 + }, + { + "timestamp": "2023/03/21", + "users": 550, + "new_users": 45 + }, + { + "timestamp": "2023/03/22", + "users": 600, + "new_users": 60 + }, + { + "timestamp": "2023/03/23", + "users": 580, + "new_users": 55 + }, + { + "timestamp": "2023/03/24", + "users": 620, + "new_users": 65 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "timestamp" + ], + "y": [ + "users", + "new_users" + ] + } + } + ], + "generation": [ + { + "type": "line", + "encode": { + "x": [ + "timestamp" + ], + "y": [ + "users", + "new_users" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "日期": "2023-01-01", + "销售额": 1500, + "成本": 700 + }, + { + "日期": "2023-01-02", + "销售额": 1800, + "成本": 750 + }, + { + "日期": "2023-01-03", + "销售额": 1200, + "成本": 650 + }, + { + "日期": "2023-01-04", + "销售额": 1700, + "成本": 800 + }, + { + "日期": "2023-01-05", + "销售额": 2000, + "成本": 850 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "日期" + ], + "y": [ + "销售额", + "成本" + ] + } + } + ], + "generation": [ + { + "type": "line", + "encode": { + "x": [ + "日期" + ], + "y": [ + "销售额", + "成本" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "日期", + "dataType": "date" + }, + { + "name": "温度", + "dataType": "number" + } + ], + "data": [ + { + "日期": "2023-01-01", + "温度": -5 + }, + { + "日期": "2023-02-01", + "温度": 0 + }, + { + "日期": "2023-03-01", + "温度": 5 + }, + { + "日期": "2023-04-01", + "温度": 10 + }, + { + "日期": "2023-05-01", + "温度": 15 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "日期" + ], + "y": [ + "温度" + ] + } + } + ], + "generation": [ + { + "type": "line", + "encode": { + "x": [ + "日期" + ], + "y": [ + "温度" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "日期": "2023/02/01", + "降水量": 25 + }, + { + "日期": "2023/02/02", + "降水量": 30 + }, + { + "日期": "2023/02/03", + "降水量": 18 + }, + { + "日期": "2023/02/04", + "降水量": 20 + }, + { + "日期": "2023/02/05", + "降水量": 22 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "日期" + ], + "y": [ + "降水量" + ] + } + } + ], + "generation": [ + { + "type": "line", + "encode": { + "x": [ + "日期" + ], + "y": [ + "降水量" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "symbol": "MSFT", + "date": "Jan 1 2000", + "price": 39.81 + }, + { + "symbol": "MSFT", + "date": "Feb 1 2000", + "price": 36.35 + }, + { + "symbol": "MSFT", + "date": "Mar 1 2000", + "price": 43.22 + }, + { + "symbol": "MSFT", + "date": "Apr 1 2000", + "price": 28.37 + }, + { + "symbol": "MSFT", + "date": "May 1 2000", + "price": 25.45 + }, + { + "symbol": "MSFT", + "date": "Jun 1 2000", + "price": 32.54 + }, + { + "symbol": "MSFT", + "date": "Jul 1 2000", + "price": 28.4 + }, + { + "symbol": "MSFT", + "date": "Aug 1 2000", + "price": 28.4 + }, + { + "symbol": "MSFT", + "date": "Sep 1 2000", + "price": 24.53 + }, + { + "symbol": "MSFT", + "date": "Oct 1 2000", + "price": 28.02 + }, + { + "symbol": "MSFT", + "date": "Nov 1 2000", + "price": 23.34 + }, + { + "symbol": "MSFT", + "date": "Dec 1 2000", + "price": 17.65 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "date" + ], + "y": [ + "price" + ], + "s": [ + "symbol" + ] + } + }, + { + "type": "area", + "encode": { + "x": [ + "date" + ], + "y": [ + "price" + ], + "s": [ + "symbol" + ] + } + } + ], + "generation": [ + { + "type": "line", + "encode": { + "x": [ + "date" + ], + "y": [ + "price" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "日期", + "dataType": "date" + }, + { + "name": "步数", + "dataType": "number" + } + ], + "data": [ + { + "日期": "2023/04/01", + "步数": 3000 + }, + { + "日期": "2023/04/02", + "步数": 5000 + }, + { + "日期": "2023/04/03", + "步数": 4000 + }, + { + "日期": "2023/04/04", + "步数": 4500 + }, + { + "日期": "2023/04/05", + "步数": 6000 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "日期" + ], + "y": [ + "步数" + ] + } + } + ], + "generation": [ + { + "type": "line", + "encode": { + "x": [ + "日期" + ], + "y": [ + "步数" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "产品": "手机", + "时间": "2022-01", + "销量": 1200 + }, + { + "产品": "手机", + "时间": "2022-02", + "销量": 1500 + }, + { + "产品": "手机", + "时间": "2022-03", + "销量": 1800 + }, + { + "产品": "手机", + "时间": "2022-04", + "销量": 1600 + }, + { + "产品": "手机", + "时间": "2022-05", + "销量": 2000 + }, + { + "产品": "手机", + "时间": "2022-06", + "销量": 1700 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "时间" + ], + "y": [ + "销量" + ], + "s": [ + "产品" + ] + } + }, + { + "type": "area", + "encode": { + "x": [ + "时间" + ], + "y": [ + "销量" + ], + "s": [ + "产品" + ] + } + } + ], + "generation": [ + { + "type": "line", + "encode": { + "x": [ + "时间" + ], + "y": [ + "销量" + ], + "s": [ + "产品" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "当月成本使用": 5000, + "月度预算": 10000 + } + ] + }, + "target": [ + { + "type": "progress", + "encode": { + "y": [ + "当月成本使用" + ], + "target": [ + "月度预算" + ] + } + } + ], + "generation": [ + { + "type": "progress", + "encode": { + "y": [ + "当月成本使用" + ], + "target": [ + "月度预算" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "季度利润": 200000, + "利润目标": 500000 + } + ] + }, + "target": [ + { + "type": "progress", + "encode": { + "y": [ + "季度利润" + ], + "target": [ + "利润目标" + ] + } + } + ], + "generation": [ + { + "type": "progress", + "encode": { + "y": [ + "季度利润" + ], + "target": [ + "利润目标" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "10分钟内响应率": 85, + "10分钟内响应率_目标": 90 + } + ] + }, + "target": [ + { + "type": "progress", + "encode": { + "y": [ + "10分钟内响应率" + ], + "target": [ + "10分钟内响应率_目标" + ] + } + } + ], + "generation": [ + { + "type": "progress", + "encode": { + "y": [ + "10分钟内响应率" + ], + "target": [ + "10分钟内响应率_目标" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "库存利用率": 80, + "库存满负荷": 100 + } + ] + }, + "target": [ + { + "type": "progress", + "encode": { + "y": [ + "库存利用率" + ], + "target": [ + "库存满负荷" + ] + } + } + ], + "generation": [ + { + "type": "progress", + "encode": { + "y": [ + "库存利用率" + ], + "target": [ + "库存满负荷" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "Battery Level": 60, + "Full Capacity": 100 + } + ] + }, + "target": [ + { + "type": "progress", + "encode": { + "y": [ + "Battery Level" + ], + "target": [ + "Full Capacity" + ] + } + } + ], + "generation": [ + { + "type": "progress", + "encode": { + "y": [ + "BatteryLevel" + ], + "target": [ + "FullCapacity" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "Engineering": 75, + "Promotion": 65, + "Client Base": 55, + "Auditing": 65, + "Diversity": 80, + "Efficiency": 70, + "Help Desk": 60, + "Growth": 85, + "Aesthetics": 75 + } + ] + }, + "target": [ + { + "type": "radar", + "encode": { + "y": [ + "Engineering", + "Promotion", + "Client Base", + "Auditing", + "Diversity", + "Efficiency", + "Help Desk", + "Growth", + "Aesthetics" + ] + } + } + ], + "generation": [ + { + "type": "radar", + "encode": { + "x": [ + "Engineering", + "Promotion", + "ClientBase", + "Auditing", + "Diversity", + "Efficiency", + "HelpDesk", + "Growth", + "Aesthetics" + ], + "y": [ + "value" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "Strategy": 90, + "Social Media": 75, + "Satisfaction": 85, + "Verification": 80, + "Culture": 70, + "Project Development": 80, + "Online Support": 60, + "Finance": 70, + "Art Direction": 95 + } + ] + }, + "target": [ + { + "type": "radar", + "encode": { + "y": [ + "Strategy", + "Social Media", + "Satisfaction", + "Verification", + "Culture", + "Project Development", + "Online Support", + "Finance", + "Art Direction" + ] + } + } + ], + "generation": [ + { + "type": "radar", + "encode": { + "x": [ + "Strategy", + "SocialMedia", + "Satisfaction", + "Verification", + "Culture", + "ProjectDevelopment", + "OnlineSupport", + "Finance", + "ArtDirection" + ], + "y": [ + "value" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "aspect": "Efficiency", + "department": "Sales", + "score": 78 + }, + { + "aspect": "Efficiency", + "department": "Marketing", + "score": 76 + }, + { + "aspect": "Creativity", + "department": "Sales", + "score": 82 + }, + { + "aspect": "Creativity", + "department": "Marketing", + "score": 85 + }, + { + "aspect": "Reliability", + "department": "Sales", + "score": 80 + }, + { + "aspect": "Reliability", + "department": "Marketing", + "score": 81 + }, + { + "aspect": "Customer Service", + "department": "Sales", + "score": 89 + }, + { + "aspect": "Customer Service", + "department": "Marketing", + "score": 90 + }, + { + "aspect": "Adaptability", + "department": "Sales", + "score": 77 + }, + { + "aspect": "Adaptability", + "department": "Marketing", + "score": 79 + } + ] + }, + "target": [ + { + "type": "radar", + "encode": { + "x": [ + "aspect" + ], + "y": [ + "score" + ], + "s": [ + "department" + ] + } + } + ], + "generation": [ + { + "type": "radar", + "encode": { + "x": [ + "aspect" + ], + "y": [ + "score" + ], + "s": [ + "department" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "指标": "生产效率", + "类别": "甲", + "分数": 80 + }, + { + "指标": "生产效率", + "类别": "乙", + "分数": 85 + }, + { + "指标": "产品质量", + "类别": "甲", + "分数": 90 + }, + { + "指标": "产品质量", + "类别": "乙", + "分数": 88 + }, + { + "指标": "创新能力", + "类别": "甲", + "分数": 86 + }, + { + "指标": "创新能力", + "类别": "乙", + "分数": 82 + }, + { + "指标": "市场份额", + "类别": "甲", + "分数": 75 + }, + { + "指标": "市场份额", + "类别": "乙", + "分数": 78 + }, + { + "指标": "客户满意度", + "类别": "甲", + "分数": 92 + }, + { + "指标": "客户满意度", + "类别": "乙", + "分数": 89 + } + ] + }, + "target": [ + { + "type": "radar", + "encode": { + "x": [ + "指标" + ], + "y": [ + "分数" + ], + "s": [ + "类别" + ] + } + } + ], + "generation": [ + { + "type": "radar", + "encode": { + "x": [ + "指标" + ], + "y": [ + "分数" + ], + "s": [ + "类别" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "skill": "数据分析", + "score": 63 + }, + { + "skill": "编程", + "score": 55 + }, + { + "skill": "项目管理", + "score": 77 + }, + { + "skill": "市场研究", + "score": 70 + }, + { + "skill": "财务管理", + "score": 60 + } + ] + }, + "target": [ + { + "type": "radar", + "encode": { + "x": [ + "skill" + ], + "y": [ + "score" + ] + } + } + ], + "generation": [ + { + "type": "radar", + "encode": { + "x": [ + "skill" + ], + "y": [ + "score" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "aspect": "客户满意度", + "score": 89 + }, + { + "aspect": "服务质量", + "score": 85 + }, + { + "aspect": "产品创新", + "score": 80 + }, + { + "aspect": "运营效率", + "score": 78 + }, + { + "aspect": "品牌认知", + "score": 83 + } + ] + }, + "target": [ + { + "type": "radar", + "encode": { + "x": [ + "aspect" + ], + "y": [ + "score" + ] + } + } + ], + "generation": [ + { + "type": "radar", + "encode": { + "x": [ + "aspect" + ], + "y": [ + "score" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "category": "Speed", + "division": "North", + "score": 79 + }, + { + "category": "Speed", + "division": "South", + "score": 82 + }, + { + "category": "Quality", + "division": "North", + "score": 88 + }, + { + "category": "Quality", + "division": "South", + "score": 85 + }, + { + "category": "Service", + "division": "North", + "score": 90 + }, + { + "category": "Service", + "division": "South", + "score": 87 + }, + { + "category": "Value", + "division": "North", + "score": 84 + }, + { + "category": "Value", + "division": "South", + "score": 80 + }, + { + "category": "Innovation", + "division": "North", + "score": 81 + }, + { + "category": "Innovation", + "division": "South", + "score": 83 + } + ] + }, + "target": [ + { + "type": "radar", + "encode": { + "x": [ + "category" + ], + "y": [ + "score" + ], + "s": [ + "division" + ] + } + } + ], + "generation": [ + { + "type": "radar", + "encode": { + "x": [ + "category" + ], + "y": [ + "score" + ], + "s": [ + "division" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "方面": "创新性", + "团队": "第一", + "得分": 85 + }, + { + "方面": "创新性", + "团队": "第二", + "得分": 82 + }, + { + "方面": "执行力", + "团队": "第一", + "得分": 83 + }, + { + "方面": "执行力", + "团队": "第二", + "得分": 80 + }, + { + "方面": "合作能力", + "团队": "第一", + "得分": 89 + }, + { + "方面": "合作能力", + "团队": "第二", + "得分": 87 + }, + { + "方面": "技术能力", + "团队": "第一", + "得分": 84 + }, + { + "方面": "技术能力", + "团队": "第二", + "得分": 82 + }, + { + "方面": "领导力", + "团队": "第一", + "得分": 88 + }, + { + "方面": "领导力", + "团队": "第二", + "得分": 86 + } + ] + }, + "target": [ + { + "type": "radar", + "encode": { + "x": [ + "方面" + ], + "y": [ + "得分" + ], + "s": [ + "团队" + ] + } + } + ], + "generation": [ + { + "type": "column", + "encode": { + "x": [ + "方面" + ], + "y": [ + "得分" + ], + "y2": [ + "得分" + ], + "s": [ + "团队" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "item": "Design", + "gender": "女", + "score": 70 + }, + { + "item": "Design", + "gender": "男", + "score": 30 + }, + { + "skill": "Development", + "gender": "女", + "score": 60 + }, + { + "skill": "Development", + "gender": "男", + "score": 70 + }, + { + "skill": "Marketing", + "gender": "女", + "score": 50 + }, + { + "skill": "Marketing", + "gender": "男", + "score": 60 + }, + { + "skill": "Users", + "gender": "女", + "score": 40 + }, + { + "skill": "Users", + "gender": "男", + "score": 50 + }, + { + "skill": "Test", + "gender": "女", + "score": 60 + }, + { + "skill": "Test", + "gender": "男", + "score": 70 + }, + { + "skill": "Language", + "gender": "女", + "score": 70 + }, + { + "skill": "Language", + "gender": "男", + "score": 50 + }, + { + "skill": "Technology", + "gender": "女", + "score": 50 + }, + { + "skill": "Technology", + "gender": "男", + "score": 40 + }, + { + "skill": "Support", + "gender": "女", + "score": 30 + }, + { + "skill": "Support", + "gender": "男", + "score": 40 + }, + { + "skill": "Sales", + "gender": "女", + "score": 60 + }, + { + "skill": "Sales", + "gender": "男", + "score": 40 + }, + { + "skill": "UX", + "gender": "女", + "score": 50 + }, + { + "skill": "UX", + "gender": "男", + "score": 60 + } + ] + }, + "target": [ + { + "type": "radar", + "encode": { + "x": [ + "skill" + ], + "y": [ + "score" + ], + "s": [ + "gender" + ] + } + } + ], + "generation": [ + { + "type": "heatmap", + "encode": { + "x": [ + "item" + ], + "y": [ + "skill" + ], + "size": [ + "score" + ], + "color": [ + "score" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "Development": 60, + "Marketing": 50, + "Users": 40, + "Test": 60, + "Language": 70, + "Technology": 50, + "Support": 30, + "Sales": 60, + "UX": 50 + } + ] + }, + "target": [ + { + "type": "radar", + "encode": { + "y": [ + "Development", + "Marketing", + "Users", + "Test", + "Language", + "Technology", + "Support", + "Sales", + "UX" + ] + } + } + ], + "generation": [ + { + "type": "radar", + "encode": { + "x": [ + "Development", + "Marketing", + "Users", + "Test", + "Language", + "Technology", + "Support", + "Sales", + "UX" + ], + "y": [ + "value" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "运营": 60, + "市场分析": 70, + "用户粘性": 50, + "迭代": 80, + "沟通": 65, + "创造力": 75, + "客户服务": 80, + "利润": 55, + "视觉设计": 90 + } + ] + }, + "target": [ + { + "type": "radar", + "encode": { + "y": [ + "运营", + "市场分析", + "用户粘性", + "迭代", + "沟通", + "创造力", + "客户服务", + "利润", + "视觉设计" + ] + } + } + ], + "generation": [ + { + "type": "radar", + "encode": { + "x": [ + "运营", + "市场分析", + "用户粘性", + "迭代", + "沟通", + "创造力", + "客户服务", + "利润", + "视觉设计" + ], + "y": [ + "运营", + "市场分析", + "用户粘性", + "迭代", + "沟通", + "创造力", + "客户服务", + "利润", + "视觉设计" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "skill": "Design", + "score": 70 + }, + { + "skill": "Development", + "score": 60 + }, + { + "skill": "Marketing", + "score": 50 + }, + { + "skill": "Users", + "score": 40 + }, + { + "skill": "Test", + "score": 60 + }, + { + "skill": "Language", + "score": 70 + }, + { + "skill": "Technology", + "score": 50 + }, + { + "skill": "Support", + "score": 30 + }, + { + "skill": "Sales", + "score": 60 + }, + { + "skill": "UX", + "score": 50 + } + ] + }, + "target": [ + { + "type": "radar", + "encode": { + "x": [ + "skill" + ], + "y": [ + "score" + ] + } + } + ], + "generation": [ + { + "type": "radar", + "encode": { + "x": [ + "skill" + ], + "y": [ + "score" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "指标": "工作效率", + "员工": "A", + "分数": 95 + }, + { + "指标": "工作效率", + "员工": "B", + "分数": 88 + }, + { + "指标": "团队合作", + "员工": "A", + "分数": 92 + }, + { + "指标": "团队合作", + "员工": "B", + "分数": 90 + }, + { + "指标": "时间管理", + "员工": "A", + "分数": 85 + }, + { + "指标": "时间管理", + "员工": "B", + "分数": 83 + }, + { + "指标": "创造力", + "员工": "A", + "分数": 89 + }, + { + "指标": "创造力", + "员工": "B", + "分数": 87 + }, + { + "指标": "可靠性", + "员工": "A", + "分数": 91 + }, + { + "指标": "可靠性", + "员工": "B", + "分数": 84 + } + ] + }, + "target": [ + { + "type": "radar", + "encode": { + "x": [ + "指标" + ], + "y": [ + "分数" + ], + "s": [ + "员工" + ] + } + } + ], + "generation": [ + { + "type": "radar", + "encode": { + "x": [ + "指标" + ], + "y": [ + "分数" + ], + "s": [ + "员工" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "开发": 70, + "市场": 65, + "用户": 40, + "测试": 75, + "语言": 85, + "技术": 60, + "支持": 45, + "销售": 55, + "用户体验": 70 + } + ] + }, + "target": [ + { + "type": "radar", + "encode": { + "y": [ + "开发", + "市场", + "用户", + "测试", + "语言", + "技术", + "支持", + "销售", + "用户体验" + ] + } + } + ], + "generation": [ + { + "type": "radar", + "encode": { + "x": [ + "开发", + "市场", + "用户", + "测试", + "语言", + "技术", + "支持", + "销售", + "用户体验" + ], + "y": [ + "值" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "产品设计": 65, + "传播": 70, + "客户关系": 60, + "测试验证": 85, + "文化": 75, + "项目管理": 90, + "技术服务": 85, + "财务指标": 65, + "艺术表现": 80 + } + ] + }, + "target": [ + { + "type": "radar", + "encode": { + "y": [ + "产品设计", + "传播", + "客户关系", + "测试验证", + "文化", + "项目管理", + "技术服务", + "财务指标", + "艺术表现" + ] + } + } + ], + "generation": [ + { + "type": "radar", + "encode": { + "x": [ + "产品设计", + "传播", + "客户关系", + "测试验证", + "文化", + "项目管理", + "技术服务", + "财务指标", + "艺术表现" + ], + "y": [ + 65, + 70, + 60, + 85, + 75, + 90, + 85, + 65, + 80 + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "ability": "学习能力", + "score": 85 + }, + { + "ability": "适应性", + "score": 78 + }, + { + "ability": "时间管理", + "score": 80 + }, + { + "ability": "危机管理", + "score": 75 + }, + { + "ability": "冲突解决", + "score": 82 + } + ] + }, + "target": [ + { + "type": "radar", + "encode": { + "x": [ + "ability" + ], + "y": [ + "score" + ] + } + } + ], + "generation": [ + { + "type": "radar", + "encode": { + "x": [ + "ability" + ], + "y": [ + "score" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "评分维度": "Customer Satisfaction", + "打分": 91 + }, + { + "评分维度": "Service Quality", + "打分": 86 + }, + { + "评分维度": "Product Innovation", + "打分": 84 + }, + { + "评分维度": "Operational Efficiency", + "打分": 75 + }, + { + "评分维度": "Brand Awareness", + "打分": 79 + } + ] + }, + "target": [ + { + "type": "radar", + "encode": { + "x": [ + "评分维度" + ], + "y": [ + "打分" + ] + } + } + ], + "generation": [ + { + "type": "radar", + "encode": { + "x": [ + "评分维度" + ], + "y": [ + "打分" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "地区": "南方-东南", + "销售额": 60 + }, + { + "地区": "南方-华南", + "销售额": 40 + }, + { + "地区": "南方-西南", + "销售额": 20 + }, + { + "地区": "北方-华北", + "销售额": 50 + }, + { + "地区": "北方-东北", + "销售额": 30 + } + ] + }, + "target": [ + { + "type": "treemap" + } + ], + "generation": [ + { + "type": "treemap" + } + ] + }, + { + "source": { + "data": [ + { + "地区": "中东-伊朗", + "石油产量": 350 + }, + { + "地区": "中东-伊拉克", + "石油产量": 300 + }, + { + "地区": "中东-沙特", + "石油产量": 500 + }, + { + "地区": "中东-阿联酋", + "石油产量": 200 + } + ] + }, + "target": [ + { + "type": "treemap" + } + ], + "generation": [ + { + "type": "column", + "encode": { + "x": [ + "地区" + ], + "y": [ + "石油产量" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "Department": "Research", + "Budget": 120 + }, + { + "Department": "Development", + "Budget": 80 + }, + { + "Department": "Marketing", + "Budget": 50 + }, + { + "Department": "Sales", + "Budget": 100 + }, + { + "Department": "Technology", + "Budget": 25 + }, + { + "Department": "Finance", + "Budget": 15 + }, + { + "Department": "Healthcare", + "Budget": 20 + }, + { + "Department": "Retail", + "Budget": 10 + } + ] + }, + "target": [ + { + "type": "treemap" + } + ], + "generation": [ + { + "type": "pie", + "encode": { + "x": [ + "Department" + ], + "y": [ + "Budget" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "Region": "Latin America-Brazil", + "Internet Users": 150000 + }, + { + "Region": "Latin America-Mexico", + "Internet Users": 120000 + }, + { + "Region": "Latin America-Argentina", + "Internet Users": 80000 + }, + { + "Region": "Latin America-Chile", + "Internet Users": 60000 + }, + { + "Region": "南亚-印度", + "Internet Users": 1400000 + }, + { + "Region": "南亚-巴基斯坦", + "Internet Users": 220000 + }, + { + "Region": "南亚-孟加拉", + "Internet Users": 160000 + }, + { + "Region": "南亚-尼泊尔", + "Internet Users": 30000 + } + ] + }, + "target": [ + { + "type": "treemap" + } + ], + "generation": [ + { + "type": "treemap" + } + ] + }, + { + "source": { + "data": [ + { + "地区": "华东-上海", + "销售额": 100 + }, + { + "地区": "华东-江苏", + "销售额": 120 + }, + { + "地区": "华东-浙江", + "销售额": 110 + }, + { + "地区": "华北-北京", + "销售额": 130 + }, + { + "地区": "华北-天津", + "销售额": 90 + } + ] + }, + "target": [ + { + "type": "treemap" + } + ], + "generation": [ + { + "type": "treemap" + } + ] + }, + { + "source": { + "data": [ + { + "value": 12.1, + "text": "电影" + }, + { + "value": 8.9, + "text": "情节" + }, + { + "value": 15.4, + "text": "演员" + }, + { + "value": 6, + "text": "导演" + }, + { + "value": 14.7, + "text": "表演" + }, + { + "value": 7.7, + "text": "票房" + }, + { + "value": 18.5, + "text": "制作" + }, + { + "value": 5.4, + "text": "摄影" + }, + { + "value": 20.9, + "text": "剧情" + }, + { + "value": 22.8, + "text": "大片" + }, + { + "value": 9.6, + "text": "银幕" + }, + { + "value": 7.1, + "text": "特效" + }, + { + "value": 13.9, + "text": "剪辑" + }, + { + "value": 10.1, + "text": "放映" + }, + { + "value": 19.4, + "text": "观影" + }, + { + "value": 16.3, + "text": "编剧" + }, + { + "value": 8, + "text": "重制" + }, + { + "value": 23.1, + "text": "原创" + }, + { + "value": 11.5, + "text": "票房" + }, + { + "value": 17.2, + "text": "影视" + }, + { + "value": 24.6, + "text": "制作" + } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "label": "text", + "y": "value" + } + } + ], + "generation": [ + { + "type": "wordCloud", + "encode": { + "label": "text", + "y": "value" + } + } + ] + }, + { + "source": { + "data": [ + { + "value": 20.5, + "text": "书籍" + }, + { + "value": 8.1, + "text": "知识" + }, + { + "value": 15.7, + "text": "故事" + }, + { + "value": 5.3, + "text": "情节" + }, + { + "value": 12.9, + "text": "作者" + }, + { + "value": 7.4, + "text": "角色" + }, + { + "value": 14.6, + "text": "理解" + }, + { + "value": 6.2, + "text": "感受" + }, + { + "value": 19.8, + "text": "阅读" + }, + { + "value": 25.1, + "text": "思想" + }, + { + "value": 10.3, + "text": "文学" + }, + { + "value": 9.9, + "text": "历史" + }, + { + "value": 11.2, + "text": "文化" + }, + { + "value": 7.3, + "text": "发展" + }, + { + "value": 13.5, + "text": "人物" + }, + { + "value": 9.1, + "text": "背景" + }, + { + "value": 16.4, + "text": "情感" + }, + { + "value": 5.9, + "text": "重点" + }, + { + "value": 6.8, + "text": "表达" + }, + { + "value": 22.3, + "text": "灵感" + }, + { + "value": 18.6, + "text": "涵义" + } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "label": "text", + "y": "value" + } + } + ], + "generation": [ + { + "type": "wordCloud", + "encode": { + "label": "text", + "y": "value" + } + } + ] + }, + { + "generation": [ + { + "type": "histogram", + "encode": { + "y": [ + "count()" + ], + "x": [ + "sepal_length" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "value": 9.1, + "text": "音乐" + }, + { + "value": 8.4, + "text": "旋律" + }, + { + "value": 20.9, + "text": "节奏" + }, + { + "value": 5.7, + "text": "作曲" + }, + { + "value": 18.7, + "text": "乐器" + }, + { + "value": 7.8, + "text": "表演" + }, + { + "value": 16.5, + "text": "合唱" + }, + { + "value": 6.6, + "text": "编曲" + }, + { + "value": 22.1, + "text": "舞台" + }, + { + "value": 13, + "text": "和弦" + }, + { + "value": 10.5, + "text": "声乐" + }, + { + "value": 8.2, + "text": "歌唱" + }, + { + "value": 19.8, + "text": "流派" + }, + { + "value": 5.9, + "text": "伴奏" + }, + { + "value": 12.3, + "text": "唱片" + }, + { + "value": 23.6, + "text": "音乐会" + }, + { + "value": 14.8, + "text": "独唱" + }, + { + "value": 7.3, + "text": "音符" + }, + { + "value": 11.7, + "text": "发声" + }, + { + "value": 15.1, + "text": "音色" + }, + { + "value": 17.4, + "text": "韵律" + } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "label": "text", + "y": "value" + } + } + ], + "generation": [ + { + "type": "wordCloud", + "encode": { + "label": "text", + "y": "value" + } + } + ] + }, + { + "source": { + "data": [ + { + "value": 18.8, + "text": "旅行" + }, + { + "value": 8.2, + "text": "景点" + }, + { + "value": 11.6, + "text": "探险" + }, + { + "value": 6.9, + "text": "导游" + }, + { + "value": 10.9, + "text": "路线" + }, + { + "value": 7.7, + "text": "出行" + }, + { + "value": 14.5, + "text": "住宿" + }, + { + "value": 5.3, + "text": "行程" + }, + { + "value": 20.1, + "text": "指南" + }, + { + "value": 13.2, + "text": "见闻" + }, + { + "value": 11, + "text": "计划" + }, + { + "value": 9.4, + "text": "冒险" + }, + { + "value": 17.6, + "text": "旅行社" + }, + { + "value": 6.4, + "text": "体验" + }, + { + "value": 15.3, + "text": "文化" + }, + { + "value": 8.9, + "text": "观光" + }, + { + "value": 5.5, + "text": "探索" + }, + { + "value": 23, + "text": "海外" + }, + { + "value": 12.8, + "text": "国内" + }, + { + "value": 10.2, + "text": "假期" + }, + { + "value": 9.9, + "text": "自由行" + } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "label": "text", + "y": "value" + } + } + ], + "generation": [ + { + "type": "wordCloud", + "encode": { + "label": "text", + "y": "value" + } + } + ] + }, + { + "source": { + "data": [ + { + "value": 22, + "text": "游戏" + }, + { + "value": 9.8, + "text": "角色" + }, + { + "value": 14.9, + "text": "冒险" + }, + { + "value": 6.1, + "text": "策略" + }, + { + "value": 20.7, + "text": "竞技" + }, + { + "value": 7.5, + "text": "挑战" + }, + { + "value": 16, + "text": "对战" + }, + { + "value": 5.2, + "text": "界面" + }, + { + "value": 19.9, + "text": "任务" + }, + { + "value": 13.6, + "text": "排行" + }, + { + "value": 10.4, + "text": "互动" + }, + { + "value": 8.3, + "text": "得分" + }, + { + "value": 12.9, + "text": "排行" + }, + { + "value": 17.8, + "text": "娱乐" + }, + { + "value": 7, + "text": "攻略" + }, + { + "value": 5.8, + "text": "操作" + }, + { + "value": 11.2, + "text": "关卡" + }, + { + "value": 25.4, + "text": "正版" + }, + { + "value": 15.6, + "text": "在线" + }, + { + "value": 18.1, + "text": "比赛" + }, + { + "value": 9.7, + "text": "角色扮演" + } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "label": "text", + "y": "value" + } + } + ], + "generation": [ + { + "type": "wordCloud", + "encode": { + "label": "text", + "y": "value" + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "商品类型", + "dataType": "string" + }, + { + "name": "Weight", + "dataType": "number" + }, + { + "name": "Price", + "dataType": "number" + } + ], + "data": [ + { + "商品类型": "Item1", + "Weight": 5, + "Price": 100 + }, + { + "商品类型": "Item2", + "Weight": 10, + "Price": 200 + }, + { + "商品类型": "Item3", + "Weight": 15, + "Price": 250 + }, + { + "商品类型": "Item4", + "Weight": 20, + "Price": 300 + }, + { + "商品类型": "Item5", + "Weight": 25, + "Price": 400 + } + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": [ + "Weight" + ], + "y": [ + "Price" + ], + "s": [ + "商品类型" + ] + } + } + ], + "generation": [ + { + "type": "scatter", + "encode": { + "x": [ + "Weight" + ], + "y": [ + "Price" + ], + "s": [ + "商品类型" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "咖啡摄入量": 1, + "工作效率": 60 + }, + { + "咖啡摄入量": 2, + "工作效率": 65 + }, + { + "咖啡摄入量": 3, + "工作效率": 70 + }, + { + "咖啡摄入量": 4, + "工作效率": 68 + }, + { + "咖啡摄入量": 5, + "工作效率": 66 + }, + { + "咖啡摄入量": 6, + "工作效率": 63 + } + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": [ + "咖啡摄入量" + ], + "y": [ + "工作效率" + ] + } + } + ], + "generation": [ + { + "type": "scatter", + "encode": { + "x": [ + "咖啡摄入量" + ], + "y": [ + "工作效率" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "项目", + "dataType": "string" + }, + { + "name": "时间投入", + "dataType": "number" + }, + { + "name": "任务完成数量", + "dataType": "number" + } + ], + "data": [ + { + "项目": "Project1", + "时间投入": 10, + "任务完成数量": 100 + }, + { + "项目": "Project2", + "时间投入": 20, + "任务完成数量": 200 + }, + { + "项目": "Project3", + "时间投入": 30, + "任务完成数量": 300 + }, + { + "项目": "Project4", + "时间投入": 40, + "任务完成数量": 350 + }, + { + "项目": "Project5", + "时间投入": 50, + "任务完成数量": 450 + } + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": [ + "时间投入" + ], + "y": [ + "任务完成数量" + ], + "s": [ + "项目" + ] + } + } + ], + "generation": [ + { + "type": "scatter", + "encode": { + "x": [ + "时间投入" + ], + "y": [ + "任务完成数量" + ], + "s": [ + "项目" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "Programming Language": "Python", + "Popularity": 90, + "Number of Users": 500000 + }, + { + "Programming Language": "Java", + "Popularity": 85, + "Number of Users": 450000 + }, + { + "Programming Language": "C++", + "Popularity": 80, + "Number of Users": 400000 + }, + { + "Programming Language": "JavaScript", + "Popularity": 95, + "Number of Users": 600000 + }, + { + "Programming Language": "Ruby", + "Popularity": 70, + "Number of Users": 350000 + } + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": [ + "Popularity" + ], + "y": [ + "Number of Users" + ], + "s": [ + "Programming Language" + ] + } + } + ], + "generation": [ + { + "type": "multiple", + "encode": { + "x": [ + "ProgrammingLanguage" + ], + "y": [ + "Popularity", + "NumberofUsers" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Category", + "dataType": "string" + }, + { + "name": "Age", + "dataType": "number" + }, + { + "name": "Income", + "dataType": "number" + } + ], + "data": [ + { + "Category": "A", + "Age": 25, + "Income": 30000 + }, + { + "Category": "A", + "Age": 30, + "Income": 40000 + }, + { + "Category": "B", + "Age": 35, + "Income": 50000 + }, + { + "Category": "B", + "Age": 40, + "Income": 60000 + }, + { + "Category": "C", + "Age": 45, + "Income": 70000 + } + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": [ + "Age" + ], + "y": [ + "Income" + ], + "s": [ + "Category" + ] + } + } + ], + "generation": [ + { + "type": "scatter", + "encode": { + "x": [ + "Age" + ], + "y": [ + "Income" + ], + "s": [ + "Category" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "员工满意度": 4.2, + "年停工率": 5, + "部门": "研发", + "员工人数": 200 + }, + { + "员工满意度": 3.8, + "年停工率": 8, + "部门": "生产", + "员工人数": 350 + }, + { + "员工满意度": 4.5, + "年停工率": 3, + "部门": "销售", + "员工人数": 150 + }, + { + "员工满意度": 4, + "年停工率": 6, + "部门": "人力资源", + "员工人数": 80 + }, + { + "员工满意度": 3.9, + "年停工率": 7, + "部门": "财务", + "员工人数": 100 + }, + { + "员工满意度": 4.1, + "年停工率": 4, + "部门": "市场", + "员工人数": 120 + }, + { + "员工满意度": 3.7, + "年停工率": 9, + "部门": "物流", + "员工人数": 200 + }, + { + "员工满意度": 4.3, + "年停工率": 5, + "部门": "客服", + "员工人数": 60 + }, + { + "员工满意度": 4.4, + "年停工率": 2, + "部门": "IT", + "员工人数": 90 + }, + { + "员工满意度": 3.5, + "年停工率": 10, + "部门": "采购", + "员工人数": 70 + } + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": [ + "员工满意度" + ], + "y": [ + "年停工率" + ], + "s": [ + "部门" + ], + "size": "员工人数" + } + } + ], + "generation": [ + { + "type": "scatter", + "encode": { + "x": [ + "年停工率" + ], + "y": [ + "员工满意度" + ], + "s": [ + "部门" + ], + "size": "员工人数" + } + } + ] + }, + { + "source": { + "data": [ + { + "Temperature": 23, + "IceCreamSales": 450 + }, + { + "Temperature": 25, + "IceCreamSales": 470 + }, + { + "Temperature": 28, + "IceCreamSales": 500 + }, + { + "Temperature": 30, + "IceCreamSales": 530 + }, + { + "Temperature": 32, + "IceCreamSales": 600 + }, + { + "Temperature": 35, + "IceCreamSales": 650 + } + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": [ + "Temperature" + ], + "y": [ + "IceCreamSales" + ] + } + } + ], + "generation": [ + { + "type": "scatter", + "encode": { + "x": [ + "Temperature" + ], + "y": [ + "IceCreamSales" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "学习时长": 2, + "记忆力得分": 50 + }, + { + "学习时长": 3, + "记忆力得分": 60 + }, + { + "学习时长": 4, + "记忆力得分": 65 + }, + { + "学习时长": 5, + "记忆力得分": 70 + }, + { + "学习时长": 6, + "记忆力得分": 75 + }, + { + "学习时长": 7, + "记忆力得分": 77 + }, + { + "学习时长": 8, + "记忆力得分": 80 + } + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": [ + "学习时长" + ], + "y": [ + "记忆力得分" + ] + } + } + ], + "generation": [ + { + "type": "scatter", + "encode": { + "x": [ + "学习时长" + ], + "y": [ + "记忆力得分" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "Average Speed": 80, + "Fuel Consumption": 8, + "Transport Type": "Car", + "Distance": 200 + }, + { + "Average Speed": 70, + "Fuel Consumption": 12, + "Transport Type": "Truck", + "Distance": 300 + }, + { + "Average Speed": 60, + "Fuel Consumption": 5, + "Transport Type": "Motorcycle", + "Distance": 100 + }, + { + "Average Speed": 40, + "Fuel Consumption": 0, + "Transport Type": "Bicycle", + "Distance": 20 + }, + { + "Average Speed": 120, + "Fuel Consumption": 15, + "Transport Type": "Airplane", + "Distance": 1000 + }, + { + "Average Speed": 30, + "Fuel Consumption": 0, + "Transport Type": "Foot", + "Distance": 5 + }, + { + "Average Speed": 50, + "Fuel Consumption": 3, + "Transport Type": "Electric Scooter", + "Distance": 50 + }, + { + "Average Speed": 100, + "Fuel Consumption": 10, + "Transport Type": "Train", + "Distance": 400 + }, + { + "Average Speed": 90, + "Fuel Consumption": 11, + "Transport Type": "Bus", + "Distance": 150 + }, + { + "Average Speed": 110, + "Fuel Consumption": 6, + "Transport Type": "Helicopter", + "Distance": 600 + } + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": [ + "Average Speed" + ], + "y": [ + "Fuel Consumption" + ], + "s": [ + "Transport Type" + ], + "size": "Distance" + } + } + ], + "generation": [ + { + "type": "scatter", + "encode": { + "x": [ + "AverageSpeed" + ], + "y": [ + "FuelConsumption" + ], + "s": [ + "TransportType" + ], + "size": "Distance" + } + } + ] + }, + { + "source": { + "data": [ + { + "Salary": 8000, + "Experience": 5, + "Industry": "Technology", + "Age": 27 + }, + { + "Salary": 6000, + "Experience": 8, + "Industry": "Finance", + "Age": 32 + }, + { + "Salary": 5500, + "Experience": 4, + "Industry": "Healthcare", + "Age": 29 + }, + { + "Salary": 7000, + "Experience": 7, + "Industry": "Education", + "Age": 35 + }, + { + "Salary": 4800, + "Experience": 3, + "Industry": "Retail", + "Age": 24 + }, + { + "Salary": 7500, + "Experience": 6, + "Industry": "Real Estate", + "Age": 30 + }, + { + "Salary": 5200, + "Experience": 5, + "Industry": "Marketing", + "Age": 28 + }, + { + "Salary": 6900, + "Experience": 9, + "Industry": "Engineering", + "Age": 40 + }, + { + "Salary": 5700, + "Experience": 4, + "Industry": "Design", + "Age": 26 + }, + { + "Salary": 6200, + "Experience": 8, + "Industry": "Manufacturing", + "Age": 33 + } + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": [ + "Salary" + ], + "y": [ + "Experience" + ], + "s": [ + "Industry" + ], + "size": "Age" + } + } + ], + "generation": [ + { + "type": "scatter", + "encode": { + "x": [ + "Experience" + ], + "y": [ + "Salary" + ], + "color": [ + "Industry" + ], + "size": [ + "Age" + ] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "性别", + "dataType": "string" + }, + { + "name": "用户满意度", + "dataType": "number" + }, + { + "name": "销售量", + "dataType": "number" + } + ], + "data": [ + { + "性别": "男", + "用户满意度": 60, + "销售量": 500 + }, + { + "性别": "男", + "用户满意度": 70, + "销售量": 600 + }, + { + "性别": "女", + "用户满意度": 80, + "销售量": 700 + }, + { + "性别": "女", + "用户满意度": 90, + "销售量": 800 + }, + { + "性别": "男", + "用户满意度": 100, + "销售量": 900 + } + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": [ + "用户满意度" + ], + "y": [ + "销售量" + ], + "s": [ + "性别" + ] + } + } + ], + "generation": [ + { + "type": "scatter", + "encode": { + "x": [ + "用户满意度" + ], + "y": [ + "销售量" + ], + "s": [ + "性别" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "hours_of_sleep": 5, + "concentration_levels": 60 + }, + { + "hours_of_sleep": 6, + "concentration_levels": 65 + }, + { + "hours_of_sleep": 7, + "concentration_levels": 70 + }, + { + "hours_of_sleep": 8, + "concentration_levels": 75 + }, + { + "hours_of_sleep": 9, + "concentration_levels": 80 + }, + { + "hours_of_sleep": 10, + "concentration_levels": 85 + }, + { + "hours_of_sleep": 11, + "concentration_levels": 84 + }, + { + "hours_of_sleep": 12, + "concentration_levels": 82 + } + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": [ + "hours_of_sleep" + ], + "y": [ + "concentration_levels" + ] + } + } + ], + "generation": [ + { + "type": "scatter", + "encode": { + "x": [ + "hours_of_sleep" + ], + "y": [ + "concentration_levels" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "创意类型": "新", + "访问次数": 500, + "购买量": 50 + }, + { + "创意类型": "新", + "访问次数": 1000, + "购买量": 100 + }, + { + "创意类型": "旧", + "访问次数": 1500, + "购买量": 150 + }, + { + "创意类型": "旧", + "访问次数": 2000, + "购买量": 200 + }, + { + "创意类型": "旧", + "访问次数": 2500, + "购买量": 250 + } + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": [ + "访问次数" + ], + "y": [ + "购买量" + ], + "s": [ + "创意类型" + ] + } + } + ], + "generation": [ + { + "type": "scatter", + "encode": { + "x": [ + "访问次数" + ], + "y": [ + "购买量" + ], + "s": [ + "创意类型" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "广告费用": 1000, + "销售额": 5000 + }, + { + "广告费用": 1500, + "销售额": 5500 + }, + { + "广告费用": 2000, + "销售额": 6000 + }, + { + "广告费用": 2500, + "销售额": 6500 + }, + { + "广告费用": 3000, + "销售额": 7000 + }, + { + "广告费用": 3500, + "销售额": 7400 + }, + { + "广告费用": 4000, + "销售额": 7800 + }, + { + "广告费用": 4500, + "销售额": 8200 + } + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": [ + "广告费用" + ], + "y": [ + "销售额" + ] + } + } + ], + "generation": [ + { + "type": "scatter", + "encode": { + "x": [ + "广告费用" + ], + "y": [ + "销售额" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "评论数": 500, + "评级": 4.2, + "产品类别": "电子产品", + "销售量": 15000 + }, + { + "评论数": 400, + "评级": 4, + "产品类别": "服装", + "销售量": 12000 + }, + { + "评论数": 320, + "评级": 4.1, + "产品类别": "家庭用品", + "销售量": 13000 + }, + { + "评论数": 400, + "评级": 3.8, + "产品类别": "运动器材", + "销售量": 11000 + }, + { + "评论数": 250, + "评级": 4.3, + "产品类别": "珠宝", + "销售量": 5000 + }, + { + "评论数": 300, + "评级": 3.9, + "产品类别": "化妆品", + "销售量": 9000 + }, + { + "评论数": 450, + "评级": 4, + "产品类别": "玩具", + "销售量": 8000 + }, + { + "评论数": 280, + "评级": 4.4, + "产品类别": "家具", + "销售量": 7500 + }, + { + "评论数": 370, + "评级": 3.7, + "产品类别": "图书", + "销售量": 14000 + }, + { + "评论数": 520, + "评级": 4.1, + "产品类别": "食品", + "销售量": 15000 + } + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": [ + "评论数" + ], + "y": [ + "评级" + ], + "s": [ + "产品类别" + ], + "size": "销售量" + } + } + ], + "generation": [ + { + "type": "scatter", + "encode": { + "x": [ + "评论数" + ], + "y": [ + "评级" + ], + "s": [ + "产品类别" + ], + "size": "销售量" + } + } + ] + }, + { + "source": { + "data": [ + { + "温度": 20, + "冰淇淋销售量": 75 + }, + { + "温度": 22, + "冰淇淋销售量": 80 + }, + { + "温度": 25, + "冰淇淋销售量": 85 + }, + { + "温度": 28, + "冰淇淋销售量": 90 + }, + { + "温度": 30, + "冰淇淋销售量": 100 + }, + { + "温度": 32, + "冰淇淋销售量": 110 + }, + { + "温度": 35, + "冰淇淋销售量": 130 + }, + { + "温度": 37, + "冰淇淋销售量": 150 + } + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": [ + "温度" + ], + "y": [ + "冰淇淋销售量" + ] + } + } + ], + "generation": [ + { + "type": "scatter", + "encode": { + "x": [ + "温度" + ], + "y": [ + "冰淇淋销售量" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "排队时间": 3, + "满意度": 8 + }, + { + "排队时间": 4, + "满意度": 9 + }, + { + "排队时间": 6, + "满意度": 9 + }, + { + "排队时间": 6, + "满意度": 8 + }, + { + "排队时间": 7, + "满意度": 7 + }, + { + "排队时间": 7, + "满意度": 3 + }, + { + "排队时间": 9, + "满意度": 6 + }, + { + "排队时间": 10, + "满意度": 5 + }, + { + "排队时间": 11, + "满意度": 5 + }, + { + "排队时间": 12, + "满意度": 4 + }, + { + "排队时间": 13, + "满意度": 4 + }, + { + "排队时间": 13, + "满意度": 3 + }, + { + "排队时间": 14, + "满意度": 1 + }, + { + "排队时间": 15, + "满意度": 1 + } + ] + }, + "generation": [ + { + "type": "scatter", + "encode": { + "x": [ + "排队时间" + ], + "y": [ + "满意度" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "study_time": 2, + "exam_score": 55 + }, + { + "study_time": 3, + "exam_score": 60 + }, + { + "study_time": 4, + "exam_score": 65 + }, + { + "study_time": 5, + "exam_score": 70 + }, + { + "study_time": 6, + "exam_score": 75 + }, + { + "study_time": 7, + "exam_score": 80 + }, + { + "study_time": 8, + "exam_score": 85 + }, + { + "study_time": 9, + "exam_score": 90 + }, + { + "study_time": 10, + "exam_score": 95 + }, + { + "study_time": 11, + "exam_score": 97 + } + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": [ + "study_time" + ], + "y": [ + "exam_score" + ] + } + } + ], + "generation": [ + { + "type": "scatter", + "encode": { + "x": [ + "study_time" + ], + "y": [ + "exam_score" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "time_spent_watching_tv": 1, + "physical_activity_level": 80 + }, + { + "time_spent_watching_tv": 2, + "physical_activity_level": 78 + }, + { + "time_spent_watching_tv": 3, + "physical_activity_level": 70 + }, + { + "time_spent_watching_tv": 4, + "physical_activity_level": 65 + }, + { + "time_spent_watching_tv": 5, + "physical_activity_level": 60 + }, + { + "time_spent_watching_tv": 6, + "physical_activity_level": 55 + }, + { + "time_spent_watching_tv": 10, + "physical_activity_level": 55 + }, + { + "time_spent_watching_tv": 4, + "physical_activity_level": 70 + } + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": [ + "time_spent_watching_tv" + ], + "y": [ + "physical_activity_level" + ] + } + } + ], + "generation": [ + { + "type": "scatter", + "encode": { + "x": [ + "time_spent_watching_tv" + ], + "y": [ + "physical_activity_level" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "演讲时间": 5, + "观众满意度": 6 + }, + { + "演讲时间": 10, + "观众满意度": 7 + }, + { + "演讲时间": 15, + "观众满意度": 8 + }, + { + "演讲时间": 30, + "观众满意度": 7 + }, + { + "演讲时间": 45, + "观众满意度": 5 + }, + { + "演讲时间": 60, + "观众满意度": 4 + } + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": [ + "演讲时间" + ], + "y": [ + "观众满意度" + ] + } + } + ], + "generation": [ + { + "type": "scatter", + "encode": { + "x": [ + "演讲时间" + ], + "y": [ + "观众满意度" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "使用率": 75, + "平均点击次数": 300, + "业务分类": "电商", + "平均耗时": 120 + }, + { + "使用率": 85, + "平均点击次数": 500, + "业务分类": "社交媒体", + "平均耗时": 95 + }, + { + "使用率": 60, + "平均点击次数": 250, + "业务分类": "金融", + "平均耗时": 200 + }, + { + "使用率": 90, + "平均点击次数": 600, + "业务分类": "教育", + "平均耗时": 80 + }, + { + "使用率": 70, + "平均点击次数": 400, + "业务分类": "健康", + "平均耗时": 150 + }, + { + "使用率": 80, + "平均点击次数": 550, + "业务分类": "旅游", + "平均耗时": 100 + }, + { + "使用率": 65, + "平均点击次数": 350, + "业务分类": "娱乐", + "平均耗时": 130 + }, + { + "使用率": 95, + "平均点击次数": 700, + "业务分类": "科技", + "平均耗时": 90 + }, + { + "使用率": 72, + "平均点击次数": 420, + "业务分类": "物流", + "平均耗时": 160 + }, + { + "使用率": 88, + "平均点击次数": 580, + "业务分类": "新闻", + "平均耗时": 110 + } + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": [ + "使用率" + ], + "y": [ + "平均点击次数" + ], + "s": [ + "业务分类" + ], + "size": "平均耗时" + } + } + ], + "generation": [ + { + "type": "scatter", + "encode": { + "x": [ + "平均点击次数" + ], + "y": [ + "平均耗时" + ], + "color": [ + "业务分类" + ], + "size": [ + "使用率" + ] + } + } + ] + } +] \ No newline at end of file diff --git a/evaluations/datastes/recommend/flow-diagram/01_base.json b/evaluations/datastes/recommend/flow-diagram/01_base.json new file mode 100644 index 0000000..59f0491 --- /dev/null +++ b/evaluations/datastes/recommend/flow-diagram/01_base.json @@ -0,0 +1,394 @@ +[ + { + "source": { + "data": [ + { "from": "客户下单", "to": "系统生成订单" }, + { "from": "系统生成订单", "to": "仓库拣货" }, + { "from": "仓库拣货", "to": "仓库打包" }, + { "from": "仓库打包", "to": "物流配送" }, + { "from": "物流配送", "to": "客户收货" } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "from", + "target": "to" + } + } + ] + }, + { + "source": { + "data": [ + { "上一步": "访问注册页面", "下一步": "填写并提交注册表单", "提示": "信息无误" }, + { "上一步": "填写并提交注册表单", "下一步": "验证用户信息", "提示": "信息无误" }, + { "上一步": "验证用户信息", "下一步": "创建新用户账户", "提示": "信息无误" }, + { "上一步": "验证用户信息", "下一步": "提示修改错误信息", "提示": "信息有误" }, + { "上一步": "创建新用户账户", "下一步": "发送验证邮件", "提示": "信息有误" }, + { "上一步": "发送验证邮件", "下一步": "点击验证链接", "提示": "信息无误" }, + { "上一步": "点击验证链接", "下一步": "注册成功,跳转到登录页面", "提示": "信息无误" } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "上一步", + "target": "下一步" + } + } + ] + }, + { + "source": { + "data": [ + { "from": "Start", "to": "Prepare Ingredients" }, + { "from": "Prepare Ingredients", "to": "Cook Ingredients" }, + { "from": "Cook Ingredients", "to": "Serve Dish" }, + { "from": "Serve Dish", "to": "Finish" } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "from", + "target": "to" + } + } + ] + }, + { + "source": { + "data": [ + { "步骤": "查找产品", "下一步": "选择产品" }, + { "步骤": "选择产品", "下一步": "加入购物车" }, + { "步骤": "加入购物车", "下一步": "下单支付" }, + { "步骤": "下单支付", "下一步": "完成购买" } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "步骤", + "target": "下一步" + } + } + ] + }, + { + "source": { + "data": [ + { "from": "Research Topic", "to": "Draft Outline" }, + { "from": "Draft Outline", "to": "Write Content" }, + { "from": "Write Content", "to": "Edit Draft" }, + { "from": "Edit Draft", "to": "Publish" } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "from", + "target": "to" + } + } + ] + }, + { + "source": { + "data": [ + { "步骤": "创建项目", "下一步": "设计原型" }, + { "步骤": "设计原型", "下一步": "开发应用" }, + { "步骤": "开发应用", "下一步": "测试应用" }, + { "步骤": "测试应用", "下一步": "部署应用" } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "步骤", + "target": "下一步" + } + } + ] + }, + { + "source": { + "data": [ + { + "source": "加载数据", + "target": "逻辑回归" + }, + { + "source": "逻辑回归", + "target": "模型预测" + }, + { + "source": "逻辑回归", + "target": "读取参数" + } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "source", + "target": "target" + } + } + ] + }, + { + "source": { + "data": [ + { + "环节": "请假申请", + "下一步": "领导审批" + }, + { + "环节": "请假申请", + "下一步": "一级审批" + }, + { + "环节": "领导审批", + "下一步": "二级审批" + }, + { + "环节": "一级审批", + "下一步": "二级审批" + } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "环节", + "target": "下一步" + } + } + ] + }, + { + "source": { + "data": [ + { + "stage": "Start", + "next": "Analysis" + }, + { + "stage": "Analysis", + "next": "Design" + }, + { + "stage": "Design", + "next": "Implementation" + } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "stage", + "target": "next" + } + } + ] + }, + { + "source": { + "data": [ + { + "过程": "调查", + "后续": "评估" + }, + { + "过程": "评估", + "后续": "决策" + }, + { + "过程": "决策", + "后续": "执行" + } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "过程", + "target": "后续" + } + } + ] + }, + { + "source": { + "data": [ + { + "source": "Import Data", + "target": "Preprocessing" + }, + { + "source": "Preprocessing", + "target": "Feature Extraction" + }, + { + "source": "Feature Extraction", + "target": "Training" + } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "source", + "target": "target" + } + } + ] + }, + { + "source": { + "data": [ + { + "任务": "准备食材", + "步骤": "切割" + }, + { + "任务": "切割", + "步骤": "烹饪" + }, + { + "任务": "烹饪", + "步骤": "摆盘" + } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "任务", + "target": "步骤" + } + } + ] + }, + { + "source": { + "data": [ + { + "phase": "Discovery", + "next": "Definition" + }, + { + "phase": "Definition", + "next": "Development" + }, + { + "phase": "Development", + "next": "Delivery" + } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "phase", + "target": "next" + } + } + ] + }, + { + "source": { + "data": [ + { + "阶段": "需求收集", + "下一步": "需求分析" + }, + { + "阶段": "需求分析", + "下一步": "系统设计" + }, + { + "阶段": "系统设计", + "下一步": "实现" + } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "阶段", + "target": "下一步" + } + } + ] + }, + { + "source": { + "data": [ + { + "source": "Idea", + "target": "Research" + }, + { + "source": "Research", + "target": "Prototype" + }, + { + "source": "Prototype", + "target": "Testing" + } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "source", + "target": "target" + } + } + ] + }, + { + "source": { + "data": [ + { + "步骤": "起草合同", + "后续": "内部评审" + }, + { + "步骤": "内部评审", + "后续": "客户确认" + }, + { + "步骤": "客户确认", + "后续": "合同签署" + } + ] + }, + "target": [ + { + "type": "flow_diagram", + "encode": { + "source": "步骤", + "target": "后续" + } + } + ] + } +] diff --git a/evaluations/datastes/recommend/funnel/01_base.json b/evaluations/datastes/recommend/funnel/01_base.json new file mode 100644 index 0000000..6b17e98 --- /dev/null +++ b/evaluations/datastes/recommend/funnel/01_base.json @@ -0,0 +1,563 @@ +[ + { + "source": { + "metas": [ + { + "name": "注册用户", + "dataType": "number" + }, + { + "name": "加入购物车", + "dataType": "number" + }, + { + "name": "下单成功", + "dataType": "number" + }, + { + "name": "购买成功", + "dataType": "number" + } + ], + "data": [ + {"注册用户": 20000, "加入购物车": 12000, "下单成功": 3600, "购买成功": 2800} + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": ["注册用户", "加入购物车", "下单成功", "购买成功"] + } + } + ] +}, + { + "source": { + "metas": [ + { + "name": "Visits", + "dataType": "number" + }, + { + "name": "Signups", + "dataType": "number" + }, + { + "name": "Purchased", + "dataType": "number" + }, + { + "name": "Retained Customers", + "dataType": "number" + } + ], + "data": [ + {"Visits": 5000, "Signups": 3000, "Purchased": 1500, "Retained Customers": 800} + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": ["Visits", "Signups", "Purchased", "Retained Customers"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "收到简历", + "dataType": "number" + }, + { + "name": "初筛通过", + "dataType": "number" + }, + { + "name": "进入面试", + "dataType": "number" + }, + { + "name": "最终录用", + "dataType": "number" + } + ], + "data": [ + {"收到简历": 1000, "初筛通过": 400, "进入面试": 200, "最终录用": 50} + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": ["收到简历", "初筛通过", "进入面试", "最终录用"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Page Views", + "dataType": "number" + }, + { + "name": "Clicks", + "dataType": "number" + }, + { + "name": "Cart Additions", + "dataType": "number" + }, + { + "name": "Checkouts", + "dataType": "number" + } + ], + "data": [ + {"Page Views": 10000, "Clicks": 7000, "Cart Additions": 3500, "Checkouts": 2500} + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": ["Page Views", "Clicks", "Cart Additions", "Checkouts"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Leads Generated", + "dataType": "number" + }, + { + "name": "Contacted", + "dataType": "number" + }, + { + "name": "Qualified", + "dataType": "number" + }, + { + "name": "Converted", + "dataType": "number" + } + ], + "data": [ + {"Leads Generated": 12000, "Contacted": 6000, "Qualified": 3000, "Converted": 1200} + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": ["Leads Generated", "Contacted", "Qualified", "Converted"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Application Received", + "dataType": "number" + }, + { + "name": "First Review", + "dataType": "number" + }, + { + "name": "Interview", + "dataType": "number" + }, + { + "name": "Accept Offer", + "dataType": "number" + } + ], + "data": [ + {"Application Received": 500, "First Review": 300, "Interview": 100, "Accept Offer": 30} + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": ["Application Received", "First Review", "Interview", "Accept Offer"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "浏览新闻", + "dataType": "number" + }, + { + "name": "文章点击", + "dataType": "number" + }, + { + "name": "阅读完成", + "dataType": "number" + }, + { + "name": "分享", + "dataType": "number" + } + ], + "data": [ + {"浏览新闻": 8000, "文章点击": 6000, "阅读完成": 3000, "分享": 500} + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": ["浏览新闻", "文章点击", "阅读完成", "分享"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Session Starts", + "dataType": "number" + }, + { + "name": "Games Played", + "dataType": "number" + }, + { + "name": "In-Game Purchase", + "dataType": "number" + }, + { + "name": "Return User", + "dataType": "number" + } + ], + "data": [ + {"Session Starts": 9000, "Games Played": 5000, "In-Game Purchase": 2000, "Return Users": 1000} + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": ["Session Starts", "Games Played", "In-Game Purchase", "Return Users"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Free Trial Signups", + "dataType": "number" + }, + { + "name": "Usage After Trial", + "dataType": "number" + }, + { + "name": "Upgrades", + "dataType": "number" + }, + { + "name": "Long-term Subscribers", + "dataType": "number" + } + ], + "data": [ + {"Free Trial Signups": 600, "Usage After Trial": 400, "Upgrades": 150, "Long-term Subscribers": 85} + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": ["Free Trial Signups", "Usage After Trial", "Upgrades", "Long-term Subscribers"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "信息传播", + "dataType": "number" + }, + { + "name": "接受搜索", + "dataType": "number" + }, + { + "name": "阅读条款", + "dataType": "number" + }, + { + "name": "尝试服务", + "dataType": "number" + } + ], + "data": [ + {"信息传播": 20000, "接受搜索": 12000, "阅读条款": 5000, "尝试服务": 1800} + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": ["信息传播", "接受搜索", "阅读条款", "尝试服务"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Campaign Views", + "dataType": "number" + }, + { + "name": "Clicks", + "dataType": "number" + }, + { + "name": "Conversions", + "dataType": "number" + }, + { + "name": "Repeat Customers", + "dataType": "number" + } + ], + "data": [ + {"Campaign Views": 100000, "Clicks": 50000, "Conversions": 20000, "Repeat Customers": 5000} + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": ["Campaign Views", "Clicks", "Conversions", "Repeat Customers"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "潜在客户", + "dataType": "number" + }, + { + "name": "营销邮件打开", + "dataType": "number" + }, + { + "name": "点击链接", + "dataType": "number" + }, + { + "name": "签约", + "dataType": "number" + } + ], + "data": [ + {"潜在客户": 7000, "营销邮件打开": 4000, "点击链接": 1500, "签约": 300} + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": ["潜在客户", "营销邮件打开", "点击链接", "签约"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "广告展示", + "dataType": "number" + }, + { + "name": "广告点击", + "dataType": "number" + }, + { + "name": "进入网站", + "dataType": "number" + }, + { + "name": "完成注册", + "dataType": "number" + } + ], + "data": [ + {"广告展示": 500000, "广告点击": 100000, "进入网站": 20000, "完成注册": 1000} + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": ["广告展示", "广告点击", "进入网站", "完成注册"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Social Media Followers", + "dataType": "number" + }, + { + "name": "Engaged Users", + "dataType": "number" + }, + { + "name": "Content Shares", + "dataType": "number" + }, + { + "name": "Conversions", + "dataType": "number" + } + ], + "data": [ + {"Social Media Followers": 10000, "Engaged Users": 4000, "Content Shares": 1000, "Conversions": 200} + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": ["Social Media Followers", "Engaged Users", "Content Shares", "Conversions"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "文章阅读", + "dataType": "number" + }, + { + "name": "深入阅读", + "dataType": "number" + }, + { + "name": "推荐他人", + "dataType": "number" + }, + { + "name": "新增用户", + "dataType": "number" + } + ], + "data": [ + {"文章阅读": 2500, "深入阅读": 1500, "推荐他人": 800, "新增用户": 200} + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": ["文章阅读", "深入阅读", "推荐他人", "新增用户"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "注册会展", + "dataType": "number" + }, + { + "name": "到场参与", + "dataType": "number" + }, + { + "name": "深度交谈", + "dataType": "number" + }, + { + "name": "后续联系", + "dataType": "number" + } + ], + "data": [ + {"注册会展": 1000, "到场参与": 600, "深度交谈": 300, "后续联系": 100} + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": ["注册会展", "到场参与", "深度交谈", "后续联系"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "咨询金额", + "dataType": "number" + }, + { + "name": "可用金额", + "dataType": "number" + }, + { + "name": "曝光金额", + "dataType": "number" + }, + { + "name": "成交金额", + "dataType": "number" + } + ], + "data": [ + {"咨询金额": 1000, "可用金额": 600, "曝光金额": 300, "提交金额": 100, "成交金额": 100} + ] + }, + "target": [ + { + "type": "funnel", + "encode": { + "y": ["咨询金额", "可用金额", "曝光金额", "提交金额", "成交金额"] + } + } + ] + } +] diff --git a/evaluations/datastes/recommend/gpt_vis_train.jsonl b/evaluations/datastes/recommend/gpt_vis_train.jsonl new file mode 100644 index 0000000..cb633be --- /dev/null +++ b/evaluations/datastes/recommend/gpt_vis_train.jsonl @@ -0,0 +1,1136 @@ +{"prompt":"{\"metas\":[{\"name\":\"Product\",\"dataType\":\"string\"},{\"name\":\"Sales\",\"dataType\":\"number\"}],\"data\":[{\"Product\":\"Laptop\",\"Sales\":250},{\"Product\":\"Tablet\",\"Sales\":150},{\"Product\":\"Smartphone\",\"Sales\":300}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Product\"],\"y\":[\"Sales\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"},{\"name\":\"洲\",\"dataType\":\"string\"}],\"data\":[{\"国家\":\"中国\",\"GDP\":14342903,\"洲\":\"亚洲\"},{\"国家\":\"美国\",\"GDP\":21433300,\"洲\":\"北美洲\"},{\"国家\":\"德国\",\"GDP\":3845630,\"洲\":\"欧洲\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"GDP\"],\"s\":[\"洲\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"},{\"name\":\"Year\",\"dataType\":\"string\"}],\"data\":[{\"Country\":\"USA\",\"GDP\":21433000,\"Year\":\"2022\"},{\"Country\":\"China\",\"GDP\":14342000,\"Year\":\"2022\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"GDP\"],\"s\":[\"Year\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"城市\",\"dataType\":\"string\"},{\"name\":\"平均气温\",\"dataType\":\"number\"}],\"data\":[{\"城市\":\"伦敦\",\"平均气温\":11},{\"城市\":\"东京\",\"平均气温\":15},{\"城市\":\"纽约\",\"平均气温\":13},{\"城市\":\"巴黎\",\"平均气温\":12},{\"城市\":\"悉尼\",\"平均气温\":17}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"平均气温\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"state\",\"dataType\":\"string\"},{\"name\":\"population\",\"dataType\":\"number\"},{\"name\":\"age\",\"dataType\":\"string\"}],\"data\":[{\"state\":\"AL\",\"age\":\"<10\",\"population\":598478},{\"state\":\"AK\",\"age\":\"<10\",\"population\":106741},{\"state\":\"AZ\",\"age\":\"<10\",\"population\":892083},{\"state\":\"AR\",\"age\":\"<10\",\"population\":392177},{\"state\":\"CA\",\"age\":\"<10\",\"population\":5038433},{\"state\":\"CO\",\"age\":\"<10\",\"population\":690830},{\"state\":\"CT\",\"age\":\"<10\",\"population\":399369},{\"state\":\"DE\",\"age\":\"<10\",\"population\":112177},{\"state\":\"DC\",\"age\":\"<10\",\"population\":74377},{\"state\":\"FL\",\"age\":\"<10\",\"population\":2211012},{\"state\":\"GA\",\"age\":\"<10\",\"population\":1363631},{\"state\":\"HI\",\"age\":\"<10\",\"population\":176484},{\"state\":\"ID\",\"age\":\"<10\",\"population\":236658},{\"state\":\"IL\",\"age\":\"<10\",\"population\":1619682},{\"state\":\"IN\",\"age\":\"<10\",\"population\":863029},{\"state\":\"IA\",\"age\":\"<10\",\"population\":401712},{\"state\":\"KS\",\"age\":\"<10\",\"population\":401751},{\"state\":\"KY\",\"age\":\"<10\",\"population\":555615},{\"state\":\"LA\",\"age\":\"<10\",\"population\":622061},{\"state\":\"ME\",\"age\":\"<10\",\"population\":137954},{\"state\":\"MD\",\"age\":\"<10\",\"population\":741952},{\"state\":\"MA\",\"age\":\"<10\",\"population\":737748},{\"state\":\"MI\",\"age\":\"<10\",\"population\":1181424},{\"state\":\"MN\",\"age\":\"<10\",\"population\":711604},{\"state\":\"MS\",\"age\":\"<10\",\"population\":400288},{\"state\":\"MO\",\"age\":\"<10\",\"population\":763948},{\"state\":\"MT\",\"age\":\"<10\",\"population\":126020},{\"state\":\"NE\",\"age\":\"<10\",\"population\":263518},{\"state\":\"NV\",\"age\":\"<10\",\"population\":369362},{\"state\":\"NH\",\"age\":\"<10\",\"population\":138762},{\"state\":\"NJ\",\"age\":\"<10\",\"population\":1079136},{\"state\":\"NM\",\"age\":\"<10\",\"population\":276468},{\"state\":\"NY\",\"age\":\"<10\",\"population\":2319945},{\"state\":\"NC\",\"age\":\"<10\",\"population\":1250298},{\"state\":\"ND\",\"age\":\"<10\",\"population\":99477},{\"state\":\"OH\",\"age\":\"<10\",\"population\":1422838},{\"state\":\"OK\",\"age\":\"<10\",\"population\":534481},{\"state\":\"OR\",\"age\":\"<10\",\"population\":474456},{\"state\":\"PA\",\"age\":\"<10\",\"population\":1458931},{\"state\":\"RI\",\"age\":\"<10\",\"population\":111377},{\"state\":\"SC\",\"age\":\"<10\",\"population\":599591},{\"state\":\"SD\",\"age\":\"<10\",\"population\":120366},{\"state\":\"TN\",\"age\":\"<10\",\"population\":818404},{\"state\":\"TX\",\"age\":\"<10\",\"population\":3983091},{\"state\":\"UT\",\"age\":\"<10\",\"population\":513515},{\"state\":\"VT\",\"age\":\"<10\",\"population\":63768},{\"state\":\"VA\",\"age\":\"<10\",\"population\":1033629},{\"state\":\"WA\",\"age\":\"<10\",\"population\":895790},{\"state\":\"WV\",\"age\":\"<10\",\"population\":207017},{\"state\":\"WI\",\"age\":\"<10\",\"population\":705648},{\"state\":\"WY\",\"age\":\"<10\",\"population\":78217},{\"state\":\"PR\",\"age\":\"<10\",\"population\":389428},{\"state\":\"AL\",\"age\":\"10-19\",\"population\":638789},{\"state\":\"AK\",\"age\":\"10-19\",\"population\":99926},{\"state\":\"AZ\",\"age\":\"10-19\",\"population\":912735},{\"state\":\"AR\",\"age\":\"10-19\",\"population\":397185},{\"state\":\"CA\",\"age\":\"10-19\",\"population\":5170341},{\"state\":\"CO\",\"age\":\"10-19\",\"population\":697447},{\"state\":\"CT\",\"age\":\"10-19\",\"population\":481065},{\"state\":\"DE\",\"age\":\"10-19\",\"population\":117854},{\"state\":\"DC\",\"age\":\"10-19\",\"population\":62783},{\"state\":\"FL\",\"age\":\"10-19\",\"population\":2331102},{\"state\":\"GA\",\"age\":\"10-19\",\"population\":1421557},{\"state\":\"HI\",\"age\":\"10-19\",\"population\":163559},{\"state\":\"ID\",\"age\":\"10-19\",\"population\":239509},{\"state\":\"IL\",\"age\":\"10-19\",\"population\":1715984},{\"state\":\"IN\",\"age\":\"10-19\",\"population\":905594},{\"state\":\"IA\",\"age\":\"10-19\",\"population\":418667},{\"state\":\"KS\",\"age\":\"10-19\",\"population\":402092},{\"state\":\"KY\",\"age\":\"10-19\",\"population\":575866},{\"state\":\"LA\",\"age\":\"10-19\",\"population\":613633},{\"state\":\"ME\",\"age\":\"10-19\",\"population\":155774},{\"state\":\"MD\",\"age\":\"10-19\",\"population\":764730},{\"state\":\"MA\",\"age\":\"10-19\",\"population\":862371},{\"state\":\"MI\",\"age\":\"10-19\",\"population\":1324071},{\"state\":\"MN\",\"age\":\"10-19\",\"population\":714399},{\"state\":\"MS\",\"age\":\"10-19\",\"population\":421329},{\"state\":\"MO\",\"age\":\"10-19\",\"population\":792935},{\"state\":\"MT\",\"age\":\"10-19\",\"population\":126294},{\"state\":\"NE\",\"age\":\"10-19\",\"population\":257610},{\"state\":\"NV\",\"age\":\"10-19\",\"population\":360263},{\"state\":\"NH\",\"age\":\"10-19\",\"population\":167495},{\"state\":\"NJ\",\"age\":\"10-19\",\"population\":1153625},{\"state\":\"NM\",\"age\":\"10-19\",\"population\":282662},{\"state\":\"NY\",\"age\":\"10-19\",\"population\":2445591},{\"state\":\"NC\",\"age\":\"10-19\",\"population\":1310398},{\"state\":\"ND\",\"age\":\"10-19\",\"population\":91069},{\"state\":\"OH\",\"age\":\"10-19\",\"population\":1530264},{\"state\":\"OK\",\"age\":\"10-19\",\"population\":522282},{\"state\":\"OR\",\"age\":\"10-19\",\"population\":485345},{\"state\":\"PA\",\"age\":\"10-19\",\"population\":1608018},{\"state\":\"RI\",\"age\":\"10-19\",\"population\":136885},{\"state\":\"SC\",\"age\":\"10-19\",\"population\":619144},{\"state\":\"SD\",\"age\":\"10-19\",\"population\":113383},{\"state\":\"TN\",\"age\":\"10-19\",\"population\":842873},{\"state\":\"TX\",\"age\":\"10-19\",\"population\":3910528},{\"state\":\"UT\",\"age\":\"10-19\",\"population\":479126},{\"state\":\"VT\",\"age\":\"10-19\",\"population\":79351},{\"state\":\"VA\",\"age\":\"10-19\",\"population\":1065461},{\"state\":\"WA\",\"age\":\"10-19\",\"population\":882812},{\"state\":\"WV\",\"age\":\"10-19\",\"population\":218547},{\"state\":\"WI\",\"age\":\"10-19\",\"population\":755224},{\"state\":\"WY\",\"age\":\"10-19\",\"population\":75535},{\"state\":\"PR\",\"age\":\"10-19\",\"population\":479749},{\"state\":\"AL\",\"age\":\"20-29\",\"population\":661666},{\"state\":\"AK\",\"age\":\"20-29\",\"population\":120674},{\"state\":\"AZ\",\"age\":\"20-29\",\"population\":939804},{\"state\":\"AR\",\"age\":\"20-29\",\"population\":399698},{\"state\":\"CA\",\"age\":\"20-29\",\"population\":5809455},{\"state\":\"CO\",\"age\":\"20-29\",\"population\":780508},{\"state\":\"CT\",\"age\":\"20-29\",\"population\":462323},{\"state\":\"DE\",\"age\":\"20-29\",\"population\":127554},{\"state\":\"DC\",\"age\":\"20-29\",\"population\":136976},{\"state\":\"FL\",\"age\":\"20-29\",\"population\":2597830},{\"state\":\"GA\",\"age\":\"20-29\",\"population\":1418696},{\"state\":\"HI\",\"age\":\"20-29\",\"population\":204336},{\"state\":\"ID\",\"age\":\"20-29\",\"population\":218684},{\"state\":\"IL\",\"age\":\"20-29\",\"population\":1789739},{\"state\":\"IN\",\"age\":\"20-29\",\"population\":905590},{\"state\":\"IA\",\"age\":\"20-29\",\"population\":419456},{\"state\":\"KS\",\"age\":\"20-29\",\"population\":406956},{\"state\":\"KY\",\"age\":\"20-29\",\"population\":593819},{\"state\":\"LA\",\"age\":\"20-29\",\"population\":683606},{\"state\":\"ME\",\"age\":\"20-29\",\"population\":156359},{\"state\":\"MD\",\"age\":\"20-29\",\"population\":815346},{\"state\":\"MA\",\"age\":\"20-29\",\"population\":971340},{\"state\":\"MI\",\"age\":\"20-29\",\"population\":1338179},{\"state\":\"MN\",\"age\":\"20-29\",\"population\":728222},{\"state\":\"MS\",\"age\":\"20-29\",\"population\":414195},{\"state\":\"MO\",\"age\":\"20-29\",\"population\":831725},{\"state\":\"MT\",\"age\":\"20-29\",\"population\":136346},{\"state\":\"NE\",\"age\":\"20-29\",\"population\":260646},{\"state\":\"NV\",\"age\":\"20-29\",\"population\":392834},{\"state\":\"NH\",\"age\":\"20-29\",\"population\":167554},{\"state\":\"NJ\",\"age\":\"20-29\",\"population\":1139927},{\"state\":\"NM\",\"age\":\"20-29\",\"population\":289801},{\"state\":\"NY\",\"age\":\"20-29\",\"population\":2894266},{\"state\":\"NC\",\"age\":\"20-29\",\"population\":1350242},{\"state\":\"ND\",\"age\":\"20-29\",\"population\":124509},{\"state\":\"OH\",\"age\":\"20-29\",\"population\":1535538},{\"state\":\"OK\",\"age\":\"20-29\",\"population\":552528},{\"state\":\"OR\",\"age\":\"20-29\",\"population\":538596},{\"state\":\"PA\",\"age\":\"20-29\",\"population\":1712448},{\"state\":\"RI\",\"age\":\"20-29\",\"population\":153674},{\"state\":\"SC\",\"age\":\"20-29\",\"population\":667523},{\"state\":\"SD\",\"age\":\"20-29\",\"population\":116748},{\"state\":\"TN\",\"age\":\"20-29\",\"population\":895337},{\"state\":\"TX\",\"age\":\"20-29\",\"population\":3946447},{\"state\":\"UT\",\"age\":\"20-29\",\"population\":465219},{\"state\":\"VT\",\"age\":\"20-29\",\"population\":81765},{\"state\":\"VA\",\"age\":\"20-29\",\"population\":1170634},{\"state\":\"WA\",\"age\":\"20-29\",\"population\":1004428},{\"state\":\"WV\",\"age\":\"20-29\",\"population\":232027},{\"state\":\"WI\",\"age\":\"20-29\",\"population\":760961},{\"state\":\"WY\",\"age\":\"20-29\",\"population\":82898},{\"state\":\"PR\",\"age\":\"20-29\",\"population\":480184},{\"state\":\"AL\",\"age\":\"30-39\",\"population\":603013},{\"state\":\"AK\",\"age\":\"30-39\",\"population\":102008},{\"state\":\"AZ\",\"age\":\"30-39\",\"population\":857054},{\"state\":\"AR\",\"age\":\"30-39\",\"population\":372998},{\"state\":\"CA\",\"age\":\"30-39\",\"population\":5354112},{\"state\":\"CO\",\"age\":\"30-39\",\"population\":766382},{\"state\":\"CT\",\"age\":\"30-39\",\"population\":424890},{\"state\":\"DE\",\"age\":\"30-39\",\"population\":114063},{\"state\":\"DC\",\"age\":\"30-39\",\"population\":121520},{\"state\":\"FL\",\"age\":\"30-39\",\"population\":2416176},{\"state\":\"GA\",\"age\":\"30-39\",\"population\":1357210},{\"state\":\"HI\",\"age\":\"30-39\",\"population\":187590},{\"state\":\"ID\",\"age\":\"30-39\",\"population\":209500},{\"state\":\"IL\",\"age\":\"30-39\",\"population\":1721954},{\"state\":\"IN\",\"age\":\"30-39\",\"population\":827086},{\"state\":\"IA\",\"age\":\"30-39\",\"population\":383638},{\"state\":\"KS\",\"age\":\"30-39\",\"population\":368732},{\"state\":\"KY\",\"age\":\"30-39\",\"population\":558201},{\"state\":\"LA\",\"age\":\"30-39\",\"population\":615411},{\"state\":\"ME\",\"age\":\"30-39\",\"population\":147695},{\"state\":\"MD\",\"age\":\"30-39\",\"population\":784097},{\"state\":\"MA\",\"age\":\"30-39\",\"population\":847306},{\"state\":\"MI\",\"age\":\"30-39\",\"population\":1162186},{\"state\":\"MN\",\"age\":\"30-39\",\"population\":715583},{\"state\":\"MS\",\"age\":\"30-39\",\"population\":374724},{\"state\":\"MO\",\"age\":\"30-39\",\"population\":763002},{\"state\":\"MT\",\"age\":\"30-39\",\"population\":125004},{\"state\":\"NE\",\"age\":\"30-39\",\"population\":244236},{\"state\":\"NV\",\"age\":\"30-39\",\"population\":390261},{\"state\":\"NH\",\"age\":\"30-39\",\"population\":151409},{\"state\":\"NJ\",\"age\":\"30-39\",\"population\":1143452},{\"state\":\"NM\",\"age\":\"30-39\",\"population\":260579},{\"state\":\"NY\",\"age\":\"30-39\",\"population\":2605355},{\"state\":\"NC\",\"age\":\"30-39\",\"population\":1268976},{\"state\":\"ND\",\"age\":\"30-39\",\"population\":94713},{\"state\":\"OH\",\"age\":\"30-39\",\"population\":1398724},{\"state\":\"OK\",\"age\":\"30-39\",\"population\":501392},{\"state\":\"OR\",\"age\":\"30-39\",\"population\":537767},{\"state\":\"PA\",\"age\":\"30-39\",\"population\":1520409},{\"state\":\"RI\",\"age\":\"30-39\",\"population\":126503},{\"state\":\"SC\",\"age\":\"30-39\",\"population\":596491},{\"state\":\"SD\",\"age\":\"30-39\",\"population\":105499},{\"state\":\"TN\",\"age\":\"30-39\",\"population\":837313},{\"state\":\"TX\",\"age\":\"30-39\",\"population\":3770534},{\"state\":\"UT\",\"age\":\"30-39\",\"population\":436010},{\"state\":\"VT\",\"age\":\"30-39\",\"population\":70092},{\"state\":\"VA\",\"age\":\"30-39\",\"population\":1112111},{\"state\":\"WA\",\"age\":\"30-39\",\"population\":970613},{\"state\":\"WV\",\"age\":\"30-39\",\"population\":220494},{\"state\":\"WI\",\"age\":\"30-39\",\"population\":714479},{\"state\":\"WY\",\"age\":\"30-39\",\"population\":76912},{\"state\":\"PR\",\"age\":\"30-39\",\"population\":441842},{\"state\":\"AL\",\"age\":\"40-49\",\"population\":625599},{\"state\":\"AK\",\"age\":\"40-49\",\"population\":91539},{\"state\":\"AZ\",\"age\":\"40-49\",\"population\":833290},{\"state\":\"AR\",\"age\":\"40-49\",\"population\":370157},{\"state\":\"CA\",\"age\":\"40-49\",\"population\":5179258},{\"state\":\"CO\",\"age\":\"40-49\",\"population\":705450},{\"state\":\"CT\",\"age\":\"40-49\",\"population\":496265},{\"state\":\"DE\",\"age\":\"40-49\",\"population\":117588},{\"state\":\"DC\",\"age\":\"40-49\",\"population\":80570},{\"state\":\"FL\",\"age\":\"40-49\",\"population\":2575576},{\"state\":\"GA\",\"age\":\"40-49\",\"population\":1404698},{\"state\":\"HI\",\"age\":\"40-49\",\"population\":176904},{\"state\":\"ID\",\"age\":\"40-49\",\"population\":194678},{\"state\":\"IL\",\"age\":\"40-49\",\"population\":1697069},{\"state\":\"IN\",\"age\":\"40-49\",\"population\":844059},{\"state\":\"IA\",\"age\":\"40-49\",\"population\":370719},{\"state\":\"KS\",\"age\":\"40-49\",\"population\":344427},{\"state\":\"KY\",\"age\":\"40-49\",\"population\":580553},{\"state\":\"LA\",\"age\":\"40-49\",\"population\":571991},{\"state\":\"ME\",\"age\":\"40-49\",\"population\":176908},{\"state\":\"MD\",\"age\":\"40-49\",\"population\":815875},{\"state\":\"MA\",\"age\":\"40-49\",\"population\":916106},{\"state\":\"MI\",\"age\":\"40-49\",\"population\":1283122},{\"state\":\"MN\",\"age\":\"40-49\",\"population\":692201},{\"state\":\"MS\",\"age\":\"40-49\",\"population\":377165},{\"state\":\"MO\",\"age\":\"40-49\",\"population\":750989},{\"state\":\"MT\",\"age\":\"40-49\",\"population\":116502},{\"state\":\"NE\",\"age\":\"40-49\",\"population\":222479},{\"state\":\"NV\",\"age\":\"40-49\",\"population\":387272},{\"state\":\"NH\",\"age\":\"40-49\",\"population\":182703},{\"state\":\"NJ\",\"age\":\"40-49\",\"population\":1254602},{\"state\":\"NM\",\"age\":\"40-49\",\"population\":244346},{\"state\":\"NY\",\"age\":\"40-49\",\"population\":2617327},{\"state\":\"NC\",\"age\":\"40-49\",\"population\":1357746},{\"state\":\"ND\",\"age\":\"40-49\",\"population\":80327},{\"state\":\"OH\",\"age\":\"40-49\",\"population\":1490959},{\"state\":\"OK\",\"age\":\"40-49\",\"population\":469410},{\"state\":\"OR\",\"age\":\"40-49\",\"population\":507826},{\"state\":\"PA\",\"age\":\"40-49\",\"population\":1645291},{\"state\":\"RI\",\"age\":\"40-49\",\"population\":137892},{\"state\":\"SC\",\"age\":\"40-49\",\"population\":619792},{\"state\":\"SD\",\"age\":\"40-49\",\"population\":96288},{\"state\":\"TN\",\"age\":\"40-49\",\"population\":866343},{\"state\":\"TX\",\"age\":\"40-49\",\"population\":3545746},{\"state\":\"UT\",\"age\":\"40-49\",\"population\":328569},{\"state\":\"VT\",\"age\":\"40-49\",\"population\":79982},{\"state\":\"VA\",\"age\":\"40-49\",\"population\":1134928},{\"state\":\"WA\",\"age\":\"40-49\",\"population\":921205},{\"state\":\"WV\",\"age\":\"40-49\",\"population\":238218},{\"state\":\"WI\",\"age\":\"40-49\",\"population\":732280},{\"state\":\"WY\",\"age\":\"40-49\",\"population\":68464},{\"state\":\"PR\",\"age\":\"40-49\",\"population\":456009},{\"state\":\"AL\",\"age\":\"50-59\",\"population\":673864},{\"state\":\"AK\",\"age\":\"50-59\",\"population\":104569},{\"state\":\"AZ\",\"age\":\"50-59\",\"population\":834858},{\"state\":\"AR\",\"age\":\"50-59\",\"population\":395070},{\"state\":\"CA\",\"age\":\"50-59\",\"population\":5042094},{\"state\":\"CO\",\"age\":\"50-59\",\"population\":725661},{\"state\":\"CT\",\"age\":\"50-59\",\"population\":546361},{\"state\":\"DE\",\"age\":\"50-59\",\"population\":133331},{\"state\":\"DC\",\"age\":\"50-59\",\"population\":74779},{\"state\":\"FL\",\"age\":\"50-59\",\"population\":2762983},{\"state\":\"GA\",\"age\":\"50-59\",\"population\":1337985},{\"state\":\"HI\",\"age\":\"50-59\",\"population\":188438},{\"state\":\"ID\",\"age\":\"50-59\",\"population\":205170},{\"state\":\"IL\",\"age\":\"50-59\",\"population\":1773366},{\"state\":\"IN\",\"age\":\"50-59\",\"population\":911778},{\"state\":\"IA\",\"age\":\"50-59\",\"population\":427554},{\"state\":\"KS\",\"age\":\"50-59\",\"population\":389834},{\"state\":\"KY\",\"age\":\"50-59\",\"population\":623164},{\"state\":\"LA\",\"age\":\"50-59\",\"population\":631936},{\"state\":\"ME\",\"age\":\"50-59\",\"population\":215787},{\"state\":\"MD\",\"age\":\"50-59\",\"population\":862778},{\"state\":\"MA\",\"age\":\"50-59\",\"population\":979128},{\"state\":\"MI\",\"age\":\"50-59\",\"population\":1454462},{\"state\":\"MN\",\"age\":\"50-59\",\"population\":782655},{\"state\":\"MS\",\"age\":\"50-59\",\"population\":400164},{\"state\":\"MO\",\"age\":\"50-59\",\"population\":857534},{\"state\":\"MT\",\"age\":\"50-59\",\"population\":149800},{\"state\":\"NE\",\"age\":\"50-59\",\"population\":250911},{\"state\":\"NV\",\"age\":\"50-59\",\"population\":373757},{\"state\":\"NH\",\"age\":\"50-59\",\"population\":217950},{\"state\":\"NJ\",\"age\":\"50-59\",\"population\":1307263},{\"state\":\"NM\",\"age\":\"50-59\",\"population\":280363},{\"state\":\"NY\",\"age\":\"50-59\",\"population\":2755620},{\"state\":\"NC\",\"age\":\"50-59\",\"population\":1356117},{\"state\":\"ND\",\"age\":\"50-59\",\"population\":98688},{\"state\":\"OH\",\"age\":\"50-59\",\"population\":1677794},{\"state\":\"OK\",\"age\":\"50-59\",\"population\":512850},{\"state\":\"OR\",\"age\":\"50-59\",\"population\":534421},{\"state\":\"PA\",\"age\":\"50-59\",\"population\":1881378},{\"state\":\"RI\",\"age\":\"50-59\",\"population\":156127},{\"state\":\"SC\",\"age\":\"50-59\",\"population\":663408},{\"state\":\"SD\",\"age\":\"50-59\",\"population\":117012},{\"state\":\"TN\",\"age\":\"50-59\",\"population\":904272},{\"state\":\"TX\",\"age\":\"50-59\",\"population\":3344930},{\"state\":\"UT\",\"age\":\"50-59\",\"population\":301596},{\"state\":\"VT\",\"age\":\"50-59\",\"population\":99521},{\"state\":\"VA\",\"age\":\"50-59\",\"population\":1162028},{\"state\":\"WA\",\"age\":\"50-59\",\"population\":970407},{\"state\":\"WV\",\"age\":\"50-59\",\"population\":269346},{\"state\":\"WI\",\"age\":\"50-59\",\"population\":848672},{\"state\":\"WY\",\"age\":\"50-59\",\"population\":81018},{\"state\":\"PR\",\"age\":\"50-59\",\"population\":452503},{\"state\":\"AL\",\"age\":\"60-69\",\"population\":548376},{\"state\":\"AK\",\"age\":\"60-69\",\"population\":70473},{\"state\":\"AZ\",\"age\":\"60-69\",\"population\":737884},{\"state\":\"AR\",\"age\":\"60-69\",\"population\":329734},{\"state\":\"CA\",\"age\":\"60-69\",\"population\":3737461},{\"state\":\"CO\",\"age\":\"60-69\",\"population\":563376},{\"state\":\"CT\",\"age\":\"60-69\",\"population\":400995},{\"state\":\"DE\",\"age\":\"60-69\",\"population\":110822},{\"state\":\"DC\",\"age\":\"60-69\",\"population\":56984},{\"state\":\"FL\",\"age\":\"60-69\",\"population\":2404659},{\"state\":\"GA\",\"age\":\"60-69\",\"population\":998253},{\"state\":\"HI\",\"age\":\"60-69\",\"population\":164957},{\"state\":\"ID\",\"age\":\"60-69\",\"population\":179429},{\"state\":\"IL\",\"age\":\"60-69\",\"population\":1326121},{\"state\":\"IN\",\"age\":\"60-69\",\"population\":704523},{\"state\":\"IA\",\"age\":\"60-69\",\"population\":344037},{\"state\":\"KS\",\"age\":\"60-69\",\"population\":300759},{\"state\":\"KY\",\"age\":\"60-69\",\"population\":495736},{\"state\":\"LA\",\"age\":\"60-69\",\"population\":488846},{\"state\":\"ME\",\"age\":\"60-69\",\"population\":179540},{\"state\":\"MD\",\"age\":\"60-69\",\"population\":636309},{\"state\":\"MA\",\"age\":\"60-69\",\"population\":737805},{\"state\":\"MI\",\"age\":\"60-69\",\"population\":1148131},{\"state\":\"MN\",\"age\":\"60-69\",\"population\":577313},{\"state\":\"MS\",\"age\":\"60-69\",\"population\":319443},{\"state\":\"MO\",\"age\":\"60-69\",\"population\":668878},{\"state\":\"MT\",\"age\":\"60-69\",\"population\":130977},{\"state\":\"NE\",\"age\":\"60-69\",\"population\":195705},{\"state\":\"NV\",\"age\":\"60-69\",\"population\":309651},{\"state\":\"NH\",\"age\":\"60-69\",\"population\":164287},{\"state\":\"NJ\",\"age\":\"60-69\",\"population\":946399},{\"state\":\"NM\",\"age\":\"60-69\",\"population\":239044},{\"state\":\"NY\",\"age\":\"60-69\",\"population\":2095207},{\"state\":\"NC\",\"age\":\"60-69\",\"population\":1095320},{\"state\":\"ND\",\"age\":\"60-69\",\"population\":73825},{\"state\":\"OH\",\"age\":\"60-69\",\"population\":1320776},{\"state\":\"OK\",\"age\":\"60-69\",\"population\":404704},{\"state\":\"OR\",\"age\":\"60-69\",\"population\":490894},{\"state\":\"PA\",\"age\":\"60-69\",\"population\":1491536},{\"state\":\"RI\",\"age\":\"60-69\",\"population\":117653},{\"state\":\"SC\",\"age\":\"60-69\",\"population\":579856},{\"state\":\"SD\",\"age\":\"60-69\",\"population\":92824},{\"state\":\"TN\",\"age\":\"60-69\",\"population\":741045},{\"state\":\"TX\",\"age\":\"60-69\",\"population\":2431494},{\"state\":\"UT\",\"age\":\"60-69\",\"population\":230007},{\"state\":\"VT\",\"age\":\"60-69\",\"population\":82136},{\"state\":\"VA\",\"age\":\"60-69\",\"population\":881763},{\"state\":\"WA\",\"age\":\"60-69\",\"population\":784208},{\"state\":\"WV\",\"age\":\"60-69\",\"population\":243108},{\"state\":\"WI\",\"age\":\"60-69\",\"population\":645015},{\"state\":\"WY\",\"age\":\"60-69\",\"population\":67484},{\"state\":\"PR\",\"age\":\"60-69\",\"population\":411924},{\"state\":\"AL\",\"age\":\"70-79\",\"population\":316598},{\"state\":\"AK\",\"age\":\"70-79\",\"population\":28422},{\"state\":\"AZ\",\"age\":\"70-79\",\"population\":466153},{\"state\":\"AR\",\"age\":\"70-79\",\"population\":197985},{\"state\":\"CA\",\"age\":\"70-79\",\"population\":2011678},{\"state\":\"CO\",\"age\":\"70-79\",\"population\":274466},{\"state\":\"CT\",\"age\":\"70-79\",\"population\":217827},{\"state\":\"DE\",\"age\":\"70-79\",\"population\":65369},{\"state\":\"DC\",\"age\":\"70-79\",\"population\":31362},{\"state\":\"FL\",\"age\":\"70-79\",\"population\":1615547},{\"state\":\"GA\",\"age\":\"70-79\",\"population\":528108},{\"state\":\"HI\",\"age\":\"70-79\",\"population\":85345},{\"state\":\"ID\",\"age\":\"70-79\",\"population\":97621},{\"state\":\"IL\",\"age\":\"70-79\",\"population\":728821},{\"state\":\"IN\",\"age\":\"70-79\",\"population\":384788},{\"state\":\"IA\",\"age\":\"70-79\",\"population\":197223},{\"state\":\"KS\",\"age\":\"70-79\",\"population\":166104},{\"state\":\"KY\",\"age\":\"70-79\",\"population\":273961},{\"state\":\"LA\",\"age\":\"70-79\",\"population\":266123},{\"state\":\"ME\",\"age\":\"70-79\",\"population\":97899},{\"state\":\"MD\",\"age\":\"70-79\",\"population\":330736},{\"state\":\"MA\",\"age\":\"70-79\",\"population\":401931},{\"state\":\"MI\",\"age\":\"70-79\",\"population\":619722},{\"state\":\"MN\",\"age\":\"70-79\",\"population\":312906},{\"state\":\"MS\",\"age\":\"70-79\",\"population\":181195},{\"state\":\"MO\",\"age\":\"70-79\",\"population\":388086},{\"state\":\"MT\",\"age\":\"70-79\",\"population\":70528},{\"state\":\"NE\",\"age\":\"70-79\",\"population\":107650},{\"state\":\"NV\",\"age\":\"70-79\",\"population\":173499},{\"state\":\"NH\",\"age\":\"70-79\",\"population\":84791},{\"state\":\"NJ\",\"age\":\"70-79\",\"population\":523620},{\"state\":\"NM\",\"age\":\"70-79\",\"population\":135013},{\"state\":\"NY\",\"age\":\"70-79\",\"population\":1160055},{\"state\":\"NC\",\"age\":\"70-79\",\"population\":609234},{\"state\":\"ND\",\"age\":\"70-79\",\"population\":41348},{\"state\":\"OH\",\"age\":\"70-79\",\"population\":728158},{\"state\":\"OK\",\"age\":\"70-79\",\"population\":239887},{\"state\":\"OR\",\"age\":\"70-79\",\"population\":255809},{\"state\":\"PA\",\"age\":\"70-79\",\"population\":850897},{\"state\":\"RI\",\"age\":\"70-79\",\"population\":63359},{\"state\":\"SC\",\"age\":\"70-79\",\"population\":322073},{\"state\":\"SD\",\"age\":\"70-79\",\"population\":50398},{\"state\":\"TN\",\"age\":\"70-79\",\"population\":414939},{\"state\":\"TX\",\"age\":\"70-79\",\"population\":1291486},{\"state\":\"UT\",\"age\":\"70-79\",\"population\":123674},{\"state\":\"VT\",\"age\":\"70-79\",\"population\":42978},{\"state\":\"VA\",\"age\":\"70-79\",\"population\":475141},{\"state\":\"WA\",\"age\":\"70-79\",\"population\":401094},{\"state\":\"WV\",\"age\":\"70-79\",\"population\":138134},{\"state\":\"WI\",\"age\":\"70-79\",\"population\":350772},{\"state\":\"WY\",\"age\":\"70-79\",\"population\":32819},{\"state\":\"PR\",\"age\":\"70-79\",\"population\":268783},{\"state\":\"AL\",\"age\":\"≥80\",\"population\":174781},{\"state\":\"AK\",\"age\":\"≥80\",\"population\":12503},{\"state\":\"AZ\",\"age\":\"≥80\",\"population\":254716},{\"state\":\"AR\",\"age\":\"≥80\",\"population\":113468},{\"state\":\"CA\",\"age\":\"≥80\",\"population\":1311374},{\"state\":\"CO\",\"age\":\"≥80\",\"population\":155175},{\"state\":\"CT\",\"age\":\"≥80\",\"population\":159475},{\"state\":\"DE\",\"age\":\"≥80\",\"population\":35937},{\"state\":\"DC\",\"age\":\"≥80\",\"population\":19658},{\"state\":\"FL\",\"age\":\"≥80\",\"population\":1019566},{\"state\":\"GA\",\"age\":\"≥80\",\"population\":269182},{\"state\":\"HI\",\"age\":\"≥80\",\"population\":66060},{\"state\":\"ID\",\"age\":\"≥80\",\"population\":54234},{\"state\":\"IL\",\"age\":\"≥80\",\"population\":478948},{\"state\":\"IN\",\"age\":\"≥80\",\"population\":243131},{\"state\":\"IA\",\"age\":\"≥80\",\"population\":143583},{\"state\":\"KS\",\"age\":\"≥80\",\"population\":117637},{\"state\":\"KY\",\"age\":\"≥80\",\"population\":155074},{\"state\":\"LA\",\"age\":\"≥80\",\"population\":152063},{\"state\":\"ME\",\"age\":\"≥80\",\"population\":62007},{\"state\":\"MD\",\"age\":\"≥80\",\"population\":208079},{\"state\":\"MA\",\"age\":\"≥80\",\"population\":288408},{\"state\":\"MI\",\"age\":\"≥80\",\"population\":398303},{\"state\":\"MN\",\"age\":\"≥80\",\"population\":215985},{\"state\":\"MS\",\"age\":\"≥80\",\"population\":100689},{\"state\":\"MO\",\"age\":\"≥80\",\"population\":242554},{\"state\":\"MT\",\"age\":\"≥80\",\"population\":41920},{\"state\":\"NE\",\"age\":\"≥80\",\"population\":78504},{\"state\":\"NV\",\"age\":\"≥80\",\"population\":82273},{\"state\":\"NH\",\"age\":\"≥80\",\"population\":52552},{\"state\":\"NJ\",\"age\":\"≥80\",\"population\":367432},{\"state\":\"NM\",\"age\":\"≥80\",\"population\":74393},{\"state\":\"NY\",\"age\":\"≥80\",\"population\":804091},{\"state\":\"NC\",\"age\":\"≥80\",\"population\":342497},{\"state\":\"ND\",\"age\":\"≥80\",\"population\":32206},{\"state\":\"OH\",\"age\":\"≥80\",\"population\":481890},{\"state\":\"OK\",\"age\":\"≥80\",\"population\":138055},{\"state\":\"OR\",\"age\":\"≥80\",\"population\":157153},{\"state\":\"PA\",\"age\":\"≥80\",\"population\":615069},{\"state\":\"RI\",\"age\":\"≥80\",\"population\":51021},{\"state\":\"SC\",\"age\":\"≥80\",\"population\":166727},{\"state\":\"SD\",\"age\":\"≥80\",\"population\":38540},{\"state\":\"TN\",\"age\":\"≥80\",\"population\":227483},{\"state\":\"TX\",\"age\":\"≥80\",\"population\":732179},{\"state\":\"UT\",\"age\":\"≥80\",\"population\":70711},{\"state\":\"VT\",\"age\":\"≥80\",\"population\":26656},{\"state\":\"VA\",\"age\":\"≥80\",\"population\":274606},{\"state\":\"WA\",\"age\":\"≥80\",\"population\":242589},{\"state\":\"WV\",\"age\":\"≥80\",\"population\":79201},{\"state\":\"WI\",\"age\":\"≥80\",\"population\":241747},{\"state\":\"WY\",\"age\":\"≥80\",\"population\":19682},{\"state\":\"PR\",\"age\":\"≥80\",\"population\":148963}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"state\"],\"y\":[\"population\"],\"s\":[\"age\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"季节\",\"dataType\":\"string\"},{\"name\":\"温度\",\"dataType\":\"number\"}],\"data\":[{\"季节\":\"春\",\"温度\":15},{\"季节\":\"夏\",\"温度\":28},{\"季节\":\"秋\",\"温度\":20},{\"季节\":\"冬\",\"温度\":5}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"季节\"],\"y\":[\"温度\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"Continent\",\"dataType\":\"string\"},{\"name\":\"Area\",\"dataType\":\"number\"},{\"name\":\"Land Type\",\"dataType\":\"string\"}],\"data\":[{\"Continent\":\"Asia\",\"Area\":44579000,\"Land Type\":\"Land Mass\"},{\"Continent\":\"Africa\",\"Area\":30370000,\"Land Type\":\"Land Mass\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Continent\"],\"y\":[\"Area\"],\"s\":[\"Land Type\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"年龄段\",\"dataType\":\"string\"},{\"name\":\"用户数\",\"dataType\":\"number\"}],\"data\":[{\"年龄段\":\"18-24岁\",\"用户数\":1500},{\"年龄段\":\"25-34岁\",\"用户数\":2000},{\"年龄段\":\"35-44岁\",\"用户数\":1800},{\"年龄段\":\"45岁以上\",\"用户数\":1200}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"年龄段\"],\"y\":[\"用户数\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"Year\",\"dataType\":\"string\"},{\"name\":\"Sales\",\"dataType\":\"number\"},{\"name\":\"Region\",\"dataType\":\"string\"}],\"data\":[{\"Year\":\"2019\",\"Sales\":2000000,\"Region\":\"USA\"},{\"Year\":\"2020\",\"Sales\":2200000,\"Region\":\"USA\"},{\"Year\":\"2019\",\"Sales\":1500000,\"Region\":\"China\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Year\"],\"y\":[\"Sales\"],\"s\":[\"Region\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"Month\",\"dataType\":\"string\"},{\"name\":\"Revenue\",\"dataType\":\"number\"},{\"name\":\"Department\",\"dataType\":\"string\"}],\"data\":[{\"Month\":\"January\",\"Revenue\":80000,\"Department\":\"Electronics\"},{\"Month\":\"February\",\"Revenue\":75000,\"Department\":\"Furniture\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Month\"],\"y\":[\"Revenue\"],\"s\":[\"Department\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"地区\",\"dataType\":\"string\"},{\"name\":\"销售额\",\"dataType\":\"number\"},{\"name\":\"产品类别\",\"dataType\":\"string\"}],\"data\":[{\"地区\":\"北区\",\"销售额\":750,\"产品类别\":\"电子产品\"},{\"地区\":\"南区\",\"销售额\":300,\"产品类别\":\"生活用品\"},{\"地区\":\"西区\",\"销售额\":900,\"产品类别\":\"服装\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"地区\"],\"y\":[\"销售额\"],\"s\":[\"产品类别\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"Month\",\"dataType\":\"string\"},{\"name\":\"Rainfall\",\"dataType\":\"number\"},{\"name\":\"City\",\"dataType\":\"string\"}],\"data\":[{\"Month\":\"January\",\"Rainfall\":120,\"City\":\"Shanghai\"},{\"Month\":\"February\",\"Rainfall\":85,\"City\":\"Shanghai\"},{\"Month\":\"January\",\"Rainfall\":200,\"City\":\"London\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Month\"],\"y\":[\"Rainfall\"],\"s\":[\"City\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"纪元\",\"dataType\":\"string\"},{\"name\":\"发电量\",\"dataType\":\"number\"},{\"name\":\"能源类型\",\"dataType\":\"string\"}],\"data\":[{\"纪元\":\"2021年\",\"发电量\":5000,\"能源类型\":\"风能\"},{\"纪元\":\"2021年\",\"发电量\":2000,\"能源类型\":\"太阳能\"},{\"纪元\":\"2022年\",\"发电量\":5500,\"能源类型\":\"风能\"},{\"纪元\":\"2022年\",\"发电量\":3000,\"能源类型\":\"太阳能\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"纪元\"],\"y\":[\"发电量\"],\"s\":[\"能源类型\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"site\",\"dataType\":\"string\"},{\"name\":\"yield\",\"dataType\":\"number\"}],\"data\":[{\"site\":\"University Farm\",\"yield\":27},{\"site\":\"Waseca\",\"yield\":48.86667},{\"site\":\"Morris\",\"yield\":27.43334},{\"site\":\"Crookston\",\"yield\":39.93333},{\"site\":\"Grand Rapids\",\"yield\":32.96667},{\"site\":\"Duluth\",\"yield\":28.96667}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"site\"],\"y\":[\"yield\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"季度\",\"dataType\":\"string\"},{\"name\":\"利润\",\"dataType\":\"number\"}],\"data\":[{\"季度\":\"Q1\",\"利润\":500000},{\"季度\":\"Q2\",\"利润\":550000},{\"季度\":\"Q3\",\"利润\":600000},{\"季度\":\"Q4\",\"利润\":650000}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"季度\"],\"y\":[\"利润\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"产品类别\",\"dataType\":\"string\"},{\"name\":\"销量\",\"dataType\":\"number\"}],\"data\":[{\"产品类别\":\"电子产品\",\"销量\":500},{\"产品类别\":\"家居用品\",\"销量\":300},{\"产品类别\":\"服装\",\"销量\":450},{\"产品类别\":\"食品\",\"销量\":600}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"产品类别\"],\"y\":[\"销量\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"}],\"data\":[{\"国家\":\"美国\",\"GDP\":21439453},{\"国家\":\"中国\",\"GDP\":14140163},{\"国家\":\"日本\",\"GDP\":5177086},{\"国家\":\"德国\",\"GDP\":3885000}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"GDP\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"Product\",\"dataType\":\"string\"},{\"name\":\"Sales\",\"dataType\":\"number\"}],\"data\":[{\"Product\":\"Laptop\",\"Sales\":250},{\"Product\":\"Tablet\",\"Sales\":150},{\"Product\":\"Smartphone\",\"Sales\":300}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Product\"],\"y\":[\"Sales\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"},{\"name\":\"洲\",\"dataType\":\"string\"}],\"data\":[{\"国家\":\"中国\",\"GDP\":14342903,\"洲\":\"亚洲\"},{\"国家\":\"美国\",\"GDP\":21433300,\"洲\":\"北美洲\"},{\"国家\":\"德国\",\"GDP\":3845630,\"洲\":\"欧洲\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"GDP\"],\"s\":[\"洲\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"},{\"name\":\"Year\",\"dataType\":\"string\"}],\"data\":[{\"Country\":\"USA\",\"GDP\":21433000,\"Year\":\"2022\"},{\"Country\":\"China\",\"GDP\":14342000,\"Year\":\"2022\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"GDP\"],\"s\":[\"Year\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"城市\",\"dataType\":\"string\"},{\"name\":\"平均气温\",\"dataType\":\"number\"}],\"data\":[{\"城市\":\"伦敦\",\"平均气温\":11},{\"城市\":\"东京\",\"平均气温\":15},{\"城市\":\"纽约\",\"平均气温\":13},{\"城市\":\"巴黎\",\"平均气温\":12},{\"城市\":\"悉尼\",\"平均气温\":17}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"平均气温\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"state\",\"dataType\":\"string\"},{\"name\":\"population\",\"dataType\":\"number\"},{\"name\":\"age\",\"dataType\":\"string\"}],\"data\":[{\"state\":\"AL\",\"age\":\"<10\",\"population\":598478},{\"state\":\"AK\",\"age\":\"<10\",\"population\":106741},{\"state\":\"AZ\",\"age\":\"<10\",\"population\":892083},{\"state\":\"AR\",\"age\":\"<10\",\"population\":392177},{\"state\":\"CA\",\"age\":\"<10\",\"population\":5038433},{\"state\":\"CO\",\"age\":\"<10\",\"population\":690830},{\"state\":\"CT\",\"age\":\"<10\",\"population\":399369},{\"state\":\"DE\",\"age\":\"<10\",\"population\":112177},{\"state\":\"DC\",\"age\":\"<10\",\"population\":74377},{\"state\":\"FL\",\"age\":\"<10\",\"population\":2211012},{\"state\":\"GA\",\"age\":\"<10\",\"population\":1363631},{\"state\":\"HI\",\"age\":\"<10\",\"population\":176484},{\"state\":\"ID\",\"age\":\"<10\",\"population\":236658},{\"state\":\"IL\",\"age\":\"<10\",\"population\":1619682},{\"state\":\"IN\",\"age\":\"<10\",\"population\":863029},{\"state\":\"IA\",\"age\":\"<10\",\"population\":401712},{\"state\":\"KS\",\"age\":\"<10\",\"population\":401751},{\"state\":\"KY\",\"age\":\"<10\",\"population\":555615},{\"state\":\"LA\",\"age\":\"<10\",\"population\":622061},{\"state\":\"ME\",\"age\":\"<10\",\"population\":137954},{\"state\":\"MD\",\"age\":\"<10\",\"population\":741952},{\"state\":\"MA\",\"age\":\"<10\",\"population\":737748},{\"state\":\"MI\",\"age\":\"<10\",\"population\":1181424},{\"state\":\"MN\",\"age\":\"<10\",\"population\":711604},{\"state\":\"MS\",\"age\":\"<10\",\"population\":400288},{\"state\":\"MO\",\"age\":\"<10\",\"population\":763948},{\"state\":\"MT\",\"age\":\"<10\",\"population\":126020},{\"state\":\"NE\",\"age\":\"<10\",\"population\":263518},{\"state\":\"NV\",\"age\":\"<10\",\"population\":369362},{\"state\":\"NH\",\"age\":\"<10\",\"population\":138762},{\"state\":\"NJ\",\"age\":\"<10\",\"population\":1079136},{\"state\":\"NM\",\"age\":\"<10\",\"population\":276468},{\"state\":\"NY\",\"age\":\"<10\",\"population\":2319945},{\"state\":\"NC\",\"age\":\"<10\",\"population\":1250298},{\"state\":\"ND\",\"age\":\"<10\",\"population\":99477},{\"state\":\"OH\",\"age\":\"<10\",\"population\":1422838},{\"state\":\"OK\",\"age\":\"<10\",\"population\":534481},{\"state\":\"OR\",\"age\":\"<10\",\"population\":474456},{\"state\":\"PA\",\"age\":\"<10\",\"population\":1458931},{\"state\":\"RI\",\"age\":\"<10\",\"population\":111377},{\"state\":\"SC\",\"age\":\"<10\",\"population\":599591},{\"state\":\"SD\",\"age\":\"<10\",\"population\":120366},{\"state\":\"TN\",\"age\":\"<10\",\"population\":818404},{\"state\":\"TX\",\"age\":\"<10\",\"population\":3983091},{\"state\":\"UT\",\"age\":\"<10\",\"population\":513515},{\"state\":\"VT\",\"age\":\"<10\",\"population\":63768},{\"state\":\"VA\",\"age\":\"<10\",\"population\":1033629},{\"state\":\"WA\",\"age\":\"<10\",\"population\":895790},{\"state\":\"WV\",\"age\":\"<10\",\"population\":207017},{\"state\":\"WI\",\"age\":\"<10\",\"population\":705648},{\"state\":\"WY\",\"age\":\"<10\",\"population\":78217},{\"state\":\"PR\",\"age\":\"<10\",\"population\":389428},{\"state\":\"AL\",\"age\":\"10-19\",\"population\":638789},{\"state\":\"AK\",\"age\":\"10-19\",\"population\":99926},{\"state\":\"AZ\",\"age\":\"10-19\",\"population\":912735},{\"state\":\"AR\",\"age\":\"10-19\",\"population\":397185},{\"state\":\"CA\",\"age\":\"10-19\",\"population\":5170341},{\"state\":\"CO\",\"age\":\"10-19\",\"population\":697447},{\"state\":\"CT\",\"age\":\"10-19\",\"population\":481065},{\"state\":\"DE\",\"age\":\"10-19\",\"population\":117854},{\"state\":\"DC\",\"age\":\"10-19\",\"population\":62783},{\"state\":\"FL\",\"age\":\"10-19\",\"population\":2331102},{\"state\":\"GA\",\"age\":\"10-19\",\"population\":1421557},{\"state\":\"HI\",\"age\":\"10-19\",\"population\":163559},{\"state\":\"ID\",\"age\":\"10-19\",\"population\":239509},{\"state\":\"IL\",\"age\":\"10-19\",\"population\":1715984},{\"state\":\"IN\",\"age\":\"10-19\",\"population\":905594},{\"state\":\"IA\",\"age\":\"10-19\",\"population\":418667},{\"state\":\"KS\",\"age\":\"10-19\",\"population\":402092},{\"state\":\"KY\",\"age\":\"10-19\",\"population\":575866},{\"state\":\"LA\",\"age\":\"10-19\",\"population\":613633},{\"state\":\"ME\",\"age\":\"10-19\",\"population\":155774},{\"state\":\"MD\",\"age\":\"10-19\",\"population\":764730},{\"state\":\"MA\",\"age\":\"10-19\",\"population\":862371},{\"state\":\"MI\",\"age\":\"10-19\",\"population\":1324071},{\"state\":\"MN\",\"age\":\"10-19\",\"population\":714399},{\"state\":\"MS\",\"age\":\"10-19\",\"population\":421329},{\"state\":\"MO\",\"age\":\"10-19\",\"population\":792935},{\"state\":\"MT\",\"age\":\"10-19\",\"population\":126294},{\"state\":\"NE\",\"age\":\"10-19\",\"population\":257610},{\"state\":\"NV\",\"age\":\"10-19\",\"population\":360263},{\"state\":\"NH\",\"age\":\"10-19\",\"population\":167495},{\"state\":\"NJ\",\"age\":\"10-19\",\"population\":1153625},{\"state\":\"NM\",\"age\":\"10-19\",\"population\":282662},{\"state\":\"NY\",\"age\":\"10-19\",\"population\":2445591},{\"state\":\"NC\",\"age\":\"10-19\",\"population\":1310398},{\"state\":\"ND\",\"age\":\"10-19\",\"population\":91069},{\"state\":\"OH\",\"age\":\"10-19\",\"population\":1530264},{\"state\":\"OK\",\"age\":\"10-19\",\"population\":522282},{\"state\":\"OR\",\"age\":\"10-19\",\"population\":485345},{\"state\":\"PA\",\"age\":\"10-19\",\"population\":1608018},{\"state\":\"RI\",\"age\":\"10-19\",\"population\":136885},{\"state\":\"SC\",\"age\":\"10-19\",\"population\":619144},{\"state\":\"SD\",\"age\":\"10-19\",\"population\":113383},{\"state\":\"TN\",\"age\":\"10-19\",\"population\":842873},{\"state\":\"TX\",\"age\":\"10-19\",\"population\":3910528},{\"state\":\"UT\",\"age\":\"10-19\",\"population\":479126},{\"state\":\"VT\",\"age\":\"10-19\",\"population\":79351},{\"state\":\"VA\",\"age\":\"10-19\",\"population\":1065461},{\"state\":\"WA\",\"age\":\"10-19\",\"population\":882812},{\"state\":\"WV\",\"age\":\"10-19\",\"population\":218547},{\"state\":\"WI\",\"age\":\"10-19\",\"population\":755224},{\"state\":\"WY\",\"age\":\"10-19\",\"population\":75535},{\"state\":\"PR\",\"age\":\"10-19\",\"population\":479749},{\"state\":\"AL\",\"age\":\"20-29\",\"population\":661666},{\"state\":\"AK\",\"age\":\"20-29\",\"population\":120674},{\"state\":\"AZ\",\"age\":\"20-29\",\"population\":939804},{\"state\":\"AR\",\"age\":\"20-29\",\"population\":399698},{\"state\":\"CA\",\"age\":\"20-29\",\"population\":5809455},{\"state\":\"CO\",\"age\":\"20-29\",\"population\":780508},{\"state\":\"CT\",\"age\":\"20-29\",\"population\":462323},{\"state\":\"DE\",\"age\":\"20-29\",\"population\":127554},{\"state\":\"DC\",\"age\":\"20-29\",\"population\":136976},{\"state\":\"FL\",\"age\":\"20-29\",\"population\":2597830},{\"state\":\"GA\",\"age\":\"20-29\",\"population\":1418696},{\"state\":\"HI\",\"age\":\"20-29\",\"population\":204336},{\"state\":\"ID\",\"age\":\"20-29\",\"population\":218684},{\"state\":\"IL\",\"age\":\"20-29\",\"population\":1789739},{\"state\":\"IN\",\"age\":\"20-29\",\"population\":905590},{\"state\":\"IA\",\"age\":\"20-29\",\"population\":419456},{\"state\":\"KS\",\"age\":\"20-29\",\"population\":406956},{\"state\":\"KY\",\"age\":\"20-29\",\"population\":593819},{\"state\":\"LA\",\"age\":\"20-29\",\"population\":683606},{\"state\":\"ME\",\"age\":\"20-29\",\"population\":156359},{\"state\":\"MD\",\"age\":\"20-29\",\"population\":815346},{\"state\":\"MA\",\"age\":\"20-29\",\"population\":971340},{\"state\":\"MI\",\"age\":\"20-29\",\"population\":1338179},{\"state\":\"MN\",\"age\":\"20-29\",\"population\":728222},{\"state\":\"MS\",\"age\":\"20-29\",\"population\":414195},{\"state\":\"MO\",\"age\":\"20-29\",\"population\":831725},{\"state\":\"MT\",\"age\":\"20-29\",\"population\":136346},{\"state\":\"NE\",\"age\":\"20-29\",\"population\":260646},{\"state\":\"NV\",\"age\":\"20-29\",\"population\":392834},{\"state\":\"NH\",\"age\":\"20-29\",\"population\":167554},{\"state\":\"NJ\",\"age\":\"20-29\",\"population\":1139927},{\"state\":\"NM\",\"age\":\"20-29\",\"population\":289801},{\"state\":\"NY\",\"age\":\"20-29\",\"population\":2894266},{\"state\":\"NC\",\"age\":\"20-29\",\"population\":1350242},{\"state\":\"ND\",\"age\":\"20-29\",\"population\":124509},{\"state\":\"OH\",\"age\":\"20-29\",\"population\":1535538},{\"state\":\"OK\",\"age\":\"20-29\",\"population\":552528},{\"state\":\"OR\",\"age\":\"20-29\",\"population\":538596},{\"state\":\"PA\",\"age\":\"20-29\",\"population\":1712448},{\"state\":\"RI\",\"age\":\"20-29\",\"population\":153674},{\"state\":\"SC\",\"age\":\"20-29\",\"population\":667523},{\"state\":\"SD\",\"age\":\"20-29\",\"population\":116748},{\"state\":\"TN\",\"age\":\"20-29\",\"population\":895337},{\"state\":\"TX\",\"age\":\"20-29\",\"population\":3946447},{\"state\":\"UT\",\"age\":\"20-29\",\"population\":465219},{\"state\":\"VT\",\"age\":\"20-29\",\"population\":81765},{\"state\":\"VA\",\"age\":\"20-29\",\"population\":1170634},{\"state\":\"WA\",\"age\":\"20-29\",\"population\":1004428},{\"state\":\"WV\",\"age\":\"20-29\",\"population\":232027},{\"state\":\"WI\",\"age\":\"20-29\",\"population\":760961},{\"state\":\"WY\",\"age\":\"20-29\",\"population\":82898},{\"state\":\"PR\",\"age\":\"20-29\",\"population\":480184},{\"state\":\"AL\",\"age\":\"30-39\",\"population\":603013},{\"state\":\"AK\",\"age\":\"30-39\",\"population\":102008},{\"state\":\"AZ\",\"age\":\"30-39\",\"population\":857054},{\"state\":\"AR\",\"age\":\"30-39\",\"population\":372998},{\"state\":\"CA\",\"age\":\"30-39\",\"population\":5354112},{\"state\":\"CO\",\"age\":\"30-39\",\"population\":766382},{\"state\":\"CT\",\"age\":\"30-39\",\"population\":424890},{\"state\":\"DE\",\"age\":\"30-39\",\"population\":114063},{\"state\":\"DC\",\"age\":\"30-39\",\"population\":121520},{\"state\":\"FL\",\"age\":\"30-39\",\"population\":2416176},{\"state\":\"GA\",\"age\":\"30-39\",\"population\":1357210},{\"state\":\"HI\",\"age\":\"30-39\",\"population\":187590},{\"state\":\"ID\",\"age\":\"30-39\",\"population\":209500},{\"state\":\"IL\",\"age\":\"30-39\",\"population\":1721954},{\"state\":\"IN\",\"age\":\"30-39\",\"population\":827086},{\"state\":\"IA\",\"age\":\"30-39\",\"population\":383638},{\"state\":\"KS\",\"age\":\"30-39\",\"population\":368732},{\"state\":\"KY\",\"age\":\"30-39\",\"population\":558201},{\"state\":\"LA\",\"age\":\"30-39\",\"population\":615411},{\"state\":\"ME\",\"age\":\"30-39\",\"population\":147695},{\"state\":\"MD\",\"age\":\"30-39\",\"population\":784097},{\"state\":\"MA\",\"age\":\"30-39\",\"population\":847306},{\"state\":\"MI\",\"age\":\"30-39\",\"population\":1162186},{\"state\":\"MN\",\"age\":\"30-39\",\"population\":715583},{\"state\":\"MS\",\"age\":\"30-39\",\"population\":374724},{\"state\":\"MO\",\"age\":\"30-39\",\"population\":763002},{\"state\":\"MT\",\"age\":\"30-39\",\"population\":125004},{\"state\":\"NE\",\"age\":\"30-39\",\"population\":244236},{\"state\":\"NV\",\"age\":\"30-39\",\"population\":390261},{\"state\":\"NH\",\"age\":\"30-39\",\"population\":151409},{\"state\":\"NJ\",\"age\":\"30-39\",\"population\":1143452},{\"state\":\"NM\",\"age\":\"30-39\",\"population\":260579},{\"state\":\"NY\",\"age\":\"30-39\",\"population\":2605355},{\"state\":\"NC\",\"age\":\"30-39\",\"population\":1268976},{\"state\":\"ND\",\"age\":\"30-39\",\"population\":94713},{\"state\":\"OH\",\"age\":\"30-39\",\"population\":1398724},{\"state\":\"OK\",\"age\":\"30-39\",\"population\":501392},{\"state\":\"OR\",\"age\":\"30-39\",\"population\":537767},{\"state\":\"PA\",\"age\":\"30-39\",\"population\":1520409},{\"state\":\"RI\",\"age\":\"30-39\",\"population\":126503},{\"state\":\"SC\",\"age\":\"30-39\",\"population\":596491},{\"state\":\"SD\",\"age\":\"30-39\",\"population\":105499},{\"state\":\"TN\",\"age\":\"30-39\",\"population\":837313},{\"state\":\"TX\",\"age\":\"30-39\",\"population\":3770534},{\"state\":\"UT\",\"age\":\"30-39\",\"population\":436010},{\"state\":\"VT\",\"age\":\"30-39\",\"population\":70092},{\"state\":\"VA\",\"age\":\"30-39\",\"population\":1112111},{\"state\":\"WA\",\"age\":\"30-39\",\"population\":970613},{\"state\":\"WV\",\"age\":\"30-39\",\"population\":220494},{\"state\":\"WI\",\"age\":\"30-39\",\"population\":714479},{\"state\":\"WY\",\"age\":\"30-39\",\"population\":76912},{\"state\":\"PR\",\"age\":\"30-39\",\"population\":441842},{\"state\":\"AL\",\"age\":\"40-49\",\"population\":625599},{\"state\":\"AK\",\"age\":\"40-49\",\"population\":91539},{\"state\":\"AZ\",\"age\":\"40-49\",\"population\":833290},{\"state\":\"AR\",\"age\":\"40-49\",\"population\":370157},{\"state\":\"CA\",\"age\":\"40-49\",\"population\":5179258},{\"state\":\"CO\",\"age\":\"40-49\",\"population\":705450},{\"state\":\"CT\",\"age\":\"40-49\",\"population\":496265},{\"state\":\"DE\",\"age\":\"40-49\",\"population\":117588},{\"state\":\"DC\",\"age\":\"40-49\",\"population\":80570},{\"state\":\"FL\",\"age\":\"40-49\",\"population\":2575576},{\"state\":\"GA\",\"age\":\"40-49\",\"population\":1404698},{\"state\":\"HI\",\"age\":\"40-49\",\"population\":176904},{\"state\":\"ID\",\"age\":\"40-49\",\"population\":194678},{\"state\":\"IL\",\"age\":\"40-49\",\"population\":1697069},{\"state\":\"IN\",\"age\":\"40-49\",\"population\":844059},{\"state\":\"IA\",\"age\":\"40-49\",\"population\":370719},{\"state\":\"KS\",\"age\":\"40-49\",\"population\":344427},{\"state\":\"KY\",\"age\":\"40-49\",\"population\":580553},{\"state\":\"LA\",\"age\":\"40-49\",\"population\":571991},{\"state\":\"ME\",\"age\":\"40-49\",\"population\":176908},{\"state\":\"MD\",\"age\":\"40-49\",\"population\":815875},{\"state\":\"MA\",\"age\":\"40-49\",\"population\":916106},{\"state\":\"MI\",\"age\":\"40-49\",\"population\":1283122},{\"state\":\"MN\",\"age\":\"40-49\",\"population\":692201},{\"state\":\"MS\",\"age\":\"40-49\",\"population\":377165},{\"state\":\"MO\",\"age\":\"40-49\",\"population\":750989},{\"state\":\"MT\",\"age\":\"40-49\",\"population\":116502},{\"state\":\"NE\",\"age\":\"40-49\",\"population\":222479},{\"state\":\"NV\",\"age\":\"40-49\",\"population\":387272},{\"state\":\"NH\",\"age\":\"40-49\",\"population\":182703},{\"state\":\"NJ\",\"age\":\"40-49\",\"population\":1254602},{\"state\":\"NM\",\"age\":\"40-49\",\"population\":244346},{\"state\":\"NY\",\"age\":\"40-49\",\"population\":2617327},{\"state\":\"NC\",\"age\":\"40-49\",\"population\":1357746},{\"state\":\"ND\",\"age\":\"40-49\",\"population\":80327},{\"state\":\"OH\",\"age\":\"40-49\",\"population\":1490959},{\"state\":\"OK\",\"age\":\"40-49\",\"population\":469410},{\"state\":\"OR\",\"age\":\"40-49\",\"population\":507826},{\"state\":\"PA\",\"age\":\"40-49\",\"population\":1645291},{\"state\":\"RI\",\"age\":\"40-49\",\"population\":137892},{\"state\":\"SC\",\"age\":\"40-49\",\"population\":619792},{\"state\":\"SD\",\"age\":\"40-49\",\"population\":96288},{\"state\":\"TN\",\"age\":\"40-49\",\"population\":866343},{\"state\":\"TX\",\"age\":\"40-49\",\"population\":3545746},{\"state\":\"UT\",\"age\":\"40-49\",\"population\":328569},{\"state\":\"VT\",\"age\":\"40-49\",\"population\":79982},{\"state\":\"VA\",\"age\":\"40-49\",\"population\":1134928},{\"state\":\"WA\",\"age\":\"40-49\",\"population\":921205},{\"state\":\"WV\",\"age\":\"40-49\",\"population\":238218},{\"state\":\"WI\",\"age\":\"40-49\",\"population\":732280},{\"state\":\"WY\",\"age\":\"40-49\",\"population\":68464},{\"state\":\"PR\",\"age\":\"40-49\",\"population\":456009},{\"state\":\"AL\",\"age\":\"50-59\",\"population\":673864},{\"state\":\"AK\",\"age\":\"50-59\",\"population\":104569},{\"state\":\"AZ\",\"age\":\"50-59\",\"population\":834858},{\"state\":\"AR\",\"age\":\"50-59\",\"population\":395070},{\"state\":\"CA\",\"age\":\"50-59\",\"population\":5042094},{\"state\":\"CO\",\"age\":\"50-59\",\"population\":725661},{\"state\":\"CT\",\"age\":\"50-59\",\"population\":546361},{\"state\":\"DE\",\"age\":\"50-59\",\"population\":133331},{\"state\":\"DC\",\"age\":\"50-59\",\"population\":74779},{\"state\":\"FL\",\"age\":\"50-59\",\"population\":2762983},{\"state\":\"GA\",\"age\":\"50-59\",\"population\":1337985},{\"state\":\"HI\",\"age\":\"50-59\",\"population\":188438},{\"state\":\"ID\",\"age\":\"50-59\",\"population\":205170},{\"state\":\"IL\",\"age\":\"50-59\",\"population\":1773366},{\"state\":\"IN\",\"age\":\"50-59\",\"population\":911778},{\"state\":\"IA\",\"age\":\"50-59\",\"population\":427554},{\"state\":\"KS\",\"age\":\"50-59\",\"population\":389834},{\"state\":\"KY\",\"age\":\"50-59\",\"population\":623164},{\"state\":\"LA\",\"age\":\"50-59\",\"population\":631936},{\"state\":\"ME\",\"age\":\"50-59\",\"population\":215787},{\"state\":\"MD\",\"age\":\"50-59\",\"population\":862778},{\"state\":\"MA\",\"age\":\"50-59\",\"population\":979128},{\"state\":\"MI\",\"age\":\"50-59\",\"population\":1454462},{\"state\":\"MN\",\"age\":\"50-59\",\"population\":782655},{\"state\":\"MS\",\"age\":\"50-59\",\"population\":400164},{\"state\":\"MO\",\"age\":\"50-59\",\"population\":857534},{\"state\":\"MT\",\"age\":\"50-59\",\"population\":149800},{\"state\":\"NE\",\"age\":\"50-59\",\"population\":250911},{\"state\":\"NV\",\"age\":\"50-59\",\"population\":373757},{\"state\":\"NH\",\"age\":\"50-59\",\"population\":217950},{\"state\":\"NJ\",\"age\":\"50-59\",\"population\":1307263},{\"state\":\"NM\",\"age\":\"50-59\",\"population\":280363},{\"state\":\"NY\",\"age\":\"50-59\",\"population\":2755620},{\"state\":\"NC\",\"age\":\"50-59\",\"population\":1356117},{\"state\":\"ND\",\"age\":\"50-59\",\"population\":98688},{\"state\":\"OH\",\"age\":\"50-59\",\"population\":1677794},{\"state\":\"OK\",\"age\":\"50-59\",\"population\":512850},{\"state\":\"OR\",\"age\":\"50-59\",\"population\":534421},{\"state\":\"PA\",\"age\":\"50-59\",\"population\":1881378},{\"state\":\"RI\",\"age\":\"50-59\",\"population\":156127},{\"state\":\"SC\",\"age\":\"50-59\",\"population\":663408},{\"state\":\"SD\",\"age\":\"50-59\",\"population\":117012},{\"state\":\"TN\",\"age\":\"50-59\",\"population\":904272},{\"state\":\"TX\",\"age\":\"50-59\",\"population\":3344930},{\"state\":\"UT\",\"age\":\"50-59\",\"population\":301596},{\"state\":\"VT\",\"age\":\"50-59\",\"population\":99521},{\"state\":\"VA\",\"age\":\"50-59\",\"population\":1162028},{\"state\":\"WA\",\"age\":\"50-59\",\"population\":970407},{\"state\":\"WV\",\"age\":\"50-59\",\"population\":269346},{\"state\":\"WI\",\"age\":\"50-59\",\"population\":848672},{\"state\":\"WY\",\"age\":\"50-59\",\"population\":81018},{\"state\":\"PR\",\"age\":\"50-59\",\"population\":452503},{\"state\":\"AL\",\"age\":\"60-69\",\"population\":548376},{\"state\":\"AK\",\"age\":\"60-69\",\"population\":70473},{\"state\":\"AZ\",\"age\":\"60-69\",\"population\":737884},{\"state\":\"AR\",\"age\":\"60-69\",\"population\":329734},{\"state\":\"CA\",\"age\":\"60-69\",\"population\":3737461},{\"state\":\"CO\",\"age\":\"60-69\",\"population\":563376},{\"state\":\"CT\",\"age\":\"60-69\",\"population\":400995},{\"state\":\"DE\",\"age\":\"60-69\",\"population\":110822},{\"state\":\"DC\",\"age\":\"60-69\",\"population\":56984},{\"state\":\"FL\",\"age\":\"60-69\",\"population\":2404659},{\"state\":\"GA\",\"age\":\"60-69\",\"population\":998253},{\"state\":\"HI\",\"age\":\"60-69\",\"population\":164957},{\"state\":\"ID\",\"age\":\"60-69\",\"population\":179429},{\"state\":\"IL\",\"age\":\"60-69\",\"population\":1326121},{\"state\":\"IN\",\"age\":\"60-69\",\"population\":704523},{\"state\":\"IA\",\"age\":\"60-69\",\"population\":344037},{\"state\":\"KS\",\"age\":\"60-69\",\"population\":300759},{\"state\":\"KY\",\"age\":\"60-69\",\"population\":495736},{\"state\":\"LA\",\"age\":\"60-69\",\"population\":488846},{\"state\":\"ME\",\"age\":\"60-69\",\"population\":179540},{\"state\":\"MD\",\"age\":\"60-69\",\"population\":636309},{\"state\":\"MA\",\"age\":\"60-69\",\"population\":737805},{\"state\":\"MI\",\"age\":\"60-69\",\"population\":1148131},{\"state\":\"MN\",\"age\":\"60-69\",\"population\":577313},{\"state\":\"MS\",\"age\":\"60-69\",\"population\":319443},{\"state\":\"MO\",\"age\":\"60-69\",\"population\":668878},{\"state\":\"MT\",\"age\":\"60-69\",\"population\":130977},{\"state\":\"NE\",\"age\":\"60-69\",\"population\":195705},{\"state\":\"NV\",\"age\":\"60-69\",\"population\":309651},{\"state\":\"NH\",\"age\":\"60-69\",\"population\":164287},{\"state\":\"NJ\",\"age\":\"60-69\",\"population\":946399},{\"state\":\"NM\",\"age\":\"60-69\",\"population\":239044},{\"state\":\"NY\",\"age\":\"60-69\",\"population\":2095207},{\"state\":\"NC\",\"age\":\"60-69\",\"population\":1095320},{\"state\":\"ND\",\"age\":\"60-69\",\"population\":73825},{\"state\":\"OH\",\"age\":\"60-69\",\"population\":1320776},{\"state\":\"OK\",\"age\":\"60-69\",\"population\":404704},{\"state\":\"OR\",\"age\":\"60-69\",\"population\":490894},{\"state\":\"PA\",\"age\":\"60-69\",\"population\":1491536},{\"state\":\"RI\",\"age\":\"60-69\",\"population\":117653},{\"state\":\"SC\",\"age\":\"60-69\",\"population\":579856},{\"state\":\"SD\",\"age\":\"60-69\",\"population\":92824},{\"state\":\"TN\",\"age\":\"60-69\",\"population\":741045},{\"state\":\"TX\",\"age\":\"60-69\",\"population\":2431494},{\"state\":\"UT\",\"age\":\"60-69\",\"population\":230007},{\"state\":\"VT\",\"age\":\"60-69\",\"population\":82136},{\"state\":\"VA\",\"age\":\"60-69\",\"population\":881763},{\"state\":\"WA\",\"age\":\"60-69\",\"population\":784208},{\"state\":\"WV\",\"age\":\"60-69\",\"population\":243108},{\"state\":\"WI\",\"age\":\"60-69\",\"population\":645015},{\"state\":\"WY\",\"age\":\"60-69\",\"population\":67484},{\"state\":\"PR\",\"age\":\"60-69\",\"population\":411924},{\"state\":\"AL\",\"age\":\"70-79\",\"population\":316598},{\"state\":\"AK\",\"age\":\"70-79\",\"population\":28422},{\"state\":\"AZ\",\"age\":\"70-79\",\"population\":466153},{\"state\":\"AR\",\"age\":\"70-79\",\"population\":197985},{\"state\":\"CA\",\"age\":\"70-79\",\"population\":2011678},{\"state\":\"CO\",\"age\":\"70-79\",\"population\":274466},{\"state\":\"CT\",\"age\":\"70-79\",\"population\":217827},{\"state\":\"DE\",\"age\":\"70-79\",\"population\":65369},{\"state\":\"DC\",\"age\":\"70-79\",\"population\":31362},{\"state\":\"FL\",\"age\":\"70-79\",\"population\":1615547},{\"state\":\"GA\",\"age\":\"70-79\",\"population\":528108},{\"state\":\"HI\",\"age\":\"70-79\",\"population\":85345},{\"state\":\"ID\",\"age\":\"70-79\",\"population\":97621},{\"state\":\"IL\",\"age\":\"70-79\",\"population\":728821},{\"state\":\"IN\",\"age\":\"70-79\",\"population\":384788},{\"state\":\"IA\",\"age\":\"70-79\",\"population\":197223},{\"state\":\"KS\",\"age\":\"70-79\",\"population\":166104},{\"state\":\"KY\",\"age\":\"70-79\",\"population\":273961},{\"state\":\"LA\",\"age\":\"70-79\",\"population\":266123},{\"state\":\"ME\",\"age\":\"70-79\",\"population\":97899},{\"state\":\"MD\",\"age\":\"70-79\",\"population\":330736},{\"state\":\"MA\",\"age\":\"70-79\",\"population\":401931},{\"state\":\"MI\",\"age\":\"70-79\",\"population\":619722},{\"state\":\"MN\",\"age\":\"70-79\",\"population\":312906},{\"state\":\"MS\",\"age\":\"70-79\",\"population\":181195},{\"state\":\"MO\",\"age\":\"70-79\",\"population\":388086},{\"state\":\"MT\",\"age\":\"70-79\",\"population\":70528},{\"state\":\"NE\",\"age\":\"70-79\",\"population\":107650},{\"state\":\"NV\",\"age\":\"70-79\",\"population\":173499},{\"state\":\"NH\",\"age\":\"70-79\",\"population\":84791},{\"state\":\"NJ\",\"age\":\"70-79\",\"population\":523620},{\"state\":\"NM\",\"age\":\"70-79\",\"population\":135013},{\"state\":\"NY\",\"age\":\"70-79\",\"population\":1160055},{\"state\":\"NC\",\"age\":\"70-79\",\"population\":609234},{\"state\":\"ND\",\"age\":\"70-79\",\"population\":41348},{\"state\":\"OH\",\"age\":\"70-79\",\"population\":728158},{\"state\":\"OK\",\"age\":\"70-79\",\"population\":239887},{\"state\":\"OR\",\"age\":\"70-79\",\"population\":255809},{\"state\":\"PA\",\"age\":\"70-79\",\"population\":850897},{\"state\":\"RI\",\"age\":\"70-79\",\"population\":63359},{\"state\":\"SC\",\"age\":\"70-79\",\"population\":322073},{\"state\":\"SD\",\"age\":\"70-79\",\"population\":50398},{\"state\":\"TN\",\"age\":\"70-79\",\"population\":414939},{\"state\":\"TX\",\"age\":\"70-79\",\"population\":1291486},{\"state\":\"UT\",\"age\":\"70-79\",\"population\":123674},{\"state\":\"VT\",\"age\":\"70-79\",\"population\":42978},{\"state\":\"VA\",\"age\":\"70-79\",\"population\":475141},{\"state\":\"WA\",\"age\":\"70-79\",\"population\":401094},{\"state\":\"WV\",\"age\":\"70-79\",\"population\":138134},{\"state\":\"WI\",\"age\":\"70-79\",\"population\":350772},{\"state\":\"WY\",\"age\":\"70-79\",\"population\":32819},{\"state\":\"PR\",\"age\":\"70-79\",\"population\":268783},{\"state\":\"AL\",\"age\":\"≥80\",\"population\":174781},{\"state\":\"AK\",\"age\":\"≥80\",\"population\":12503},{\"state\":\"AZ\",\"age\":\"≥80\",\"population\":254716},{\"state\":\"AR\",\"age\":\"≥80\",\"population\":113468},{\"state\":\"CA\",\"age\":\"≥80\",\"population\":1311374},{\"state\":\"CO\",\"age\":\"≥80\",\"population\":155175},{\"state\":\"CT\",\"age\":\"≥80\",\"population\":159475},{\"state\":\"DE\",\"age\":\"≥80\",\"population\":35937},{\"state\":\"DC\",\"age\":\"≥80\",\"population\":19658},{\"state\":\"FL\",\"age\":\"≥80\",\"population\":1019566},{\"state\":\"GA\",\"age\":\"≥80\",\"population\":269182},{\"state\":\"HI\",\"age\":\"≥80\",\"population\":66060},{\"state\":\"ID\",\"age\":\"≥80\",\"population\":54234},{\"state\":\"IL\",\"age\":\"≥80\",\"population\":478948},{\"state\":\"IN\",\"age\":\"≥80\",\"population\":243131},{\"state\":\"IA\",\"age\":\"≥80\",\"population\":143583},{\"state\":\"KS\",\"age\":\"≥80\",\"population\":117637},{\"state\":\"KY\",\"age\":\"≥80\",\"population\":155074},{\"state\":\"LA\",\"age\":\"≥80\",\"population\":152063},{\"state\":\"ME\",\"age\":\"≥80\",\"population\":62007},{\"state\":\"MD\",\"age\":\"≥80\",\"population\":208079},{\"state\":\"MA\",\"age\":\"≥80\",\"population\":288408},{\"state\":\"MI\",\"age\":\"≥80\",\"population\":398303},{\"state\":\"MN\",\"age\":\"≥80\",\"population\":215985},{\"state\":\"MS\",\"age\":\"≥80\",\"population\":100689},{\"state\":\"MO\",\"age\":\"≥80\",\"population\":242554},{\"state\":\"MT\",\"age\":\"≥80\",\"population\":41920},{\"state\":\"NE\",\"age\":\"≥80\",\"population\":78504},{\"state\":\"NV\",\"age\":\"≥80\",\"population\":82273},{\"state\":\"NH\",\"age\":\"≥80\",\"population\":52552},{\"state\":\"NJ\",\"age\":\"≥80\",\"population\":367432},{\"state\":\"NM\",\"age\":\"≥80\",\"population\":74393},{\"state\":\"NY\",\"age\":\"≥80\",\"population\":804091},{\"state\":\"NC\",\"age\":\"≥80\",\"population\":342497},{\"state\":\"ND\",\"age\":\"≥80\",\"population\":32206},{\"state\":\"OH\",\"age\":\"≥80\",\"population\":481890},{\"state\":\"OK\",\"age\":\"≥80\",\"population\":138055},{\"state\":\"OR\",\"age\":\"≥80\",\"population\":157153},{\"state\":\"PA\",\"age\":\"≥80\",\"population\":615069},{\"state\":\"RI\",\"age\":\"≥80\",\"population\":51021},{\"state\":\"SC\",\"age\":\"≥80\",\"population\":166727},{\"state\":\"SD\",\"age\":\"≥80\",\"population\":38540},{\"state\":\"TN\",\"age\":\"≥80\",\"population\":227483},{\"state\":\"TX\",\"age\":\"≥80\",\"population\":732179},{\"state\":\"UT\",\"age\":\"≥80\",\"population\":70711},{\"state\":\"VT\",\"age\":\"≥80\",\"population\":26656},{\"state\":\"VA\",\"age\":\"≥80\",\"population\":274606},{\"state\":\"WA\",\"age\":\"≥80\",\"population\":242589},{\"state\":\"WV\",\"age\":\"≥80\",\"population\":79201},{\"state\":\"WI\",\"age\":\"≥80\",\"population\":241747},{\"state\":\"WY\",\"age\":\"≥80\",\"population\":19682},{\"state\":\"PR\",\"age\":\"≥80\",\"population\":148963}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"state\"],\"y\":[\"population\"],\"s\":[\"age\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"季节\",\"dataType\":\"string\"},{\"name\":\"温度\",\"dataType\":\"number\"}],\"data\":[{\"季节\":\"春\",\"温度\":15},{\"季节\":\"夏\",\"温度\":28},{\"季节\":\"秋\",\"温度\":20},{\"季节\":\"冬\",\"温度\":5}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"季节\"],\"y\":[\"温度\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"Continent\",\"dataType\":\"string\"},{\"name\":\"Area\",\"dataType\":\"number\"},{\"name\":\"Land Type\",\"dataType\":\"string\"}],\"data\":[{\"Continent\":\"Asia\",\"Area\":44579000,\"Land Type\":\"Land Mass\"},{\"Continent\":\"Africa\",\"Area\":30370000,\"Land Type\":\"Land Mass\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Continent\"],\"y\":[\"Area\"],\"s\":[\"Land Type\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"年龄段\",\"dataType\":\"string\"},{\"name\":\"用户数\",\"dataType\":\"number\"}],\"data\":[{\"年龄段\":\"18-24岁\",\"用户数\":1500},{\"年龄段\":\"25-34岁\",\"用户数\":2000},{\"年龄段\":\"35-44岁\",\"用户数\":1800},{\"年龄段\":\"45岁以上\",\"用户数\":1200}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"年龄段\"],\"y\":[\"用户数\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"Year\",\"dataType\":\"string\"},{\"name\":\"Sales\",\"dataType\":\"number\"},{\"name\":\"Region\",\"dataType\":\"string\"}],\"data\":[{\"Year\":\"2019\",\"Sales\":2000000,\"Region\":\"USA\"},{\"Year\":\"2020\",\"Sales\":2200000,\"Region\":\"USA\"},{\"Year\":\"2019\",\"Sales\":1500000,\"Region\":\"China\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Year\"],\"y\":[\"Sales\"],\"s\":[\"Region\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"Month\",\"dataType\":\"string\"},{\"name\":\"Revenue\",\"dataType\":\"number\"},{\"name\":\"Department\",\"dataType\":\"string\"}],\"data\":[{\"Month\":\"January\",\"Revenue\":80000,\"Department\":\"Electronics\"},{\"Month\":\"February\",\"Revenue\":75000,\"Department\":\"Furniture\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Month\"],\"y\":[\"Revenue\"],\"s\":[\"Department\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"地区\",\"dataType\":\"string\"},{\"name\":\"销售额\",\"dataType\":\"number\"},{\"name\":\"产品类别\",\"dataType\":\"string\"}],\"data\":[{\"地区\":\"北区\",\"销售额\":750,\"产品类别\":\"电子产品\"},{\"地区\":\"南区\",\"销售额\":300,\"产品类别\":\"生活用品\"},{\"地区\":\"西区\",\"销售额\":900,\"产品类别\":\"服装\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"地区\"],\"y\":[\"销售额\"],\"s\":[\"产品类别\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"Month\",\"dataType\":\"string\"},{\"name\":\"Rainfall\",\"dataType\":\"number\"},{\"name\":\"City\",\"dataType\":\"string\"}],\"data\":[{\"Month\":\"January\",\"Rainfall\":120,\"City\":\"Shanghai\"},{\"Month\":\"February\",\"Rainfall\":85,\"City\":\"Shanghai\"},{\"Month\":\"January\",\"Rainfall\":200,\"City\":\"London\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Month\"],\"y\":[\"Rainfall\"],\"s\":[\"City\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"纪元\",\"dataType\":\"string\"},{\"name\":\"发电量\",\"dataType\":\"number\"},{\"name\":\"能源类型\",\"dataType\":\"string\"}],\"data\":[{\"纪元\":\"2021年\",\"发电量\":5000,\"能源类型\":\"风能\"},{\"纪元\":\"2021年\",\"发电量\":2000,\"能源类型\":\"太阳能\"},{\"纪元\":\"2022年\",\"发电量\":5500,\"能源类型\":\"风能\"},{\"纪元\":\"2022年\",\"发电量\":3000,\"能源类型\":\"太阳能\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"纪元\"],\"y\":[\"发电量\"],\"s\":[\"能源类型\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"site\",\"dataType\":\"string\"},{\"name\":\"yield\",\"dataType\":\"number\"}],\"data\":[{\"site\":\"University Farm\",\"yield\":27},{\"site\":\"Waseca\",\"yield\":48.86667},{\"site\":\"Morris\",\"yield\":27.43334},{\"site\":\"Crookston\",\"yield\":39.93333},{\"site\":\"Grand Rapids\",\"yield\":32.96667},{\"site\":\"Duluth\",\"yield\":28.96667}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"site\"],\"y\":[\"yield\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"季度\",\"dataType\":\"string\"},{\"name\":\"利润\",\"dataType\":\"number\"}],\"data\":[{\"季度\":\"Q1\",\"利润\":500000},{\"季度\":\"Q2\",\"利润\":550000},{\"季度\":\"Q3\",\"利润\":600000},{\"季度\":\"Q4\",\"利润\":650000}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"季度\"],\"y\":[\"利润\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"产品类别\",\"dataType\":\"string\"},{\"name\":\"销量\",\"dataType\":\"number\"}],\"data\":[{\"产品类别\":\"电子产品\",\"销量\":500},{\"产品类别\":\"家居用品\",\"销量\":300},{\"产品类别\":\"服装\",\"销量\":450},{\"产品类别\":\"食品\",\"销量\":600}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"产品类别\"],\"y\":[\"销量\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"}],\"data\":[{\"国家\":\"美国\",\"GDP\":21439453},{\"国家\":\"中国\",\"GDP\":14140163},{\"国家\":\"日本\",\"GDP\":5177086},{\"国家\":\"德国\",\"GDP\":3885000}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"GDP\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"Product\",\"dataType\":\"string\"},{\"name\":\"Sales\",\"dataType\":\"number\"}],\"data\":[{\"Product\":\"Laptop\",\"Sales\":250},{\"Product\":\"Tablet\",\"Sales\":150},{\"Product\":\"Smartphone\",\"Sales\":300}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Product\"],\"y\":[\"Sales\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"},{\"name\":\"洲\",\"dataType\":\"string\"}],\"data\":[{\"国家\":\"中国\",\"GDP\":14342903,\"洲\":\"亚洲\"},{\"国家\":\"美国\",\"GDP\":21433300,\"洲\":\"北美洲\"},{\"国家\":\"德国\",\"GDP\":3845630,\"洲\":\"欧洲\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"GDP\"],\"s\":[\"洲\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"},{\"name\":\"Year\",\"dataType\":\"string\"}],\"data\":[{\"Country\":\"USA\",\"GDP\":21433000,\"Year\":\"2022\"},{\"Country\":\"China\",\"GDP\":14342000,\"Year\":\"2022\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"GDP\"],\"s\":[\"Year\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"城市\",\"dataType\":\"string\"},{\"name\":\"平均气温\",\"dataType\":\"number\"}],\"data\":[{\"城市\":\"伦敦\",\"平均气温\":11},{\"城市\":\"东京\",\"平均气温\":15},{\"城市\":\"纽约\",\"平均气温\":13},{\"城市\":\"巴黎\",\"平均气温\":12},{\"城市\":\"悉尼\",\"平均气温\":17}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"平均气温\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"state\",\"dataType\":\"string\"},{\"name\":\"population\",\"dataType\":\"number\"},{\"name\":\"age\",\"dataType\":\"string\"}],\"data\":[{\"state\":\"AL\",\"age\":\"<10\",\"population\":598478},{\"state\":\"AK\",\"age\":\"<10\",\"population\":106741},{\"state\":\"AZ\",\"age\":\"<10\",\"population\":892083},{\"state\":\"AR\",\"age\":\"<10\",\"population\":392177},{\"state\":\"CA\",\"age\":\"<10\",\"population\":5038433},{\"state\":\"CO\",\"age\":\"<10\",\"population\":690830},{\"state\":\"CT\",\"age\":\"<10\",\"population\":399369},{\"state\":\"DE\",\"age\":\"<10\",\"population\":112177},{\"state\":\"DC\",\"age\":\"<10\",\"population\":74377},{\"state\":\"FL\",\"age\":\"<10\",\"population\":2211012},{\"state\":\"GA\",\"age\":\"<10\",\"population\":1363631},{\"state\":\"HI\",\"age\":\"<10\",\"population\":176484},{\"state\":\"ID\",\"age\":\"<10\",\"population\":236658},{\"state\":\"IL\",\"age\":\"<10\",\"population\":1619682},{\"state\":\"IN\",\"age\":\"<10\",\"population\":863029},{\"state\":\"IA\",\"age\":\"<10\",\"population\":401712},{\"state\":\"KS\",\"age\":\"<10\",\"population\":401751},{\"state\":\"KY\",\"age\":\"<10\",\"population\":555615},{\"state\":\"LA\",\"age\":\"<10\",\"population\":622061},{\"state\":\"ME\",\"age\":\"<10\",\"population\":137954},{\"state\":\"MD\",\"age\":\"<10\",\"population\":741952},{\"state\":\"MA\",\"age\":\"<10\",\"population\":737748},{\"state\":\"MI\",\"age\":\"<10\",\"population\":1181424},{\"state\":\"MN\",\"age\":\"<10\",\"population\":711604},{\"state\":\"MS\",\"age\":\"<10\",\"population\":400288},{\"state\":\"MO\",\"age\":\"<10\",\"population\":763948},{\"state\":\"MT\",\"age\":\"<10\",\"population\":126020},{\"state\":\"NE\",\"age\":\"<10\",\"population\":263518},{\"state\":\"NV\",\"age\":\"<10\",\"population\":369362},{\"state\":\"NH\",\"age\":\"<10\",\"population\":138762},{\"state\":\"NJ\",\"age\":\"<10\",\"population\":1079136},{\"state\":\"NM\",\"age\":\"<10\",\"population\":276468},{\"state\":\"NY\",\"age\":\"<10\",\"population\":2319945},{\"state\":\"NC\",\"age\":\"<10\",\"population\":1250298},{\"state\":\"ND\",\"age\":\"<10\",\"population\":99477},{\"state\":\"OH\",\"age\":\"<10\",\"population\":1422838},{\"state\":\"OK\",\"age\":\"<10\",\"population\":534481},{\"state\":\"OR\",\"age\":\"<10\",\"population\":474456},{\"state\":\"PA\",\"age\":\"<10\",\"population\":1458931},{\"state\":\"RI\",\"age\":\"<10\",\"population\":111377},{\"state\":\"SC\",\"age\":\"<10\",\"population\":599591},{\"state\":\"SD\",\"age\":\"<10\",\"population\":120366},{\"state\":\"TN\",\"age\":\"<10\",\"population\":818404},{\"state\":\"TX\",\"age\":\"<10\",\"population\":3983091},{\"state\":\"UT\",\"age\":\"<10\",\"population\":513515},{\"state\":\"VT\",\"age\":\"<10\",\"population\":63768},{\"state\":\"VA\",\"age\":\"<10\",\"population\":1033629},{\"state\":\"WA\",\"age\":\"<10\",\"population\":895790},{\"state\":\"WV\",\"age\":\"<10\",\"population\":207017},{\"state\":\"WI\",\"age\":\"<10\",\"population\":705648},{\"state\":\"WY\",\"age\":\"<10\",\"population\":78217},{\"state\":\"PR\",\"age\":\"<10\",\"population\":389428},{\"state\":\"AL\",\"age\":\"10-19\",\"population\":638789},{\"state\":\"AK\",\"age\":\"10-19\",\"population\":99926},{\"state\":\"AZ\",\"age\":\"10-19\",\"population\":912735},{\"state\":\"AR\",\"age\":\"10-19\",\"population\":397185},{\"state\":\"CA\",\"age\":\"10-19\",\"population\":5170341},{\"state\":\"CO\",\"age\":\"10-19\",\"population\":697447},{\"state\":\"CT\",\"age\":\"10-19\",\"population\":481065},{\"state\":\"DE\",\"age\":\"10-19\",\"population\":117854},{\"state\":\"DC\",\"age\":\"10-19\",\"population\":62783},{\"state\":\"FL\",\"age\":\"10-19\",\"population\":2331102},{\"state\":\"GA\",\"age\":\"10-19\",\"population\":1421557},{\"state\":\"HI\",\"age\":\"10-19\",\"population\":163559},{\"state\":\"ID\",\"age\":\"10-19\",\"population\":239509},{\"state\":\"IL\",\"age\":\"10-19\",\"population\":1715984},{\"state\":\"IN\",\"age\":\"10-19\",\"population\":905594},{\"state\":\"IA\",\"age\":\"10-19\",\"population\":418667},{\"state\":\"KS\",\"age\":\"10-19\",\"population\":402092},{\"state\":\"KY\",\"age\":\"10-19\",\"population\":575866},{\"state\":\"LA\",\"age\":\"10-19\",\"population\":613633},{\"state\":\"ME\",\"age\":\"10-19\",\"population\":155774},{\"state\":\"MD\",\"age\":\"10-19\",\"population\":764730},{\"state\":\"MA\",\"age\":\"10-19\",\"population\":862371},{\"state\":\"MI\",\"age\":\"10-19\",\"population\":1324071},{\"state\":\"MN\",\"age\":\"10-19\",\"population\":714399},{\"state\":\"MS\",\"age\":\"10-19\",\"population\":421329},{\"state\":\"MO\",\"age\":\"10-19\",\"population\":792935},{\"state\":\"MT\",\"age\":\"10-19\",\"population\":126294},{\"state\":\"NE\",\"age\":\"10-19\",\"population\":257610},{\"state\":\"NV\",\"age\":\"10-19\",\"population\":360263},{\"state\":\"NH\",\"age\":\"10-19\",\"population\":167495},{\"state\":\"NJ\",\"age\":\"10-19\",\"population\":1153625},{\"state\":\"NM\",\"age\":\"10-19\",\"population\":282662},{\"state\":\"NY\",\"age\":\"10-19\",\"population\":2445591},{\"state\":\"NC\",\"age\":\"10-19\",\"population\":1310398},{\"state\":\"ND\",\"age\":\"10-19\",\"population\":91069},{\"state\":\"OH\",\"age\":\"10-19\",\"population\":1530264},{\"state\":\"OK\",\"age\":\"10-19\",\"population\":522282},{\"state\":\"OR\",\"age\":\"10-19\",\"population\":485345},{\"state\":\"PA\",\"age\":\"10-19\",\"population\":1608018},{\"state\":\"RI\",\"age\":\"10-19\",\"population\":136885},{\"state\":\"SC\",\"age\":\"10-19\",\"population\":619144},{\"state\":\"SD\",\"age\":\"10-19\",\"population\":113383},{\"state\":\"TN\",\"age\":\"10-19\",\"population\":842873},{\"state\":\"TX\",\"age\":\"10-19\",\"population\":3910528},{\"state\":\"UT\",\"age\":\"10-19\",\"population\":479126},{\"state\":\"VT\",\"age\":\"10-19\",\"population\":79351},{\"state\":\"VA\",\"age\":\"10-19\",\"population\":1065461},{\"state\":\"WA\",\"age\":\"10-19\",\"population\":882812},{\"state\":\"WV\",\"age\":\"10-19\",\"population\":218547},{\"state\":\"WI\",\"age\":\"10-19\",\"population\":755224},{\"state\":\"WY\",\"age\":\"10-19\",\"population\":75535},{\"state\":\"PR\",\"age\":\"10-19\",\"population\":479749},{\"state\":\"AL\",\"age\":\"20-29\",\"population\":661666},{\"state\":\"AK\",\"age\":\"20-29\",\"population\":120674},{\"state\":\"AZ\",\"age\":\"20-29\",\"population\":939804},{\"state\":\"AR\",\"age\":\"20-29\",\"population\":399698},{\"state\":\"CA\",\"age\":\"20-29\",\"population\":5809455},{\"state\":\"CO\",\"age\":\"20-29\",\"population\":780508},{\"state\":\"CT\",\"age\":\"20-29\",\"population\":462323},{\"state\":\"DE\",\"age\":\"20-29\",\"population\":127554},{\"state\":\"DC\",\"age\":\"20-29\",\"population\":136976},{\"state\":\"FL\",\"age\":\"20-29\",\"population\":2597830},{\"state\":\"GA\",\"age\":\"20-29\",\"population\":1418696},{\"state\":\"HI\",\"age\":\"20-29\",\"population\":204336},{\"state\":\"ID\",\"age\":\"20-29\",\"population\":218684},{\"state\":\"IL\",\"age\":\"20-29\",\"population\":1789739},{\"state\":\"IN\",\"age\":\"20-29\",\"population\":905590},{\"state\":\"IA\",\"age\":\"20-29\",\"population\":419456},{\"state\":\"KS\",\"age\":\"20-29\",\"population\":406956},{\"state\":\"KY\",\"age\":\"20-29\",\"population\":593819},{\"state\":\"LA\",\"age\":\"20-29\",\"population\":683606},{\"state\":\"ME\",\"age\":\"20-29\",\"population\":156359},{\"state\":\"MD\",\"age\":\"20-29\",\"population\":815346},{\"state\":\"MA\",\"age\":\"20-29\",\"population\":971340},{\"state\":\"MI\",\"age\":\"20-29\",\"population\":1338179},{\"state\":\"MN\",\"age\":\"20-29\",\"population\":728222},{\"state\":\"MS\",\"age\":\"20-29\",\"population\":414195},{\"state\":\"MO\",\"age\":\"20-29\",\"population\":831725},{\"state\":\"MT\",\"age\":\"20-29\",\"population\":136346},{\"state\":\"NE\",\"age\":\"20-29\",\"population\":260646},{\"state\":\"NV\",\"age\":\"20-29\",\"population\":392834},{\"state\":\"NH\",\"age\":\"20-29\",\"population\":167554},{\"state\":\"NJ\",\"age\":\"20-29\",\"population\":1139927},{\"state\":\"NM\",\"age\":\"20-29\",\"population\":289801},{\"state\":\"NY\",\"age\":\"20-29\",\"population\":2894266},{\"state\":\"NC\",\"age\":\"20-29\",\"population\":1350242},{\"state\":\"ND\",\"age\":\"20-29\",\"population\":124509},{\"state\":\"OH\",\"age\":\"20-29\",\"population\":1535538},{\"state\":\"OK\",\"age\":\"20-29\",\"population\":552528},{\"state\":\"OR\",\"age\":\"20-29\",\"population\":538596},{\"state\":\"PA\",\"age\":\"20-29\",\"population\":1712448},{\"state\":\"RI\",\"age\":\"20-29\",\"population\":153674},{\"state\":\"SC\",\"age\":\"20-29\",\"population\":667523},{\"state\":\"SD\",\"age\":\"20-29\",\"population\":116748},{\"state\":\"TN\",\"age\":\"20-29\",\"population\":895337},{\"state\":\"TX\",\"age\":\"20-29\",\"population\":3946447},{\"state\":\"UT\",\"age\":\"20-29\",\"population\":465219},{\"state\":\"VT\",\"age\":\"20-29\",\"population\":81765},{\"state\":\"VA\",\"age\":\"20-29\",\"population\":1170634},{\"state\":\"WA\",\"age\":\"20-29\",\"population\":1004428},{\"state\":\"WV\",\"age\":\"20-29\",\"population\":232027},{\"state\":\"WI\",\"age\":\"20-29\",\"population\":760961},{\"state\":\"WY\",\"age\":\"20-29\",\"population\":82898},{\"state\":\"PR\",\"age\":\"20-29\",\"population\":480184},{\"state\":\"AL\",\"age\":\"30-39\",\"population\":603013},{\"state\":\"AK\",\"age\":\"30-39\",\"population\":102008},{\"state\":\"AZ\",\"age\":\"30-39\",\"population\":857054},{\"state\":\"AR\",\"age\":\"30-39\",\"population\":372998},{\"state\":\"CA\",\"age\":\"30-39\",\"population\":5354112},{\"state\":\"CO\",\"age\":\"30-39\",\"population\":766382},{\"state\":\"CT\",\"age\":\"30-39\",\"population\":424890},{\"state\":\"DE\",\"age\":\"30-39\",\"population\":114063},{\"state\":\"DC\",\"age\":\"30-39\",\"population\":121520},{\"state\":\"FL\",\"age\":\"30-39\",\"population\":2416176},{\"state\":\"GA\",\"age\":\"30-39\",\"population\":1357210},{\"state\":\"HI\",\"age\":\"30-39\",\"population\":187590},{\"state\":\"ID\",\"age\":\"30-39\",\"population\":209500},{\"state\":\"IL\",\"age\":\"30-39\",\"population\":1721954},{\"state\":\"IN\",\"age\":\"30-39\",\"population\":827086},{\"state\":\"IA\",\"age\":\"30-39\",\"population\":383638},{\"state\":\"KS\",\"age\":\"30-39\",\"population\":368732},{\"state\":\"KY\",\"age\":\"30-39\",\"population\":558201},{\"state\":\"LA\",\"age\":\"30-39\",\"population\":615411},{\"state\":\"ME\",\"age\":\"30-39\",\"population\":147695},{\"state\":\"MD\",\"age\":\"30-39\",\"population\":784097},{\"state\":\"MA\",\"age\":\"30-39\",\"population\":847306},{\"state\":\"MI\",\"age\":\"30-39\",\"population\":1162186},{\"state\":\"MN\",\"age\":\"30-39\",\"population\":715583},{\"state\":\"MS\",\"age\":\"30-39\",\"population\":374724},{\"state\":\"MO\",\"age\":\"30-39\",\"population\":763002},{\"state\":\"MT\",\"age\":\"30-39\",\"population\":125004},{\"state\":\"NE\",\"age\":\"30-39\",\"population\":244236},{\"state\":\"NV\",\"age\":\"30-39\",\"population\":390261},{\"state\":\"NH\",\"age\":\"30-39\",\"population\":151409},{\"state\":\"NJ\",\"age\":\"30-39\",\"population\":1143452},{\"state\":\"NM\",\"age\":\"30-39\",\"population\":260579},{\"state\":\"NY\",\"age\":\"30-39\",\"population\":2605355},{\"state\":\"NC\",\"age\":\"30-39\",\"population\":1268976},{\"state\":\"ND\",\"age\":\"30-39\",\"population\":94713},{\"state\":\"OH\",\"age\":\"30-39\",\"population\":1398724},{\"state\":\"OK\",\"age\":\"30-39\",\"population\":501392},{\"state\":\"OR\",\"age\":\"30-39\",\"population\":537767},{\"state\":\"PA\",\"age\":\"30-39\",\"population\":1520409},{\"state\":\"RI\",\"age\":\"30-39\",\"population\":126503},{\"state\":\"SC\",\"age\":\"30-39\",\"population\":596491},{\"state\":\"SD\",\"age\":\"30-39\",\"population\":105499},{\"state\":\"TN\",\"age\":\"30-39\",\"population\":837313},{\"state\":\"TX\",\"age\":\"30-39\",\"population\":3770534},{\"state\":\"UT\",\"age\":\"30-39\",\"population\":436010},{\"state\":\"VT\",\"age\":\"30-39\",\"population\":70092},{\"state\":\"VA\",\"age\":\"30-39\",\"population\":1112111},{\"state\":\"WA\",\"age\":\"30-39\",\"population\":970613},{\"state\":\"WV\",\"age\":\"30-39\",\"population\":220494},{\"state\":\"WI\",\"age\":\"30-39\",\"population\":714479},{\"state\":\"WY\",\"age\":\"30-39\",\"population\":76912},{\"state\":\"PR\",\"age\":\"30-39\",\"population\":441842},{\"state\":\"AL\",\"age\":\"40-49\",\"population\":625599},{\"state\":\"AK\",\"age\":\"40-49\",\"population\":91539},{\"state\":\"AZ\",\"age\":\"40-49\",\"population\":833290},{\"state\":\"AR\",\"age\":\"40-49\",\"population\":370157},{\"state\":\"CA\",\"age\":\"40-49\",\"population\":5179258},{\"state\":\"CO\",\"age\":\"40-49\",\"population\":705450},{\"state\":\"CT\",\"age\":\"40-49\",\"population\":496265},{\"state\":\"DE\",\"age\":\"40-49\",\"population\":117588},{\"state\":\"DC\",\"age\":\"40-49\",\"population\":80570},{\"state\":\"FL\",\"age\":\"40-49\",\"population\":2575576},{\"state\":\"GA\",\"age\":\"40-49\",\"population\":1404698},{\"state\":\"HI\",\"age\":\"40-49\",\"population\":176904},{\"state\":\"ID\",\"age\":\"40-49\",\"population\":194678},{\"state\":\"IL\",\"age\":\"40-49\",\"population\":1697069},{\"state\":\"IN\",\"age\":\"40-49\",\"population\":844059},{\"state\":\"IA\",\"age\":\"40-49\",\"population\":370719},{\"state\":\"KS\",\"age\":\"40-49\",\"population\":344427},{\"state\":\"KY\",\"age\":\"40-49\",\"population\":580553},{\"state\":\"LA\",\"age\":\"40-49\",\"population\":571991},{\"state\":\"ME\",\"age\":\"40-49\",\"population\":176908},{\"state\":\"MD\",\"age\":\"40-49\",\"population\":815875},{\"state\":\"MA\",\"age\":\"40-49\",\"population\":916106},{\"state\":\"MI\",\"age\":\"40-49\",\"population\":1283122},{\"state\":\"MN\",\"age\":\"40-49\",\"population\":692201},{\"state\":\"MS\",\"age\":\"40-49\",\"population\":377165},{\"state\":\"MO\",\"age\":\"40-49\",\"population\":750989},{\"state\":\"MT\",\"age\":\"40-49\",\"population\":116502},{\"state\":\"NE\",\"age\":\"40-49\",\"population\":222479},{\"state\":\"NV\",\"age\":\"40-49\",\"population\":387272},{\"state\":\"NH\",\"age\":\"40-49\",\"population\":182703},{\"state\":\"NJ\",\"age\":\"40-49\",\"population\":1254602},{\"state\":\"NM\",\"age\":\"40-49\",\"population\":244346},{\"state\":\"NY\",\"age\":\"40-49\",\"population\":2617327},{\"state\":\"NC\",\"age\":\"40-49\",\"population\":1357746},{\"state\":\"ND\",\"age\":\"40-49\",\"population\":80327},{\"state\":\"OH\",\"age\":\"40-49\",\"population\":1490959},{\"state\":\"OK\",\"age\":\"40-49\",\"population\":469410},{\"state\":\"OR\",\"age\":\"40-49\",\"population\":507826},{\"state\":\"PA\",\"age\":\"40-49\",\"population\":1645291},{\"state\":\"RI\",\"age\":\"40-49\",\"population\":137892},{\"state\":\"SC\",\"age\":\"40-49\",\"population\":619792},{\"state\":\"SD\",\"age\":\"40-49\",\"population\":96288},{\"state\":\"TN\",\"age\":\"40-49\",\"population\":866343},{\"state\":\"TX\",\"age\":\"40-49\",\"population\":3545746},{\"state\":\"UT\",\"age\":\"40-49\",\"population\":328569},{\"state\":\"VT\",\"age\":\"40-49\",\"population\":79982},{\"state\":\"VA\",\"age\":\"40-49\",\"population\":1134928},{\"state\":\"WA\",\"age\":\"40-49\",\"population\":921205},{\"state\":\"WV\",\"age\":\"40-49\",\"population\":238218},{\"state\":\"WI\",\"age\":\"40-49\",\"population\":732280},{\"state\":\"WY\",\"age\":\"40-49\",\"population\":68464},{\"state\":\"PR\",\"age\":\"40-49\",\"population\":456009},{\"state\":\"AL\",\"age\":\"50-59\",\"population\":673864},{\"state\":\"AK\",\"age\":\"50-59\",\"population\":104569},{\"state\":\"AZ\",\"age\":\"50-59\",\"population\":834858},{\"state\":\"AR\",\"age\":\"50-59\",\"population\":395070},{\"state\":\"CA\",\"age\":\"50-59\",\"population\":5042094},{\"state\":\"CO\",\"age\":\"50-59\",\"population\":725661},{\"state\":\"CT\",\"age\":\"50-59\",\"population\":546361},{\"state\":\"DE\",\"age\":\"50-59\",\"population\":133331},{\"state\":\"DC\",\"age\":\"50-59\",\"population\":74779},{\"state\":\"FL\",\"age\":\"50-59\",\"population\":2762983},{\"state\":\"GA\",\"age\":\"50-59\",\"population\":1337985},{\"state\":\"HI\",\"age\":\"50-59\",\"population\":188438},{\"state\":\"ID\",\"age\":\"50-59\",\"population\":205170},{\"state\":\"IL\",\"age\":\"50-59\",\"population\":1773366},{\"state\":\"IN\",\"age\":\"50-59\",\"population\":911778},{\"state\":\"IA\",\"age\":\"50-59\",\"population\":427554},{\"state\":\"KS\",\"age\":\"50-59\",\"population\":389834},{\"state\":\"KY\",\"age\":\"50-59\",\"population\":623164},{\"state\":\"LA\",\"age\":\"50-59\",\"population\":631936},{\"state\":\"ME\",\"age\":\"50-59\",\"population\":215787},{\"state\":\"MD\",\"age\":\"50-59\",\"population\":862778},{\"state\":\"MA\",\"age\":\"50-59\",\"population\":979128},{\"state\":\"MI\",\"age\":\"50-59\",\"population\":1454462},{\"state\":\"MN\",\"age\":\"50-59\",\"population\":782655},{\"state\":\"MS\",\"age\":\"50-59\",\"population\":400164},{\"state\":\"MO\",\"age\":\"50-59\",\"population\":857534},{\"state\":\"MT\",\"age\":\"50-59\",\"population\":149800},{\"state\":\"NE\",\"age\":\"50-59\",\"population\":250911},{\"state\":\"NV\",\"age\":\"50-59\",\"population\":373757},{\"state\":\"NH\",\"age\":\"50-59\",\"population\":217950},{\"state\":\"NJ\",\"age\":\"50-59\",\"population\":1307263},{\"state\":\"NM\",\"age\":\"50-59\",\"population\":280363},{\"state\":\"NY\",\"age\":\"50-59\",\"population\":2755620},{\"state\":\"NC\",\"age\":\"50-59\",\"population\":1356117},{\"state\":\"ND\",\"age\":\"50-59\",\"population\":98688},{\"state\":\"OH\",\"age\":\"50-59\",\"population\":1677794},{\"state\":\"OK\",\"age\":\"50-59\",\"population\":512850},{\"state\":\"OR\",\"age\":\"50-59\",\"population\":534421},{\"state\":\"PA\",\"age\":\"50-59\",\"population\":1881378},{\"state\":\"RI\",\"age\":\"50-59\",\"population\":156127},{\"state\":\"SC\",\"age\":\"50-59\",\"population\":663408},{\"state\":\"SD\",\"age\":\"50-59\",\"population\":117012},{\"state\":\"TN\",\"age\":\"50-59\",\"population\":904272},{\"state\":\"TX\",\"age\":\"50-59\",\"population\":3344930},{\"state\":\"UT\",\"age\":\"50-59\",\"population\":301596},{\"state\":\"VT\",\"age\":\"50-59\",\"population\":99521},{\"state\":\"VA\",\"age\":\"50-59\",\"population\":1162028},{\"state\":\"WA\",\"age\":\"50-59\",\"population\":970407},{\"state\":\"WV\",\"age\":\"50-59\",\"population\":269346},{\"state\":\"WI\",\"age\":\"50-59\",\"population\":848672},{\"state\":\"WY\",\"age\":\"50-59\",\"population\":81018},{\"state\":\"PR\",\"age\":\"50-59\",\"population\":452503},{\"state\":\"AL\",\"age\":\"60-69\",\"population\":548376},{\"state\":\"AK\",\"age\":\"60-69\",\"population\":70473},{\"state\":\"AZ\",\"age\":\"60-69\",\"population\":737884},{\"state\":\"AR\",\"age\":\"60-69\",\"population\":329734},{\"state\":\"CA\",\"age\":\"60-69\",\"population\":3737461},{\"state\":\"CO\",\"age\":\"60-69\",\"population\":563376},{\"state\":\"CT\",\"age\":\"60-69\",\"population\":400995},{\"state\":\"DE\",\"age\":\"60-69\",\"population\":110822},{\"state\":\"DC\",\"age\":\"60-69\",\"population\":56984},{\"state\":\"FL\",\"age\":\"60-69\",\"population\":2404659},{\"state\":\"GA\",\"age\":\"60-69\",\"population\":998253},{\"state\":\"HI\",\"age\":\"60-69\",\"population\":164957},{\"state\":\"ID\",\"age\":\"60-69\",\"population\":179429},{\"state\":\"IL\",\"age\":\"60-69\",\"population\":1326121},{\"state\":\"IN\",\"age\":\"60-69\",\"population\":704523},{\"state\":\"IA\",\"age\":\"60-69\",\"population\":344037},{\"state\":\"KS\",\"age\":\"60-69\",\"population\":300759},{\"state\":\"KY\",\"age\":\"60-69\",\"population\":495736},{\"state\":\"LA\",\"age\":\"60-69\",\"population\":488846},{\"state\":\"ME\",\"age\":\"60-69\",\"population\":179540},{\"state\":\"MD\",\"age\":\"60-69\",\"population\":636309},{\"state\":\"MA\",\"age\":\"60-69\",\"population\":737805},{\"state\":\"MI\",\"age\":\"60-69\",\"population\":1148131},{\"state\":\"MN\",\"age\":\"60-69\",\"population\":577313},{\"state\":\"MS\",\"age\":\"60-69\",\"population\":319443},{\"state\":\"MO\",\"age\":\"60-69\",\"population\":668878},{\"state\":\"MT\",\"age\":\"60-69\",\"population\":130977},{\"state\":\"NE\",\"age\":\"60-69\",\"population\":195705},{\"state\":\"NV\",\"age\":\"60-69\",\"population\":309651},{\"state\":\"NH\",\"age\":\"60-69\",\"population\":164287},{\"state\":\"NJ\",\"age\":\"60-69\",\"population\":946399},{\"state\":\"NM\",\"age\":\"60-69\",\"population\":239044},{\"state\":\"NY\",\"age\":\"60-69\",\"population\":2095207},{\"state\":\"NC\",\"age\":\"60-69\",\"population\":1095320},{\"state\":\"ND\",\"age\":\"60-69\",\"population\":73825},{\"state\":\"OH\",\"age\":\"60-69\",\"population\":1320776},{\"state\":\"OK\",\"age\":\"60-69\",\"population\":404704},{\"state\":\"OR\",\"age\":\"60-69\",\"population\":490894},{\"state\":\"PA\",\"age\":\"60-69\",\"population\":1491536},{\"state\":\"RI\",\"age\":\"60-69\",\"population\":117653},{\"state\":\"SC\",\"age\":\"60-69\",\"population\":579856},{\"state\":\"SD\",\"age\":\"60-69\",\"population\":92824},{\"state\":\"TN\",\"age\":\"60-69\",\"population\":741045},{\"state\":\"TX\",\"age\":\"60-69\",\"population\":2431494},{\"state\":\"UT\",\"age\":\"60-69\",\"population\":230007},{\"state\":\"VT\",\"age\":\"60-69\",\"population\":82136},{\"state\":\"VA\",\"age\":\"60-69\",\"population\":881763},{\"state\":\"WA\",\"age\":\"60-69\",\"population\":784208},{\"state\":\"WV\",\"age\":\"60-69\",\"population\":243108},{\"state\":\"WI\",\"age\":\"60-69\",\"population\":645015},{\"state\":\"WY\",\"age\":\"60-69\",\"population\":67484},{\"state\":\"PR\",\"age\":\"60-69\",\"population\":411924},{\"state\":\"AL\",\"age\":\"70-79\",\"population\":316598},{\"state\":\"AK\",\"age\":\"70-79\",\"population\":28422},{\"state\":\"AZ\",\"age\":\"70-79\",\"population\":466153},{\"state\":\"AR\",\"age\":\"70-79\",\"population\":197985},{\"state\":\"CA\",\"age\":\"70-79\",\"population\":2011678},{\"state\":\"CO\",\"age\":\"70-79\",\"population\":274466},{\"state\":\"CT\",\"age\":\"70-79\",\"population\":217827},{\"state\":\"DE\",\"age\":\"70-79\",\"population\":65369},{\"state\":\"DC\",\"age\":\"70-79\",\"population\":31362},{\"state\":\"FL\",\"age\":\"70-79\",\"population\":1615547},{\"state\":\"GA\",\"age\":\"70-79\",\"population\":528108},{\"state\":\"HI\",\"age\":\"70-79\",\"population\":85345},{\"state\":\"ID\",\"age\":\"70-79\",\"population\":97621},{\"state\":\"IL\",\"age\":\"70-79\",\"population\":728821},{\"state\":\"IN\",\"age\":\"70-79\",\"population\":384788},{\"state\":\"IA\",\"age\":\"70-79\",\"population\":197223},{\"state\":\"KS\",\"age\":\"70-79\",\"population\":166104},{\"state\":\"KY\",\"age\":\"70-79\",\"population\":273961},{\"state\":\"LA\",\"age\":\"70-79\",\"population\":266123},{\"state\":\"ME\",\"age\":\"70-79\",\"population\":97899},{\"state\":\"MD\",\"age\":\"70-79\",\"population\":330736},{\"state\":\"MA\",\"age\":\"70-79\",\"population\":401931},{\"state\":\"MI\",\"age\":\"70-79\",\"population\":619722},{\"state\":\"MN\",\"age\":\"70-79\",\"population\":312906},{\"state\":\"MS\",\"age\":\"70-79\",\"population\":181195},{\"state\":\"MO\",\"age\":\"70-79\",\"population\":388086},{\"state\":\"MT\",\"age\":\"70-79\",\"population\":70528},{\"state\":\"NE\",\"age\":\"70-79\",\"population\":107650},{\"state\":\"NV\",\"age\":\"70-79\",\"population\":173499},{\"state\":\"NH\",\"age\":\"70-79\",\"population\":84791},{\"state\":\"NJ\",\"age\":\"70-79\",\"population\":523620},{\"state\":\"NM\",\"age\":\"70-79\",\"population\":135013},{\"state\":\"NY\",\"age\":\"70-79\",\"population\":1160055},{\"state\":\"NC\",\"age\":\"70-79\",\"population\":609234},{\"state\":\"ND\",\"age\":\"70-79\",\"population\":41348},{\"state\":\"OH\",\"age\":\"70-79\",\"population\":728158},{\"state\":\"OK\",\"age\":\"70-79\",\"population\":239887},{\"state\":\"OR\",\"age\":\"70-79\",\"population\":255809},{\"state\":\"PA\",\"age\":\"70-79\",\"population\":850897},{\"state\":\"RI\",\"age\":\"70-79\",\"population\":63359},{\"state\":\"SC\",\"age\":\"70-79\",\"population\":322073},{\"state\":\"SD\",\"age\":\"70-79\",\"population\":50398},{\"state\":\"TN\",\"age\":\"70-79\",\"population\":414939},{\"state\":\"TX\",\"age\":\"70-79\",\"population\":1291486},{\"state\":\"UT\",\"age\":\"70-79\",\"population\":123674},{\"state\":\"VT\",\"age\":\"70-79\",\"population\":42978},{\"state\":\"VA\",\"age\":\"70-79\",\"population\":475141},{\"state\":\"WA\",\"age\":\"70-79\",\"population\":401094},{\"state\":\"WV\",\"age\":\"70-79\",\"population\":138134},{\"state\":\"WI\",\"age\":\"70-79\",\"population\":350772},{\"state\":\"WY\",\"age\":\"70-79\",\"population\":32819},{\"state\":\"PR\",\"age\":\"70-79\",\"population\":268783},{\"state\":\"AL\",\"age\":\"≥80\",\"population\":174781},{\"state\":\"AK\",\"age\":\"≥80\",\"population\":12503},{\"state\":\"AZ\",\"age\":\"≥80\",\"population\":254716},{\"state\":\"AR\",\"age\":\"≥80\",\"population\":113468},{\"state\":\"CA\",\"age\":\"≥80\",\"population\":1311374},{\"state\":\"CO\",\"age\":\"≥80\",\"population\":155175},{\"state\":\"CT\",\"age\":\"≥80\",\"population\":159475},{\"state\":\"DE\",\"age\":\"≥80\",\"population\":35937},{\"state\":\"DC\",\"age\":\"≥80\",\"population\":19658},{\"state\":\"FL\",\"age\":\"≥80\",\"population\":1019566},{\"state\":\"GA\",\"age\":\"≥80\",\"population\":269182},{\"state\":\"HI\",\"age\":\"≥80\",\"population\":66060},{\"state\":\"ID\",\"age\":\"≥80\",\"population\":54234},{\"state\":\"IL\",\"age\":\"≥80\",\"population\":478948},{\"state\":\"IN\",\"age\":\"≥80\",\"population\":243131},{\"state\":\"IA\",\"age\":\"≥80\",\"population\":143583},{\"state\":\"KS\",\"age\":\"≥80\",\"population\":117637},{\"state\":\"KY\",\"age\":\"≥80\",\"population\":155074},{\"state\":\"LA\",\"age\":\"≥80\",\"population\":152063},{\"state\":\"ME\",\"age\":\"≥80\",\"population\":62007},{\"state\":\"MD\",\"age\":\"≥80\",\"population\":208079},{\"state\":\"MA\",\"age\":\"≥80\",\"population\":288408},{\"state\":\"MI\",\"age\":\"≥80\",\"population\":398303},{\"state\":\"MN\",\"age\":\"≥80\",\"population\":215985},{\"state\":\"MS\",\"age\":\"≥80\",\"population\":100689},{\"state\":\"MO\",\"age\":\"≥80\",\"population\":242554},{\"state\":\"MT\",\"age\":\"≥80\",\"population\":41920},{\"state\":\"NE\",\"age\":\"≥80\",\"population\":78504},{\"state\":\"NV\",\"age\":\"≥80\",\"population\":82273},{\"state\":\"NH\",\"age\":\"≥80\",\"population\":52552},{\"state\":\"NJ\",\"age\":\"≥80\",\"population\":367432},{\"state\":\"NM\",\"age\":\"≥80\",\"population\":74393},{\"state\":\"NY\",\"age\":\"≥80\",\"population\":804091},{\"state\":\"NC\",\"age\":\"≥80\",\"population\":342497},{\"state\":\"ND\",\"age\":\"≥80\",\"population\":32206},{\"state\":\"OH\",\"age\":\"≥80\",\"population\":481890},{\"state\":\"OK\",\"age\":\"≥80\",\"population\":138055},{\"state\":\"OR\",\"age\":\"≥80\",\"population\":157153},{\"state\":\"PA\",\"age\":\"≥80\",\"population\":615069},{\"state\":\"RI\",\"age\":\"≥80\",\"population\":51021},{\"state\":\"SC\",\"age\":\"≥80\",\"population\":166727},{\"state\":\"SD\",\"age\":\"≥80\",\"population\":38540},{\"state\":\"TN\",\"age\":\"≥80\",\"population\":227483},{\"state\":\"TX\",\"age\":\"≥80\",\"population\":732179},{\"state\":\"UT\",\"age\":\"≥80\",\"population\":70711},{\"state\":\"VT\",\"age\":\"≥80\",\"population\":26656},{\"state\":\"VA\",\"age\":\"≥80\",\"population\":274606},{\"state\":\"WA\",\"age\":\"≥80\",\"population\":242589},{\"state\":\"WV\",\"age\":\"≥80\",\"population\":79201},{\"state\":\"WI\",\"age\":\"≥80\",\"population\":241747},{\"state\":\"WY\",\"age\":\"≥80\",\"population\":19682},{\"state\":\"PR\",\"age\":\"≥80\",\"population\":148963}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"state\"],\"y\":[\"population\"],\"s\":[\"age\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"季节\",\"dataType\":\"string\"},{\"name\":\"温度\",\"dataType\":\"number\"}],\"data\":[{\"季节\":\"春\",\"温度\":15},{\"季节\":\"夏\",\"温度\":28},{\"季节\":\"秋\",\"温度\":20},{\"季节\":\"冬\",\"温度\":5}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"季节\"],\"y\":[\"温度\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Continent\",\"dataType\":\"string\"},{\"name\":\"Area\",\"dataType\":\"number\"},{\"name\":\"Land Type\",\"dataType\":\"string\"}],\"data\":[{\"Continent\":\"Asia\",\"Area\":44579000,\"Land Type\":\"Land Mass\"},{\"Continent\":\"Africa\",\"Area\":30370000,\"Land Type\":\"Land Mass\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Continent\"],\"y\":[\"Area\"],\"s\":[\"Land Type\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"年龄段\",\"dataType\":\"string\"},{\"name\":\"用户数\",\"dataType\":\"number\"}],\"data\":[{\"年龄段\":\"18-24岁\",\"用户数\":1500},{\"年龄段\":\"25-34岁\",\"用户数\":2000},{\"年龄段\":\"35-44岁\",\"用户数\":1800},{\"年龄段\":\"45岁以上\",\"用户数\":1200}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"年龄段\"],\"y\":[\"用户数\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"Year\",\"dataType\":\"string\"},{\"name\":\"Sales\",\"dataType\":\"number\"},{\"name\":\"Region\",\"dataType\":\"string\"}],\"data\":[{\"Year\":\"2019\",\"Sales\":2000000,\"Region\":\"USA\"},{\"Year\":\"2020\",\"Sales\":2200000,\"Region\":\"USA\"},{\"Year\":\"2019\",\"Sales\":1500000,\"Region\":\"China\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Year\"],\"y\":[\"Sales\"],\"s\":[\"Region\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"Month\",\"dataType\":\"string\"},{\"name\":\"Revenue\",\"dataType\":\"number\"},{\"name\":\"Department\",\"dataType\":\"string\"}],\"data\":[{\"Month\":\"January\",\"Revenue\":80000,\"Department\":\"Electronics\"},{\"Month\":\"February\",\"Revenue\":75000,\"Department\":\"Furniture\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Month\"],\"y\":[\"Revenue\"],\"s\":[\"Department\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"地区\",\"dataType\":\"string\"},{\"name\":\"销售额\",\"dataType\":\"number\"},{\"name\":\"产品类别\",\"dataType\":\"string\"}],\"data\":[{\"地区\":\"北区\",\"销售额\":750,\"产品类别\":\"电子产品\"},{\"地区\":\"南区\",\"销售额\":300,\"产品类别\":\"生活用品\"},{\"地区\":\"西区\",\"销售额\":900,\"产品类别\":\"服装\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"地区\"],\"y\":[\"销售额\"],\"s\":[\"产品类别\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"Month\",\"dataType\":\"string\"},{\"name\":\"Rainfall\",\"dataType\":\"number\"},{\"name\":\"City\",\"dataType\":\"string\"}],\"data\":[{\"Month\":\"January\",\"Rainfall\":120,\"City\":\"Shanghai\"},{\"Month\":\"February\",\"Rainfall\":85,\"City\":\"Shanghai\"},{\"Month\":\"January\",\"Rainfall\":200,\"City\":\"London\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Month\"],\"y\":[\"Rainfall\"],\"s\":[\"City\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"纪元\",\"dataType\":\"string\"},{\"name\":\"发电量\",\"dataType\":\"number\"},{\"name\":\"能源类型\",\"dataType\":\"string\"}],\"data\":[{\"纪元\":\"2021年\",\"发电量\":5000,\"能源类型\":\"风能\"},{\"纪元\":\"2021年\",\"发电量\":2000,\"能源类型\":\"太阳能\"},{\"纪元\":\"2022年\",\"发电量\":5500,\"能源类型\":\"风能\"},{\"纪元\":\"2022年\",\"发电量\":3000,\"能源类型\":\"太阳能\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"纪元\"],\"y\":[\"发电量\"],\"s\":[\"能源类型\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"site\",\"dataType\":\"string\"},{\"name\":\"yield\",\"dataType\":\"number\"}],\"data\":[{\"site\":\"University Farm\",\"yield\":27},{\"site\":\"Waseca\",\"yield\":48.86667},{\"site\":\"Morris\",\"yield\":27.43334},{\"site\":\"Crookston\",\"yield\":39.93333},{\"site\":\"Grand Rapids\",\"yield\":32.96667},{\"site\":\"Duluth\",\"yield\":28.96667}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"site\"],\"y\":[\"yield\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"季度\",\"dataType\":\"string\"},{\"name\":\"利润\",\"dataType\":\"number\"}],\"data\":[{\"季度\":\"Q1\",\"利润\":500000},{\"季度\":\"Q2\",\"利润\":550000},{\"季度\":\"Q3\",\"利润\":600000},{\"季度\":\"Q4\",\"利润\":650000}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"季度\"],\"y\":[\"利润\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"产品类别\",\"dataType\":\"string\"},{\"name\":\"销量\",\"dataType\":\"number\"}],\"data\":[{\"产品类别\":\"电子产品\",\"销量\":500},{\"产品类别\":\"家居用品\",\"销量\":300},{\"产品类别\":\"服装\",\"销量\":450},{\"产品类别\":\"食品\",\"销量\":600}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"产品类别\"],\"y\":[\"销量\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"}],\"data\":[{\"国家\":\"美国\",\"GDP\":21439453},{\"国家\":\"中国\",\"GDP\":14140163},{\"国家\":\"日本\",\"GDP\":5177086},{\"国家\":\"德国\",\"GDP\":3885000}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"GDP\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"Product\",\"dataType\":\"string\"},{\"name\":\"Sales\",\"dataType\":\"number\"}],\"data\":[{\"Product\":\"Laptop\",\"Sales\":250},{\"Product\":\"Tablet\",\"Sales\":150},{\"Product\":\"Smartphone\",\"Sales\":300}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Product\"],\"y\":[\"Sales\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"},{\"name\":\"洲\",\"dataType\":\"string\"}],\"data\":[{\"国家\":\"中国\",\"GDP\":14342903,\"洲\":\"亚洲\"},{\"国家\":\"美国\",\"GDP\":21433300,\"洲\":\"北美洲\"},{\"国家\":\"德国\",\"GDP\":3845630,\"洲\":\"欧洲\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"GDP\"],\"s\":[\"洲\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"},{\"name\":\"Year\",\"dataType\":\"string\"}],\"data\":[{\"Country\":\"USA\",\"GDP\":21433000,\"Year\":\"2022\"},{\"Country\":\"China\",\"GDP\":14342000,\"Year\":\"2022\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"GDP\"],\"s\":[\"Year\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"城市\",\"dataType\":\"string\"},{\"name\":\"平均气温\",\"dataType\":\"number\"}],\"data\":[{\"城市\":\"伦敦\",\"平均气温\":11},{\"城市\":\"东京\",\"平均气温\":15},{\"城市\":\"纽约\",\"平均气温\":13},{\"城市\":\"巴黎\",\"平均气温\":12},{\"城市\":\"悉尼\",\"平均气温\":17}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"平均气温\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"state\",\"dataType\":\"string\"},{\"name\":\"population\",\"dataType\":\"number\"},{\"name\":\"age\",\"dataType\":\"string\"}],\"data\":[{\"state\":\"AL\",\"age\":\"<10\",\"population\":598478},{\"state\":\"AK\",\"age\":\"<10\",\"population\":106741},{\"state\":\"AZ\",\"age\":\"<10\",\"population\":892083},{\"state\":\"AR\",\"age\":\"<10\",\"population\":392177},{\"state\":\"CA\",\"age\":\"<10\",\"population\":5038433},{\"state\":\"CO\",\"age\":\"<10\",\"population\":690830},{\"state\":\"CT\",\"age\":\"<10\",\"population\":399369},{\"state\":\"DE\",\"age\":\"<10\",\"population\":112177},{\"state\":\"DC\",\"age\":\"<10\",\"population\":74377},{\"state\":\"FL\",\"age\":\"<10\",\"population\":2211012},{\"state\":\"GA\",\"age\":\"<10\",\"population\":1363631},{\"state\":\"HI\",\"age\":\"<10\",\"population\":176484},{\"state\":\"ID\",\"age\":\"<10\",\"population\":236658},{\"state\":\"IL\",\"age\":\"<10\",\"population\":1619682},{\"state\":\"IN\",\"age\":\"<10\",\"population\":863029},{\"state\":\"IA\",\"age\":\"<10\",\"population\":401712},{\"state\":\"KS\",\"age\":\"<10\",\"population\":401751},{\"state\":\"KY\",\"age\":\"<10\",\"population\":555615},{\"state\":\"LA\",\"age\":\"<10\",\"population\":622061},{\"state\":\"ME\",\"age\":\"<10\",\"population\":137954},{\"state\":\"MD\",\"age\":\"<10\",\"population\":741952},{\"state\":\"MA\",\"age\":\"<10\",\"population\":737748},{\"state\":\"MI\",\"age\":\"<10\",\"population\":1181424},{\"state\":\"MN\",\"age\":\"<10\",\"population\":711604},{\"state\":\"MS\",\"age\":\"<10\",\"population\":400288},{\"state\":\"MO\",\"age\":\"<10\",\"population\":763948},{\"state\":\"MT\",\"age\":\"<10\",\"population\":126020},{\"state\":\"NE\",\"age\":\"<10\",\"population\":263518},{\"state\":\"NV\",\"age\":\"<10\",\"population\":369362},{\"state\":\"NH\",\"age\":\"<10\",\"population\":138762},{\"state\":\"NJ\",\"age\":\"<10\",\"population\":1079136},{\"state\":\"NM\",\"age\":\"<10\",\"population\":276468},{\"state\":\"NY\",\"age\":\"<10\",\"population\":2319945},{\"state\":\"NC\",\"age\":\"<10\",\"population\":1250298},{\"state\":\"ND\",\"age\":\"<10\",\"population\":99477},{\"state\":\"OH\",\"age\":\"<10\",\"population\":1422838},{\"state\":\"OK\",\"age\":\"<10\",\"population\":534481},{\"state\":\"OR\",\"age\":\"<10\",\"population\":474456},{\"state\":\"PA\",\"age\":\"<10\",\"population\":1458931},{\"state\":\"RI\",\"age\":\"<10\",\"population\":111377},{\"state\":\"SC\",\"age\":\"<10\",\"population\":599591},{\"state\":\"SD\",\"age\":\"<10\",\"population\":120366},{\"state\":\"TN\",\"age\":\"<10\",\"population\":818404},{\"state\":\"TX\",\"age\":\"<10\",\"population\":3983091},{\"state\":\"UT\",\"age\":\"<10\",\"population\":513515},{\"state\":\"VT\",\"age\":\"<10\",\"population\":63768},{\"state\":\"VA\",\"age\":\"<10\",\"population\":1033629},{\"state\":\"WA\",\"age\":\"<10\",\"population\":895790},{\"state\":\"WV\",\"age\":\"<10\",\"population\":207017},{\"state\":\"WI\",\"age\":\"<10\",\"population\":705648},{\"state\":\"WY\",\"age\":\"<10\",\"population\":78217},{\"state\":\"PR\",\"age\":\"<10\",\"population\":389428},{\"state\":\"AL\",\"age\":\"10-19\",\"population\":638789},{\"state\":\"AK\",\"age\":\"10-19\",\"population\":99926},{\"state\":\"AZ\",\"age\":\"10-19\",\"population\":912735},{\"state\":\"AR\",\"age\":\"10-19\",\"population\":397185},{\"state\":\"CA\",\"age\":\"10-19\",\"population\":5170341},{\"state\":\"CO\",\"age\":\"10-19\",\"population\":697447},{\"state\":\"CT\",\"age\":\"10-19\",\"population\":481065},{\"state\":\"DE\",\"age\":\"10-19\",\"population\":117854},{\"state\":\"DC\",\"age\":\"10-19\",\"population\":62783},{\"state\":\"FL\",\"age\":\"10-19\",\"population\":2331102},{\"state\":\"GA\",\"age\":\"10-19\",\"population\":1421557},{\"state\":\"HI\",\"age\":\"10-19\",\"population\":163559},{\"state\":\"ID\",\"age\":\"10-19\",\"population\":239509},{\"state\":\"IL\",\"age\":\"10-19\",\"population\":1715984},{\"state\":\"IN\",\"age\":\"10-19\",\"population\":905594},{\"state\":\"IA\",\"age\":\"10-19\",\"population\":418667},{\"state\":\"KS\",\"age\":\"10-19\",\"population\":402092},{\"state\":\"KY\",\"age\":\"10-19\",\"population\":575866},{\"state\":\"LA\",\"age\":\"10-19\",\"population\":613633},{\"state\":\"ME\",\"age\":\"10-19\",\"population\":155774},{\"state\":\"MD\",\"age\":\"10-19\",\"population\":764730},{\"state\":\"MA\",\"age\":\"10-19\",\"population\":862371},{\"state\":\"MI\",\"age\":\"10-19\",\"population\":1324071},{\"state\":\"MN\",\"age\":\"10-19\",\"population\":714399},{\"state\":\"MS\",\"age\":\"10-19\",\"population\":421329},{\"state\":\"MO\",\"age\":\"10-19\",\"population\":792935},{\"state\":\"MT\",\"age\":\"10-19\",\"population\":126294},{\"state\":\"NE\",\"age\":\"10-19\",\"population\":257610},{\"state\":\"NV\",\"age\":\"10-19\",\"population\":360263},{\"state\":\"NH\",\"age\":\"10-19\",\"population\":167495},{\"state\":\"NJ\",\"age\":\"10-19\",\"population\":1153625},{\"state\":\"NM\",\"age\":\"10-19\",\"population\":282662},{\"state\":\"NY\",\"age\":\"10-19\",\"population\":2445591},{\"state\":\"NC\",\"age\":\"10-19\",\"population\":1310398},{\"state\":\"ND\",\"age\":\"10-19\",\"population\":91069},{\"state\":\"OH\",\"age\":\"10-19\",\"population\":1530264},{\"state\":\"OK\",\"age\":\"10-19\",\"population\":522282},{\"state\":\"OR\",\"age\":\"10-19\",\"population\":485345},{\"state\":\"PA\",\"age\":\"10-19\",\"population\":1608018},{\"state\":\"RI\",\"age\":\"10-19\",\"population\":136885},{\"state\":\"SC\",\"age\":\"10-19\",\"population\":619144},{\"state\":\"SD\",\"age\":\"10-19\",\"population\":113383},{\"state\":\"TN\",\"age\":\"10-19\",\"population\":842873},{\"state\":\"TX\",\"age\":\"10-19\",\"population\":3910528},{\"state\":\"UT\",\"age\":\"10-19\",\"population\":479126},{\"state\":\"VT\",\"age\":\"10-19\",\"population\":79351},{\"state\":\"VA\",\"age\":\"10-19\",\"population\":1065461},{\"state\":\"WA\",\"age\":\"10-19\",\"population\":882812},{\"state\":\"WV\",\"age\":\"10-19\",\"population\":218547},{\"state\":\"WI\",\"age\":\"10-19\",\"population\":755224},{\"state\":\"WY\",\"age\":\"10-19\",\"population\":75535},{\"state\":\"PR\",\"age\":\"10-19\",\"population\":479749},{\"state\":\"AL\",\"age\":\"20-29\",\"population\":661666},{\"state\":\"AK\",\"age\":\"20-29\",\"population\":120674},{\"state\":\"AZ\",\"age\":\"20-29\",\"population\":939804},{\"state\":\"AR\",\"age\":\"20-29\",\"population\":399698},{\"state\":\"CA\",\"age\":\"20-29\",\"population\":5809455},{\"state\":\"CO\",\"age\":\"20-29\",\"population\":780508},{\"state\":\"CT\",\"age\":\"20-29\",\"population\":462323},{\"state\":\"DE\",\"age\":\"20-29\",\"population\":127554},{\"state\":\"DC\",\"age\":\"20-29\",\"population\":136976},{\"state\":\"FL\",\"age\":\"20-29\",\"population\":2597830},{\"state\":\"GA\",\"age\":\"20-29\",\"population\":1418696},{\"state\":\"HI\",\"age\":\"20-29\",\"population\":204336},{\"state\":\"ID\",\"age\":\"20-29\",\"population\":218684},{\"state\":\"IL\",\"age\":\"20-29\",\"population\":1789739},{\"state\":\"IN\",\"age\":\"20-29\",\"population\":905590},{\"state\":\"IA\",\"age\":\"20-29\",\"population\":419456},{\"state\":\"KS\",\"age\":\"20-29\",\"population\":406956},{\"state\":\"KY\",\"age\":\"20-29\",\"population\":593819},{\"state\":\"LA\",\"age\":\"20-29\",\"population\":683606},{\"state\":\"ME\",\"age\":\"20-29\",\"population\":156359},{\"state\":\"MD\",\"age\":\"20-29\",\"population\":815346},{\"state\":\"MA\",\"age\":\"20-29\",\"population\":971340},{\"state\":\"MI\",\"age\":\"20-29\",\"population\":1338179},{\"state\":\"MN\",\"age\":\"20-29\",\"population\":728222},{\"state\":\"MS\",\"age\":\"20-29\",\"population\":414195},{\"state\":\"MO\",\"age\":\"20-29\",\"population\":831725},{\"state\":\"MT\",\"age\":\"20-29\",\"population\":136346},{\"state\":\"NE\",\"age\":\"20-29\",\"population\":260646},{\"state\":\"NV\",\"age\":\"20-29\",\"population\":392834},{\"state\":\"NH\",\"age\":\"20-29\",\"population\":167554},{\"state\":\"NJ\",\"age\":\"20-29\",\"population\":1139927},{\"state\":\"NM\",\"age\":\"20-29\",\"population\":289801},{\"state\":\"NY\",\"age\":\"20-29\",\"population\":2894266},{\"state\":\"NC\",\"age\":\"20-29\",\"population\":1350242},{\"state\":\"ND\",\"age\":\"20-29\",\"population\":124509},{\"state\":\"OH\",\"age\":\"20-29\",\"population\":1535538},{\"state\":\"OK\",\"age\":\"20-29\",\"population\":552528},{\"state\":\"OR\",\"age\":\"20-29\",\"population\":538596},{\"state\":\"PA\",\"age\":\"20-29\",\"population\":1712448},{\"state\":\"RI\",\"age\":\"20-29\",\"population\":153674},{\"state\":\"SC\",\"age\":\"20-29\",\"population\":667523},{\"state\":\"SD\",\"age\":\"20-29\",\"population\":116748},{\"state\":\"TN\",\"age\":\"20-29\",\"population\":895337},{\"state\":\"TX\",\"age\":\"20-29\",\"population\":3946447},{\"state\":\"UT\",\"age\":\"20-29\",\"population\":465219},{\"state\":\"VT\",\"age\":\"20-29\",\"population\":81765},{\"state\":\"VA\",\"age\":\"20-29\",\"population\":1170634},{\"state\":\"WA\",\"age\":\"20-29\",\"population\":1004428},{\"state\":\"WV\",\"age\":\"20-29\",\"population\":232027},{\"state\":\"WI\",\"age\":\"20-29\",\"population\":760961},{\"state\":\"WY\",\"age\":\"20-29\",\"population\":82898},{\"state\":\"PR\",\"age\":\"20-29\",\"population\":480184},{\"state\":\"AL\",\"age\":\"30-39\",\"population\":603013},{\"state\":\"AK\",\"age\":\"30-39\",\"population\":102008},{\"state\":\"AZ\",\"age\":\"30-39\",\"population\":857054},{\"state\":\"AR\",\"age\":\"30-39\",\"population\":372998},{\"state\":\"CA\",\"age\":\"30-39\",\"population\":5354112},{\"state\":\"CO\",\"age\":\"30-39\",\"population\":766382},{\"state\":\"CT\",\"age\":\"30-39\",\"population\":424890},{\"state\":\"DE\",\"age\":\"30-39\",\"population\":114063},{\"state\":\"DC\",\"age\":\"30-39\",\"population\":121520},{\"state\":\"FL\",\"age\":\"30-39\",\"population\":2416176},{\"state\":\"GA\",\"age\":\"30-39\",\"population\":1357210},{\"state\":\"HI\",\"age\":\"30-39\",\"population\":187590},{\"state\":\"ID\",\"age\":\"30-39\",\"population\":209500},{\"state\":\"IL\",\"age\":\"30-39\",\"population\":1721954},{\"state\":\"IN\",\"age\":\"30-39\",\"population\":827086},{\"state\":\"IA\",\"age\":\"30-39\",\"population\":383638},{\"state\":\"KS\",\"age\":\"30-39\",\"population\":368732},{\"state\":\"KY\",\"age\":\"30-39\",\"population\":558201},{\"state\":\"LA\",\"age\":\"30-39\",\"population\":615411},{\"state\":\"ME\",\"age\":\"30-39\",\"population\":147695},{\"state\":\"MD\",\"age\":\"30-39\",\"population\":784097},{\"state\":\"MA\",\"age\":\"30-39\",\"population\":847306},{\"state\":\"MI\",\"age\":\"30-39\",\"population\":1162186},{\"state\":\"MN\",\"age\":\"30-39\",\"population\":715583},{\"state\":\"MS\",\"age\":\"30-39\",\"population\":374724},{\"state\":\"MO\",\"age\":\"30-39\",\"population\":763002},{\"state\":\"MT\",\"age\":\"30-39\",\"population\":125004},{\"state\":\"NE\",\"age\":\"30-39\",\"population\":244236},{\"state\":\"NV\",\"age\":\"30-39\",\"population\":390261},{\"state\":\"NH\",\"age\":\"30-39\",\"population\":151409},{\"state\":\"NJ\",\"age\":\"30-39\",\"population\":1143452},{\"state\":\"NM\",\"age\":\"30-39\",\"population\":260579},{\"state\":\"NY\",\"age\":\"30-39\",\"population\":2605355},{\"state\":\"NC\",\"age\":\"30-39\",\"population\":1268976},{\"state\":\"ND\",\"age\":\"30-39\",\"population\":94713},{\"state\":\"OH\",\"age\":\"30-39\",\"population\":1398724},{\"state\":\"OK\",\"age\":\"30-39\",\"population\":501392},{\"state\":\"OR\",\"age\":\"30-39\",\"population\":537767},{\"state\":\"PA\",\"age\":\"30-39\",\"population\":1520409},{\"state\":\"RI\",\"age\":\"30-39\",\"population\":126503},{\"state\":\"SC\",\"age\":\"30-39\",\"population\":596491},{\"state\":\"SD\",\"age\":\"30-39\",\"population\":105499},{\"state\":\"TN\",\"age\":\"30-39\",\"population\":837313},{\"state\":\"TX\",\"age\":\"30-39\",\"population\":3770534},{\"state\":\"UT\",\"age\":\"30-39\",\"population\":436010},{\"state\":\"VT\",\"age\":\"30-39\",\"population\":70092},{\"state\":\"VA\",\"age\":\"30-39\",\"population\":1112111},{\"state\":\"WA\",\"age\":\"30-39\",\"population\":970613},{\"state\":\"WV\",\"age\":\"30-39\",\"population\":220494},{\"state\":\"WI\",\"age\":\"30-39\",\"population\":714479},{\"state\":\"WY\",\"age\":\"30-39\",\"population\":76912},{\"state\":\"PR\",\"age\":\"30-39\",\"population\":441842},{\"state\":\"AL\",\"age\":\"40-49\",\"population\":625599},{\"state\":\"AK\",\"age\":\"40-49\",\"population\":91539},{\"state\":\"AZ\",\"age\":\"40-49\",\"population\":833290},{\"state\":\"AR\",\"age\":\"40-49\",\"population\":370157},{\"state\":\"CA\",\"age\":\"40-49\",\"population\":5179258},{\"state\":\"CO\",\"age\":\"40-49\",\"population\":705450},{\"state\":\"CT\",\"age\":\"40-49\",\"population\":496265},{\"state\":\"DE\",\"age\":\"40-49\",\"population\":117588},{\"state\":\"DC\",\"age\":\"40-49\",\"population\":80570},{\"state\":\"FL\",\"age\":\"40-49\",\"population\":2575576},{\"state\":\"GA\",\"age\":\"40-49\",\"population\":1404698},{\"state\":\"HI\",\"age\":\"40-49\",\"population\":176904},{\"state\":\"ID\",\"age\":\"40-49\",\"population\":194678},{\"state\":\"IL\",\"age\":\"40-49\",\"population\":1697069},{\"state\":\"IN\",\"age\":\"40-49\",\"population\":844059},{\"state\":\"IA\",\"age\":\"40-49\",\"population\":370719},{\"state\":\"KS\",\"age\":\"40-49\",\"population\":344427},{\"state\":\"KY\",\"age\":\"40-49\",\"population\":580553},{\"state\":\"LA\",\"age\":\"40-49\",\"population\":571991},{\"state\":\"ME\",\"age\":\"40-49\",\"population\":176908},{\"state\":\"MD\",\"age\":\"40-49\",\"population\":815875},{\"state\":\"MA\",\"age\":\"40-49\",\"population\":916106},{\"state\":\"MI\",\"age\":\"40-49\",\"population\":1283122},{\"state\":\"MN\",\"age\":\"40-49\",\"population\":692201},{\"state\":\"MS\",\"age\":\"40-49\",\"population\":377165},{\"state\":\"MO\",\"age\":\"40-49\",\"population\":750989},{\"state\":\"MT\",\"age\":\"40-49\",\"population\":116502},{\"state\":\"NE\",\"age\":\"40-49\",\"population\":222479},{\"state\":\"NV\",\"age\":\"40-49\",\"population\":387272},{\"state\":\"NH\",\"age\":\"40-49\",\"population\":182703},{\"state\":\"NJ\",\"age\":\"40-49\",\"population\":1254602},{\"state\":\"NM\",\"age\":\"40-49\",\"population\":244346},{\"state\":\"NY\",\"age\":\"40-49\",\"population\":2617327},{\"state\":\"NC\",\"age\":\"40-49\",\"population\":1357746},{\"state\":\"ND\",\"age\":\"40-49\",\"population\":80327},{\"state\":\"OH\",\"age\":\"40-49\",\"population\":1490959},{\"state\":\"OK\",\"age\":\"40-49\",\"population\":469410},{\"state\":\"OR\",\"age\":\"40-49\",\"population\":507826},{\"state\":\"PA\",\"age\":\"40-49\",\"population\":1645291},{\"state\":\"RI\",\"age\":\"40-49\",\"population\":137892},{\"state\":\"SC\",\"age\":\"40-49\",\"population\":619792},{\"state\":\"SD\",\"age\":\"40-49\",\"population\":96288},{\"state\":\"TN\",\"age\":\"40-49\",\"population\":866343},{\"state\":\"TX\",\"age\":\"40-49\",\"population\":3545746},{\"state\":\"UT\",\"age\":\"40-49\",\"population\":328569},{\"state\":\"VT\",\"age\":\"40-49\",\"population\":79982},{\"state\":\"VA\",\"age\":\"40-49\",\"population\":1134928},{\"state\":\"WA\",\"age\":\"40-49\",\"population\":921205},{\"state\":\"WV\",\"age\":\"40-49\",\"population\":238218},{\"state\":\"WI\",\"age\":\"40-49\",\"population\":732280},{\"state\":\"WY\",\"age\":\"40-49\",\"population\":68464},{\"state\":\"PR\",\"age\":\"40-49\",\"population\":456009},{\"state\":\"AL\",\"age\":\"50-59\",\"population\":673864},{\"state\":\"AK\",\"age\":\"50-59\",\"population\":104569},{\"state\":\"AZ\",\"age\":\"50-59\",\"population\":834858},{\"state\":\"AR\",\"age\":\"50-59\",\"population\":395070},{\"state\":\"CA\",\"age\":\"50-59\",\"population\":5042094},{\"state\":\"CO\",\"age\":\"50-59\",\"population\":725661},{\"state\":\"CT\",\"age\":\"50-59\",\"population\":546361},{\"state\":\"DE\",\"age\":\"50-59\",\"population\":133331},{\"state\":\"DC\",\"age\":\"50-59\",\"population\":74779},{\"state\":\"FL\",\"age\":\"50-59\",\"population\":2762983},{\"state\":\"GA\",\"age\":\"50-59\",\"population\":1337985},{\"state\":\"HI\",\"age\":\"50-59\",\"population\":188438},{\"state\":\"ID\",\"age\":\"50-59\",\"population\":205170},{\"state\":\"IL\",\"age\":\"50-59\",\"population\":1773366},{\"state\":\"IN\",\"age\":\"50-59\",\"population\":911778},{\"state\":\"IA\",\"age\":\"50-59\",\"population\":427554},{\"state\":\"KS\",\"age\":\"50-59\",\"population\":389834},{\"state\":\"KY\",\"age\":\"50-59\",\"population\":623164},{\"state\":\"LA\",\"age\":\"50-59\",\"population\":631936},{\"state\":\"ME\",\"age\":\"50-59\",\"population\":215787},{\"state\":\"MD\",\"age\":\"50-59\",\"population\":862778},{\"state\":\"MA\",\"age\":\"50-59\",\"population\":979128},{\"state\":\"MI\",\"age\":\"50-59\",\"population\":1454462},{\"state\":\"MN\",\"age\":\"50-59\",\"population\":782655},{\"state\":\"MS\",\"age\":\"50-59\",\"population\":400164},{\"state\":\"MO\",\"age\":\"50-59\",\"population\":857534},{\"state\":\"MT\",\"age\":\"50-59\",\"population\":149800},{\"state\":\"NE\",\"age\":\"50-59\",\"population\":250911},{\"state\":\"NV\",\"age\":\"50-59\",\"population\":373757},{\"state\":\"NH\",\"age\":\"50-59\",\"population\":217950},{\"state\":\"NJ\",\"age\":\"50-59\",\"population\":1307263},{\"state\":\"NM\",\"age\":\"50-59\",\"population\":280363},{\"state\":\"NY\",\"age\":\"50-59\",\"population\":2755620},{\"state\":\"NC\",\"age\":\"50-59\",\"population\":1356117},{\"state\":\"ND\",\"age\":\"50-59\",\"population\":98688},{\"state\":\"OH\",\"age\":\"50-59\",\"population\":1677794},{\"state\":\"OK\",\"age\":\"50-59\",\"population\":512850},{\"state\":\"OR\",\"age\":\"50-59\",\"population\":534421},{\"state\":\"PA\",\"age\":\"50-59\",\"population\":1881378},{\"state\":\"RI\",\"age\":\"50-59\",\"population\":156127},{\"state\":\"SC\",\"age\":\"50-59\",\"population\":663408},{\"state\":\"SD\",\"age\":\"50-59\",\"population\":117012},{\"state\":\"TN\",\"age\":\"50-59\",\"population\":904272},{\"state\":\"TX\",\"age\":\"50-59\",\"population\":3344930},{\"state\":\"UT\",\"age\":\"50-59\",\"population\":301596},{\"state\":\"VT\",\"age\":\"50-59\",\"population\":99521},{\"state\":\"VA\",\"age\":\"50-59\",\"population\":1162028},{\"state\":\"WA\",\"age\":\"50-59\",\"population\":970407},{\"state\":\"WV\",\"age\":\"50-59\",\"population\":269346},{\"state\":\"WI\",\"age\":\"50-59\",\"population\":848672},{\"state\":\"WY\",\"age\":\"50-59\",\"population\":81018},{\"state\":\"PR\",\"age\":\"50-59\",\"population\":452503},{\"state\":\"AL\",\"age\":\"60-69\",\"population\":548376},{\"state\":\"AK\",\"age\":\"60-69\",\"population\":70473},{\"state\":\"AZ\",\"age\":\"60-69\",\"population\":737884},{\"state\":\"AR\",\"age\":\"60-69\",\"population\":329734},{\"state\":\"CA\",\"age\":\"60-69\",\"population\":3737461},{\"state\":\"CO\",\"age\":\"60-69\",\"population\":563376},{\"state\":\"CT\",\"age\":\"60-69\",\"population\":400995},{\"state\":\"DE\",\"age\":\"60-69\",\"population\":110822},{\"state\":\"DC\",\"age\":\"60-69\",\"population\":56984},{\"state\":\"FL\",\"age\":\"60-69\",\"population\":2404659},{\"state\":\"GA\",\"age\":\"60-69\",\"population\":998253},{\"state\":\"HI\",\"age\":\"60-69\",\"population\":164957},{\"state\":\"ID\",\"age\":\"60-69\",\"population\":179429},{\"state\":\"IL\",\"age\":\"60-69\",\"population\":1326121},{\"state\":\"IN\",\"age\":\"60-69\",\"population\":704523},{\"state\":\"IA\",\"age\":\"60-69\",\"population\":344037},{\"state\":\"KS\",\"age\":\"60-69\",\"population\":300759},{\"state\":\"KY\",\"age\":\"60-69\",\"population\":495736},{\"state\":\"LA\",\"age\":\"60-69\",\"population\":488846},{\"state\":\"ME\",\"age\":\"60-69\",\"population\":179540},{\"state\":\"MD\",\"age\":\"60-69\",\"population\":636309},{\"state\":\"MA\",\"age\":\"60-69\",\"population\":737805},{\"state\":\"MI\",\"age\":\"60-69\",\"population\":1148131},{\"state\":\"MN\",\"age\":\"60-69\",\"population\":577313},{\"state\":\"MS\",\"age\":\"60-69\",\"population\":319443},{\"state\":\"MO\",\"age\":\"60-69\",\"population\":668878},{\"state\":\"MT\",\"age\":\"60-69\",\"population\":130977},{\"state\":\"NE\",\"age\":\"60-69\",\"population\":195705},{\"state\":\"NV\",\"age\":\"60-69\",\"population\":309651},{\"state\":\"NH\",\"age\":\"60-69\",\"population\":164287},{\"state\":\"NJ\",\"age\":\"60-69\",\"population\":946399},{\"state\":\"NM\",\"age\":\"60-69\",\"population\":239044},{\"state\":\"NY\",\"age\":\"60-69\",\"population\":2095207},{\"state\":\"NC\",\"age\":\"60-69\",\"population\":1095320},{\"state\":\"ND\",\"age\":\"60-69\",\"population\":73825},{\"state\":\"OH\",\"age\":\"60-69\",\"population\":1320776},{\"state\":\"OK\",\"age\":\"60-69\",\"population\":404704},{\"state\":\"OR\",\"age\":\"60-69\",\"population\":490894},{\"state\":\"PA\",\"age\":\"60-69\",\"population\":1491536},{\"state\":\"RI\",\"age\":\"60-69\",\"population\":117653},{\"state\":\"SC\",\"age\":\"60-69\",\"population\":579856},{\"state\":\"SD\",\"age\":\"60-69\",\"population\":92824},{\"state\":\"TN\",\"age\":\"60-69\",\"population\":741045},{\"state\":\"TX\",\"age\":\"60-69\",\"population\":2431494},{\"state\":\"UT\",\"age\":\"60-69\",\"population\":230007},{\"state\":\"VT\",\"age\":\"60-69\",\"population\":82136},{\"state\":\"VA\",\"age\":\"60-69\",\"population\":881763},{\"state\":\"WA\",\"age\":\"60-69\",\"population\":784208},{\"state\":\"WV\",\"age\":\"60-69\",\"population\":243108},{\"state\":\"WI\",\"age\":\"60-69\",\"population\":645015},{\"state\":\"WY\",\"age\":\"60-69\",\"population\":67484},{\"state\":\"PR\",\"age\":\"60-69\",\"population\":411924},{\"state\":\"AL\",\"age\":\"70-79\",\"population\":316598},{\"state\":\"AK\",\"age\":\"70-79\",\"population\":28422},{\"state\":\"AZ\",\"age\":\"70-79\",\"population\":466153},{\"state\":\"AR\",\"age\":\"70-79\",\"population\":197985},{\"state\":\"CA\",\"age\":\"70-79\",\"population\":2011678},{\"state\":\"CO\",\"age\":\"70-79\",\"population\":274466},{\"state\":\"CT\",\"age\":\"70-79\",\"population\":217827},{\"state\":\"DE\",\"age\":\"70-79\",\"population\":65369},{\"state\":\"DC\",\"age\":\"70-79\",\"population\":31362},{\"state\":\"FL\",\"age\":\"70-79\",\"population\":1615547},{\"state\":\"GA\",\"age\":\"70-79\",\"population\":528108},{\"state\":\"HI\",\"age\":\"70-79\",\"population\":85345},{\"state\":\"ID\",\"age\":\"70-79\",\"population\":97621},{\"state\":\"IL\",\"age\":\"70-79\",\"population\":728821},{\"state\":\"IN\",\"age\":\"70-79\",\"population\":384788},{\"state\":\"IA\",\"age\":\"70-79\",\"population\":197223},{\"state\":\"KS\",\"age\":\"70-79\",\"population\":166104},{\"state\":\"KY\",\"age\":\"70-79\",\"population\":273961},{\"state\":\"LA\",\"age\":\"70-79\",\"population\":266123},{\"state\":\"ME\",\"age\":\"70-79\",\"population\":97899},{\"state\":\"MD\",\"age\":\"70-79\",\"population\":330736},{\"state\":\"MA\",\"age\":\"70-79\",\"population\":401931},{\"state\":\"MI\",\"age\":\"70-79\",\"population\":619722},{\"state\":\"MN\",\"age\":\"70-79\",\"population\":312906},{\"state\":\"MS\",\"age\":\"70-79\",\"population\":181195},{\"state\":\"MO\",\"age\":\"70-79\",\"population\":388086},{\"state\":\"MT\",\"age\":\"70-79\",\"population\":70528},{\"state\":\"NE\",\"age\":\"70-79\",\"population\":107650},{\"state\":\"NV\",\"age\":\"70-79\",\"population\":173499},{\"state\":\"NH\",\"age\":\"70-79\",\"population\":84791},{\"state\":\"NJ\",\"age\":\"70-79\",\"population\":523620},{\"state\":\"NM\",\"age\":\"70-79\",\"population\":135013},{\"state\":\"NY\",\"age\":\"70-79\",\"population\":1160055},{\"state\":\"NC\",\"age\":\"70-79\",\"population\":609234},{\"state\":\"ND\",\"age\":\"70-79\",\"population\":41348},{\"state\":\"OH\",\"age\":\"70-79\",\"population\":728158},{\"state\":\"OK\",\"age\":\"70-79\",\"population\":239887},{\"state\":\"OR\",\"age\":\"70-79\",\"population\":255809},{\"state\":\"PA\",\"age\":\"70-79\",\"population\":850897},{\"state\":\"RI\",\"age\":\"70-79\",\"population\":63359},{\"state\":\"SC\",\"age\":\"70-79\",\"population\":322073},{\"state\":\"SD\",\"age\":\"70-79\",\"population\":50398},{\"state\":\"TN\",\"age\":\"70-79\",\"population\":414939},{\"state\":\"TX\",\"age\":\"70-79\",\"population\":1291486},{\"state\":\"UT\",\"age\":\"70-79\",\"population\":123674},{\"state\":\"VT\",\"age\":\"70-79\",\"population\":42978},{\"state\":\"VA\",\"age\":\"70-79\",\"population\":475141},{\"state\":\"WA\",\"age\":\"70-79\",\"population\":401094},{\"state\":\"WV\",\"age\":\"70-79\",\"population\":138134},{\"state\":\"WI\",\"age\":\"70-79\",\"population\":350772},{\"state\":\"WY\",\"age\":\"70-79\",\"population\":32819},{\"state\":\"PR\",\"age\":\"70-79\",\"population\":268783},{\"state\":\"AL\",\"age\":\"≥80\",\"population\":174781},{\"state\":\"AK\",\"age\":\"≥80\",\"population\":12503},{\"state\":\"AZ\",\"age\":\"≥80\",\"population\":254716},{\"state\":\"AR\",\"age\":\"≥80\",\"population\":113468},{\"state\":\"CA\",\"age\":\"≥80\",\"population\":1311374},{\"state\":\"CO\",\"age\":\"≥80\",\"population\":155175},{\"state\":\"CT\",\"age\":\"≥80\",\"population\":159475},{\"state\":\"DE\",\"age\":\"≥80\",\"population\":35937},{\"state\":\"DC\",\"age\":\"≥80\",\"population\":19658},{\"state\":\"FL\",\"age\":\"≥80\",\"population\":1019566},{\"state\":\"GA\",\"age\":\"≥80\",\"population\":269182},{\"state\":\"HI\",\"age\":\"≥80\",\"population\":66060},{\"state\":\"ID\",\"age\":\"≥80\",\"population\":54234},{\"state\":\"IL\",\"age\":\"≥80\",\"population\":478948},{\"state\":\"IN\",\"age\":\"≥80\",\"population\":243131},{\"state\":\"IA\",\"age\":\"≥80\",\"population\":143583},{\"state\":\"KS\",\"age\":\"≥80\",\"population\":117637},{\"state\":\"KY\",\"age\":\"≥80\",\"population\":155074},{\"state\":\"LA\",\"age\":\"≥80\",\"population\":152063},{\"state\":\"ME\",\"age\":\"≥80\",\"population\":62007},{\"state\":\"MD\",\"age\":\"≥80\",\"population\":208079},{\"state\":\"MA\",\"age\":\"≥80\",\"population\":288408},{\"state\":\"MI\",\"age\":\"≥80\",\"population\":398303},{\"state\":\"MN\",\"age\":\"≥80\",\"population\":215985},{\"state\":\"MS\",\"age\":\"≥80\",\"population\":100689},{\"state\":\"MO\",\"age\":\"≥80\",\"population\":242554},{\"state\":\"MT\",\"age\":\"≥80\",\"population\":41920},{\"state\":\"NE\",\"age\":\"≥80\",\"population\":78504},{\"state\":\"NV\",\"age\":\"≥80\",\"population\":82273},{\"state\":\"NH\",\"age\":\"≥80\",\"population\":52552},{\"state\":\"NJ\",\"age\":\"≥80\",\"population\":367432},{\"state\":\"NM\",\"age\":\"≥80\",\"population\":74393},{\"state\":\"NY\",\"age\":\"≥80\",\"population\":804091},{\"state\":\"NC\",\"age\":\"≥80\",\"population\":342497},{\"state\":\"ND\",\"age\":\"≥80\",\"population\":32206},{\"state\":\"OH\",\"age\":\"≥80\",\"population\":481890},{\"state\":\"OK\",\"age\":\"≥80\",\"population\":138055},{\"state\":\"OR\",\"age\":\"≥80\",\"population\":157153},{\"state\":\"PA\",\"age\":\"≥80\",\"population\":615069},{\"state\":\"RI\",\"age\":\"≥80\",\"population\":51021},{\"state\":\"SC\",\"age\":\"≥80\",\"population\":166727},{\"state\":\"SD\",\"age\":\"≥80\",\"population\":38540},{\"state\":\"TN\",\"age\":\"≥80\",\"population\":227483},{\"state\":\"TX\",\"age\":\"≥80\",\"population\":732179},{\"state\":\"UT\",\"age\":\"≥80\",\"population\":70711},{\"state\":\"VT\",\"age\":\"≥80\",\"population\":26656},{\"state\":\"VA\",\"age\":\"≥80\",\"population\":274606},{\"state\":\"WA\",\"age\":\"≥80\",\"population\":242589},{\"state\":\"WV\",\"age\":\"≥80\",\"population\":79201},{\"state\":\"WI\",\"age\":\"≥80\",\"population\":241747},{\"state\":\"WY\",\"age\":\"≥80\",\"population\":19682},{\"state\":\"PR\",\"age\":\"≥80\",\"population\":148963}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"state\"],\"y\":[\"population\"],\"s\":[\"age\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"季节\",\"dataType\":\"string\"},{\"name\":\"温度\",\"dataType\":\"number\"}],\"data\":[{\"季节\":\"春\",\"温度\":15},{\"季节\":\"夏\",\"温度\":28},{\"季节\":\"秋\",\"温度\":20},{\"季节\":\"冬\",\"温度\":5}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"季节\"],\"y\":[\"温度\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Continent\",\"dataType\":\"string\"},{\"name\":\"Area\",\"dataType\":\"number\"},{\"name\":\"Land Type\",\"dataType\":\"string\"}],\"data\":[{\"Continent\":\"Asia\",\"Area\":44579000,\"Land Type\":\"Land Mass\"},{\"Continent\":\"Africa\",\"Area\":30370000,\"Land Type\":\"Land Mass\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Continent\"],\"y\":[\"Area\"],\"s\":[\"Land Type\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"年龄段\",\"dataType\":\"string\"},{\"name\":\"用户数\",\"dataType\":\"number\"}],\"data\":[{\"年龄段\":\"18-24岁\",\"用户数\":1500},{\"年龄段\":\"25-34岁\",\"用户数\":2000},{\"年龄段\":\"35-44岁\",\"用户数\":1800},{\"年龄段\":\"45岁以上\",\"用户数\":1200}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"年龄段\"],\"y\":[\"用户数\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"Year\",\"dataType\":\"string\"},{\"name\":\"Sales\",\"dataType\":\"number\"},{\"name\":\"Region\",\"dataType\":\"string\"}],\"data\":[{\"Year\":\"2019\",\"Sales\":2000000,\"Region\":\"USA\"},{\"Year\":\"2020\",\"Sales\":2200000,\"Region\":\"USA\"},{\"Year\":\"2019\",\"Sales\":1500000,\"Region\":\"China\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Year\"],\"y\":[\"Sales\"],\"s\":[\"Region\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"Month\",\"dataType\":\"string\"},{\"name\":\"Revenue\",\"dataType\":\"number\"},{\"name\":\"Department\",\"dataType\":\"string\"}],\"data\":[{\"Month\":\"January\",\"Revenue\":80000,\"Department\":\"Electronics\"},{\"Month\":\"February\",\"Revenue\":75000,\"Department\":\"Furniture\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Month\"],\"y\":[\"Revenue\"],\"s\":[\"Department\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"地区\",\"dataType\":\"string\"},{\"name\":\"销售额\",\"dataType\":\"number\"},{\"name\":\"产品类别\",\"dataType\":\"string\"}],\"data\":[{\"地区\":\"北区\",\"销售额\":750,\"产品类别\":\"电子产品\"},{\"地区\":\"南区\",\"销售额\":300,\"产品类别\":\"生活用品\"},{\"地区\":\"西区\",\"销售额\":900,\"产品类别\":\"服装\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"地区\"],\"y\":[\"销售额\"],\"s\":[\"产品类别\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"Month\",\"dataType\":\"string\"},{\"name\":\"Rainfall\",\"dataType\":\"number\"},{\"name\":\"City\",\"dataType\":\"string\"}],\"data\":[{\"Month\":\"January\",\"Rainfall\":120,\"City\":\"Shanghai\"},{\"Month\":\"February\",\"Rainfall\":85,\"City\":\"Shanghai\"},{\"Month\":\"January\",\"Rainfall\":200,\"City\":\"London\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Month\"],\"y\":[\"Rainfall\"],\"s\":[\"City\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"纪元\",\"dataType\":\"string\"},{\"name\":\"发电量\",\"dataType\":\"number\"},{\"name\":\"能源类型\",\"dataType\":\"string\"}],\"data\":[{\"纪元\":\"2021年\",\"发电量\":5000,\"能源类型\":\"风能\"},{\"纪元\":\"2021年\",\"发电量\":2000,\"能源类型\":\"太阳能\"},{\"纪元\":\"2022年\",\"发电量\":5500,\"能源类型\":\"风能\"},{\"纪元\":\"2022年\",\"发电量\":3000,\"能源类型\":\"太阳能\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"纪元\"],\"y\":[\"发电量\"],\"s\":[\"能源类型\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"site\",\"dataType\":\"string\"},{\"name\":\"yield\",\"dataType\":\"number\"}],\"data\":[{\"site\":\"University Farm\",\"yield\":27},{\"site\":\"Waseca\",\"yield\":48.86667},{\"site\":\"Morris\",\"yield\":27.43334},{\"site\":\"Crookston\",\"yield\":39.93333},{\"site\":\"Grand Rapids\",\"yield\":32.96667},{\"site\":\"Duluth\",\"yield\":28.96667}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"site\"],\"y\":[\"yield\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"季度\",\"dataType\":\"string\"},{\"name\":\"利润\",\"dataType\":\"number\"}],\"data\":[{\"季度\":\"Q1\",\"利润\":500000},{\"季度\":\"Q2\",\"利润\":550000},{\"季度\":\"Q3\",\"利润\":600000},{\"季度\":\"Q4\",\"利润\":650000}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"季度\"],\"y\":[\"利润\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"产品类别\",\"dataType\":\"string\"},{\"name\":\"销量\",\"dataType\":\"number\"}],\"data\":[{\"产品类别\":\"电子产品\",\"销量\":500},{\"产品类别\":\"家居用品\",\"销量\":300},{\"产品类别\":\"服装\",\"销量\":450},{\"产品类别\":\"食品\",\"销量\":600}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"产品类别\"],\"y\":[\"销量\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"}],\"data\":[{\"国家\":\"美国\",\"GDP\":21439453},{\"国家\":\"中国\",\"GDP\":14140163},{\"国家\":\"日本\",\"GDP\":5177086},{\"国家\":\"德国\",\"GDP\":3885000}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"GDP\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"Product\",\"dataType\":\"string\"},{\"name\":\"Sales\",\"dataType\":\"number\"}],\"data\":[{\"Product\":\"Laptop\",\"Sales\":250},{\"Product\":\"Tablet\",\"Sales\":150},{\"Product\":\"Smartphone\",\"Sales\":300}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Product\"],\"y\":[\"Sales\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"},{\"name\":\"洲\",\"dataType\":\"string\"}],\"data\":[{\"国家\":\"中国\",\"GDP\":14342903,\"洲\":\"亚洲\"},{\"国家\":\"美国\",\"GDP\":21433300,\"洲\":\"北美洲\"},{\"国家\":\"德国\",\"GDP\":3845630,\"洲\":\"欧洲\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"GDP\"],\"s\":[\"洲\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"},{\"name\":\"Year\",\"dataType\":\"string\"}],\"data\":[{\"Country\":\"USA\",\"GDP\":21433000,\"Year\":\"2022\"},{\"Country\":\"China\",\"GDP\":14342000,\"Year\":\"2022\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"GDP\"],\"s\":[\"Year\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"城市\",\"dataType\":\"string\"},{\"name\":\"平均气温\",\"dataType\":\"number\"}],\"data\":[{\"城市\":\"伦敦\",\"平均气温\":11},{\"城市\":\"东京\",\"平均气温\":15},{\"城市\":\"纽约\",\"平均气温\":13},{\"城市\":\"巴黎\",\"平均气温\":12},{\"城市\":\"悉尼\",\"平均气温\":17}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"平均气温\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"state\",\"dataType\":\"string\"},{\"name\":\"population\",\"dataType\":\"number\"},{\"name\":\"age\",\"dataType\":\"string\"}],\"data\":[{\"state\":\"AL\",\"age\":\"<10\",\"population\":598478},{\"state\":\"AK\",\"age\":\"<10\",\"population\":106741},{\"state\":\"AZ\",\"age\":\"<10\",\"population\":892083},{\"state\":\"AR\",\"age\":\"<10\",\"population\":392177},{\"state\":\"CA\",\"age\":\"<10\",\"population\":5038433},{\"state\":\"CO\",\"age\":\"<10\",\"population\":690830},{\"state\":\"CT\",\"age\":\"<10\",\"population\":399369},{\"state\":\"DE\",\"age\":\"<10\",\"population\":112177},{\"state\":\"DC\",\"age\":\"<10\",\"population\":74377},{\"state\":\"FL\",\"age\":\"<10\",\"population\":2211012},{\"state\":\"GA\",\"age\":\"<10\",\"population\":1363631},{\"state\":\"HI\",\"age\":\"<10\",\"population\":176484},{\"state\":\"ID\",\"age\":\"<10\",\"population\":236658},{\"state\":\"IL\",\"age\":\"<10\",\"population\":1619682},{\"state\":\"IN\",\"age\":\"<10\",\"population\":863029},{\"state\":\"IA\",\"age\":\"<10\",\"population\":401712},{\"state\":\"KS\",\"age\":\"<10\",\"population\":401751},{\"state\":\"KY\",\"age\":\"<10\",\"population\":555615},{\"state\":\"LA\",\"age\":\"<10\",\"population\":622061},{\"state\":\"ME\",\"age\":\"<10\",\"population\":137954},{\"state\":\"MD\",\"age\":\"<10\",\"population\":741952},{\"state\":\"MA\",\"age\":\"<10\",\"population\":737748},{\"state\":\"MI\",\"age\":\"<10\",\"population\":1181424},{\"state\":\"MN\",\"age\":\"<10\",\"population\":711604},{\"state\":\"MS\",\"age\":\"<10\",\"population\":400288},{\"state\":\"MO\",\"age\":\"<10\",\"population\":763948},{\"state\":\"MT\",\"age\":\"<10\",\"population\":126020},{\"state\":\"NE\",\"age\":\"<10\",\"population\":263518},{\"state\":\"NV\",\"age\":\"<10\",\"population\":369362},{\"state\":\"NH\",\"age\":\"<10\",\"population\":138762},{\"state\":\"NJ\",\"age\":\"<10\",\"population\":1079136},{\"state\":\"NM\",\"age\":\"<10\",\"population\":276468},{\"state\":\"NY\",\"age\":\"<10\",\"population\":2319945},{\"state\":\"NC\",\"age\":\"<10\",\"population\":1250298},{\"state\":\"ND\",\"age\":\"<10\",\"population\":99477},{\"state\":\"OH\",\"age\":\"<10\",\"population\":1422838},{\"state\":\"OK\",\"age\":\"<10\",\"population\":534481},{\"state\":\"OR\",\"age\":\"<10\",\"population\":474456},{\"state\":\"PA\",\"age\":\"<10\",\"population\":1458931},{\"state\":\"RI\",\"age\":\"<10\",\"population\":111377},{\"state\":\"SC\",\"age\":\"<10\",\"population\":599591},{\"state\":\"SD\",\"age\":\"<10\",\"population\":120366},{\"state\":\"TN\",\"age\":\"<10\",\"population\":818404},{\"state\":\"TX\",\"age\":\"<10\",\"population\":3983091},{\"state\":\"UT\",\"age\":\"<10\",\"population\":513515},{\"state\":\"VT\",\"age\":\"<10\",\"population\":63768},{\"state\":\"VA\",\"age\":\"<10\",\"population\":1033629},{\"state\":\"WA\",\"age\":\"<10\",\"population\":895790},{\"state\":\"WV\",\"age\":\"<10\",\"population\":207017},{\"state\":\"WI\",\"age\":\"<10\",\"population\":705648},{\"state\":\"WY\",\"age\":\"<10\",\"population\":78217},{\"state\":\"PR\",\"age\":\"<10\",\"population\":389428},{\"state\":\"AL\",\"age\":\"10-19\",\"population\":638789},{\"state\":\"AK\",\"age\":\"10-19\",\"population\":99926},{\"state\":\"AZ\",\"age\":\"10-19\",\"population\":912735},{\"state\":\"AR\",\"age\":\"10-19\",\"population\":397185},{\"state\":\"CA\",\"age\":\"10-19\",\"population\":5170341},{\"state\":\"CO\",\"age\":\"10-19\",\"population\":697447},{\"state\":\"CT\",\"age\":\"10-19\",\"population\":481065},{\"state\":\"DE\",\"age\":\"10-19\",\"population\":117854},{\"state\":\"DC\",\"age\":\"10-19\",\"population\":62783},{\"state\":\"FL\",\"age\":\"10-19\",\"population\":2331102},{\"state\":\"GA\",\"age\":\"10-19\",\"population\":1421557},{\"state\":\"HI\",\"age\":\"10-19\",\"population\":163559},{\"state\":\"ID\",\"age\":\"10-19\",\"population\":239509},{\"state\":\"IL\",\"age\":\"10-19\",\"population\":1715984},{\"state\":\"IN\",\"age\":\"10-19\",\"population\":905594},{\"state\":\"IA\",\"age\":\"10-19\",\"population\":418667},{\"state\":\"KS\",\"age\":\"10-19\",\"population\":402092},{\"state\":\"KY\",\"age\":\"10-19\",\"population\":575866},{\"state\":\"LA\",\"age\":\"10-19\",\"population\":613633},{\"state\":\"ME\",\"age\":\"10-19\",\"population\":155774},{\"state\":\"MD\",\"age\":\"10-19\",\"population\":764730},{\"state\":\"MA\",\"age\":\"10-19\",\"population\":862371},{\"state\":\"MI\",\"age\":\"10-19\",\"population\":1324071},{\"state\":\"MN\",\"age\":\"10-19\",\"population\":714399},{\"state\":\"MS\",\"age\":\"10-19\",\"population\":421329},{\"state\":\"MO\",\"age\":\"10-19\",\"population\":792935},{\"state\":\"MT\",\"age\":\"10-19\",\"population\":126294},{\"state\":\"NE\",\"age\":\"10-19\",\"population\":257610},{\"state\":\"NV\",\"age\":\"10-19\",\"population\":360263},{\"state\":\"NH\",\"age\":\"10-19\",\"population\":167495},{\"state\":\"NJ\",\"age\":\"10-19\",\"population\":1153625},{\"state\":\"NM\",\"age\":\"10-19\",\"population\":282662},{\"state\":\"NY\",\"age\":\"10-19\",\"population\":2445591},{\"state\":\"NC\",\"age\":\"10-19\",\"population\":1310398},{\"state\":\"ND\",\"age\":\"10-19\",\"population\":91069},{\"state\":\"OH\",\"age\":\"10-19\",\"population\":1530264},{\"state\":\"OK\",\"age\":\"10-19\",\"population\":522282},{\"state\":\"OR\",\"age\":\"10-19\",\"population\":485345},{\"state\":\"PA\",\"age\":\"10-19\",\"population\":1608018},{\"state\":\"RI\",\"age\":\"10-19\",\"population\":136885},{\"state\":\"SC\",\"age\":\"10-19\",\"population\":619144},{\"state\":\"SD\",\"age\":\"10-19\",\"population\":113383},{\"state\":\"TN\",\"age\":\"10-19\",\"population\":842873},{\"state\":\"TX\",\"age\":\"10-19\",\"population\":3910528},{\"state\":\"UT\",\"age\":\"10-19\",\"population\":479126},{\"state\":\"VT\",\"age\":\"10-19\",\"population\":79351},{\"state\":\"VA\",\"age\":\"10-19\",\"population\":1065461},{\"state\":\"WA\",\"age\":\"10-19\",\"population\":882812},{\"state\":\"WV\",\"age\":\"10-19\",\"population\":218547},{\"state\":\"WI\",\"age\":\"10-19\",\"population\":755224},{\"state\":\"WY\",\"age\":\"10-19\",\"population\":75535},{\"state\":\"PR\",\"age\":\"10-19\",\"population\":479749},{\"state\":\"AL\",\"age\":\"20-29\",\"population\":661666},{\"state\":\"AK\",\"age\":\"20-29\",\"population\":120674},{\"state\":\"AZ\",\"age\":\"20-29\",\"population\":939804},{\"state\":\"AR\",\"age\":\"20-29\",\"population\":399698},{\"state\":\"CA\",\"age\":\"20-29\",\"population\":5809455},{\"state\":\"CO\",\"age\":\"20-29\",\"population\":780508},{\"state\":\"CT\",\"age\":\"20-29\",\"population\":462323},{\"state\":\"DE\",\"age\":\"20-29\",\"population\":127554},{\"state\":\"DC\",\"age\":\"20-29\",\"population\":136976},{\"state\":\"FL\",\"age\":\"20-29\",\"population\":2597830},{\"state\":\"GA\",\"age\":\"20-29\",\"population\":1418696},{\"state\":\"HI\",\"age\":\"20-29\",\"population\":204336},{\"state\":\"ID\",\"age\":\"20-29\",\"population\":218684},{\"state\":\"IL\",\"age\":\"20-29\",\"population\":1789739},{\"state\":\"IN\",\"age\":\"20-29\",\"population\":905590},{\"state\":\"IA\",\"age\":\"20-29\",\"population\":419456},{\"state\":\"KS\",\"age\":\"20-29\",\"population\":406956},{\"state\":\"KY\",\"age\":\"20-29\",\"population\":593819},{\"state\":\"LA\",\"age\":\"20-29\",\"population\":683606},{\"state\":\"ME\",\"age\":\"20-29\",\"population\":156359},{\"state\":\"MD\",\"age\":\"20-29\",\"population\":815346},{\"state\":\"MA\",\"age\":\"20-29\",\"population\":971340},{\"state\":\"MI\",\"age\":\"20-29\",\"population\":1338179},{\"state\":\"MN\",\"age\":\"20-29\",\"population\":728222},{\"state\":\"MS\",\"age\":\"20-29\",\"population\":414195},{\"state\":\"MO\",\"age\":\"20-29\",\"population\":831725},{\"state\":\"MT\",\"age\":\"20-29\",\"population\":136346},{\"state\":\"NE\",\"age\":\"20-29\",\"population\":260646},{\"state\":\"NV\",\"age\":\"20-29\",\"population\":392834},{\"state\":\"NH\",\"age\":\"20-29\",\"population\":167554},{\"state\":\"NJ\",\"age\":\"20-29\",\"population\":1139927},{\"state\":\"NM\",\"age\":\"20-29\",\"population\":289801},{\"state\":\"NY\",\"age\":\"20-29\",\"population\":2894266},{\"state\":\"NC\",\"age\":\"20-29\",\"population\":1350242},{\"state\":\"ND\",\"age\":\"20-29\",\"population\":124509},{\"state\":\"OH\",\"age\":\"20-29\",\"population\":1535538},{\"state\":\"OK\",\"age\":\"20-29\",\"population\":552528},{\"state\":\"OR\",\"age\":\"20-29\",\"population\":538596},{\"state\":\"PA\",\"age\":\"20-29\",\"population\":1712448},{\"state\":\"RI\",\"age\":\"20-29\",\"population\":153674},{\"state\":\"SC\",\"age\":\"20-29\",\"population\":667523},{\"state\":\"SD\",\"age\":\"20-29\",\"population\":116748},{\"state\":\"TN\",\"age\":\"20-29\",\"population\":895337},{\"state\":\"TX\",\"age\":\"20-29\",\"population\":3946447},{\"state\":\"UT\",\"age\":\"20-29\",\"population\":465219},{\"state\":\"VT\",\"age\":\"20-29\",\"population\":81765},{\"state\":\"VA\",\"age\":\"20-29\",\"population\":1170634},{\"state\":\"WA\",\"age\":\"20-29\",\"population\":1004428},{\"state\":\"WV\",\"age\":\"20-29\",\"population\":232027},{\"state\":\"WI\",\"age\":\"20-29\",\"population\":760961},{\"state\":\"WY\",\"age\":\"20-29\",\"population\":82898},{\"state\":\"PR\",\"age\":\"20-29\",\"population\":480184},{\"state\":\"AL\",\"age\":\"30-39\",\"population\":603013},{\"state\":\"AK\",\"age\":\"30-39\",\"population\":102008},{\"state\":\"AZ\",\"age\":\"30-39\",\"population\":857054},{\"state\":\"AR\",\"age\":\"30-39\",\"population\":372998},{\"state\":\"CA\",\"age\":\"30-39\",\"population\":5354112},{\"state\":\"CO\",\"age\":\"30-39\",\"population\":766382},{\"state\":\"CT\",\"age\":\"30-39\",\"population\":424890},{\"state\":\"DE\",\"age\":\"30-39\",\"population\":114063},{\"state\":\"DC\",\"age\":\"30-39\",\"population\":121520},{\"state\":\"FL\",\"age\":\"30-39\",\"population\":2416176},{\"state\":\"GA\",\"age\":\"30-39\",\"population\":1357210},{\"state\":\"HI\",\"age\":\"30-39\",\"population\":187590},{\"state\":\"ID\",\"age\":\"30-39\",\"population\":209500},{\"state\":\"IL\",\"age\":\"30-39\",\"population\":1721954},{\"state\":\"IN\",\"age\":\"30-39\",\"population\":827086},{\"state\":\"IA\",\"age\":\"30-39\",\"population\":383638},{\"state\":\"KS\",\"age\":\"30-39\",\"population\":368732},{\"state\":\"KY\",\"age\":\"30-39\",\"population\":558201},{\"state\":\"LA\",\"age\":\"30-39\",\"population\":615411},{\"state\":\"ME\",\"age\":\"30-39\",\"population\":147695},{\"state\":\"MD\",\"age\":\"30-39\",\"population\":784097},{\"state\":\"MA\",\"age\":\"30-39\",\"population\":847306},{\"state\":\"MI\",\"age\":\"30-39\",\"population\":1162186},{\"state\":\"MN\",\"age\":\"30-39\",\"population\":715583},{\"state\":\"MS\",\"age\":\"30-39\",\"population\":374724},{\"state\":\"MO\",\"age\":\"30-39\",\"population\":763002},{\"state\":\"MT\",\"age\":\"30-39\",\"population\":125004},{\"state\":\"NE\",\"age\":\"30-39\",\"population\":244236},{\"state\":\"NV\",\"age\":\"30-39\",\"population\":390261},{\"state\":\"NH\",\"age\":\"30-39\",\"population\":151409},{\"state\":\"NJ\",\"age\":\"30-39\",\"population\":1143452},{\"state\":\"NM\",\"age\":\"30-39\",\"population\":260579},{\"state\":\"NY\",\"age\":\"30-39\",\"population\":2605355},{\"state\":\"NC\",\"age\":\"30-39\",\"population\":1268976},{\"state\":\"ND\",\"age\":\"30-39\",\"population\":94713},{\"state\":\"OH\",\"age\":\"30-39\",\"population\":1398724},{\"state\":\"OK\",\"age\":\"30-39\",\"population\":501392},{\"state\":\"OR\",\"age\":\"30-39\",\"population\":537767},{\"state\":\"PA\",\"age\":\"30-39\",\"population\":1520409},{\"state\":\"RI\",\"age\":\"30-39\",\"population\":126503},{\"state\":\"SC\",\"age\":\"30-39\",\"population\":596491},{\"state\":\"SD\",\"age\":\"30-39\",\"population\":105499},{\"state\":\"TN\",\"age\":\"30-39\",\"population\":837313},{\"state\":\"TX\",\"age\":\"30-39\",\"population\":3770534},{\"state\":\"UT\",\"age\":\"30-39\",\"population\":436010},{\"state\":\"VT\",\"age\":\"30-39\",\"population\":70092},{\"state\":\"VA\",\"age\":\"30-39\",\"population\":1112111},{\"state\":\"WA\",\"age\":\"30-39\",\"population\":970613},{\"state\":\"WV\",\"age\":\"30-39\",\"population\":220494},{\"state\":\"WI\",\"age\":\"30-39\",\"population\":714479},{\"state\":\"WY\",\"age\":\"30-39\",\"population\":76912},{\"state\":\"PR\",\"age\":\"30-39\",\"population\":441842},{\"state\":\"AL\",\"age\":\"40-49\",\"population\":625599},{\"state\":\"AK\",\"age\":\"40-49\",\"population\":91539},{\"state\":\"AZ\",\"age\":\"40-49\",\"population\":833290},{\"state\":\"AR\",\"age\":\"40-49\",\"population\":370157},{\"state\":\"CA\",\"age\":\"40-49\",\"population\":5179258},{\"state\":\"CO\",\"age\":\"40-49\",\"population\":705450},{\"state\":\"CT\",\"age\":\"40-49\",\"population\":496265},{\"state\":\"DE\",\"age\":\"40-49\",\"population\":117588},{\"state\":\"DC\",\"age\":\"40-49\",\"population\":80570},{\"state\":\"FL\",\"age\":\"40-49\",\"population\":2575576},{\"state\":\"GA\",\"age\":\"40-49\",\"population\":1404698},{\"state\":\"HI\",\"age\":\"40-49\",\"population\":176904},{\"state\":\"ID\",\"age\":\"40-49\",\"population\":194678},{\"state\":\"IL\",\"age\":\"40-49\",\"population\":1697069},{\"state\":\"IN\",\"age\":\"40-49\",\"population\":844059},{\"state\":\"IA\",\"age\":\"40-49\",\"population\":370719},{\"state\":\"KS\",\"age\":\"40-49\",\"population\":344427},{\"state\":\"KY\",\"age\":\"40-49\",\"population\":580553},{\"state\":\"LA\",\"age\":\"40-49\",\"population\":571991},{\"state\":\"ME\",\"age\":\"40-49\",\"population\":176908},{\"state\":\"MD\",\"age\":\"40-49\",\"population\":815875},{\"state\":\"MA\",\"age\":\"40-49\",\"population\":916106},{\"state\":\"MI\",\"age\":\"40-49\",\"population\":1283122},{\"state\":\"MN\",\"age\":\"40-49\",\"population\":692201},{\"state\":\"MS\",\"age\":\"40-49\",\"population\":377165},{\"state\":\"MO\",\"age\":\"40-49\",\"population\":750989},{\"state\":\"MT\",\"age\":\"40-49\",\"population\":116502},{\"state\":\"NE\",\"age\":\"40-49\",\"population\":222479},{\"state\":\"NV\",\"age\":\"40-49\",\"population\":387272},{\"state\":\"NH\",\"age\":\"40-49\",\"population\":182703},{\"state\":\"NJ\",\"age\":\"40-49\",\"population\":1254602},{\"state\":\"NM\",\"age\":\"40-49\",\"population\":244346},{\"state\":\"NY\",\"age\":\"40-49\",\"population\":2617327},{\"state\":\"NC\",\"age\":\"40-49\",\"population\":1357746},{\"state\":\"ND\",\"age\":\"40-49\",\"population\":80327},{\"state\":\"OH\",\"age\":\"40-49\",\"population\":1490959},{\"state\":\"OK\",\"age\":\"40-49\",\"population\":469410},{\"state\":\"OR\",\"age\":\"40-49\",\"population\":507826},{\"state\":\"PA\",\"age\":\"40-49\",\"population\":1645291},{\"state\":\"RI\",\"age\":\"40-49\",\"population\":137892},{\"state\":\"SC\",\"age\":\"40-49\",\"population\":619792},{\"state\":\"SD\",\"age\":\"40-49\",\"population\":96288},{\"state\":\"TN\",\"age\":\"40-49\",\"population\":866343},{\"state\":\"TX\",\"age\":\"40-49\",\"population\":3545746},{\"state\":\"UT\",\"age\":\"40-49\",\"population\":328569},{\"state\":\"VT\",\"age\":\"40-49\",\"population\":79982},{\"state\":\"VA\",\"age\":\"40-49\",\"population\":1134928},{\"state\":\"WA\",\"age\":\"40-49\",\"population\":921205},{\"state\":\"WV\",\"age\":\"40-49\",\"population\":238218},{\"state\":\"WI\",\"age\":\"40-49\",\"population\":732280},{\"state\":\"WY\",\"age\":\"40-49\",\"population\":68464},{\"state\":\"PR\",\"age\":\"40-49\",\"population\":456009},{\"state\":\"AL\",\"age\":\"50-59\",\"population\":673864},{\"state\":\"AK\",\"age\":\"50-59\",\"population\":104569},{\"state\":\"AZ\",\"age\":\"50-59\",\"population\":834858},{\"state\":\"AR\",\"age\":\"50-59\",\"population\":395070},{\"state\":\"CA\",\"age\":\"50-59\",\"population\":5042094},{\"state\":\"CO\",\"age\":\"50-59\",\"population\":725661},{\"state\":\"CT\",\"age\":\"50-59\",\"population\":546361},{\"state\":\"DE\",\"age\":\"50-59\",\"population\":133331},{\"state\":\"DC\",\"age\":\"50-59\",\"population\":74779},{\"state\":\"FL\",\"age\":\"50-59\",\"population\":2762983},{\"state\":\"GA\",\"age\":\"50-59\",\"population\":1337985},{\"state\":\"HI\",\"age\":\"50-59\",\"population\":188438},{\"state\":\"ID\",\"age\":\"50-59\",\"population\":205170},{\"state\":\"IL\",\"age\":\"50-59\",\"population\":1773366},{\"state\":\"IN\",\"age\":\"50-59\",\"population\":911778},{\"state\":\"IA\",\"age\":\"50-59\",\"population\":427554},{\"state\":\"KS\",\"age\":\"50-59\",\"population\":389834},{\"state\":\"KY\",\"age\":\"50-59\",\"population\":623164},{\"state\":\"LA\",\"age\":\"50-59\",\"population\":631936},{\"state\":\"ME\",\"age\":\"50-59\",\"population\":215787},{\"state\":\"MD\",\"age\":\"50-59\",\"population\":862778},{\"state\":\"MA\",\"age\":\"50-59\",\"population\":979128},{\"state\":\"MI\",\"age\":\"50-59\",\"population\":1454462},{\"state\":\"MN\",\"age\":\"50-59\",\"population\":782655},{\"state\":\"MS\",\"age\":\"50-59\",\"population\":400164},{\"state\":\"MO\",\"age\":\"50-59\",\"population\":857534},{\"state\":\"MT\",\"age\":\"50-59\",\"population\":149800},{\"state\":\"NE\",\"age\":\"50-59\",\"population\":250911},{\"state\":\"NV\",\"age\":\"50-59\",\"population\":373757},{\"state\":\"NH\",\"age\":\"50-59\",\"population\":217950},{\"state\":\"NJ\",\"age\":\"50-59\",\"population\":1307263},{\"state\":\"NM\",\"age\":\"50-59\",\"population\":280363},{\"state\":\"NY\",\"age\":\"50-59\",\"population\":2755620},{\"state\":\"NC\",\"age\":\"50-59\",\"population\":1356117},{\"state\":\"ND\",\"age\":\"50-59\",\"population\":98688},{\"state\":\"OH\",\"age\":\"50-59\",\"population\":1677794},{\"state\":\"OK\",\"age\":\"50-59\",\"population\":512850},{\"state\":\"OR\",\"age\":\"50-59\",\"population\":534421},{\"state\":\"PA\",\"age\":\"50-59\",\"population\":1881378},{\"state\":\"RI\",\"age\":\"50-59\",\"population\":156127},{\"state\":\"SC\",\"age\":\"50-59\",\"population\":663408},{\"state\":\"SD\",\"age\":\"50-59\",\"population\":117012},{\"state\":\"TN\",\"age\":\"50-59\",\"population\":904272},{\"state\":\"TX\",\"age\":\"50-59\",\"population\":3344930},{\"state\":\"UT\",\"age\":\"50-59\",\"population\":301596},{\"state\":\"VT\",\"age\":\"50-59\",\"population\":99521},{\"state\":\"VA\",\"age\":\"50-59\",\"population\":1162028},{\"state\":\"WA\",\"age\":\"50-59\",\"population\":970407},{\"state\":\"WV\",\"age\":\"50-59\",\"population\":269346},{\"state\":\"WI\",\"age\":\"50-59\",\"population\":848672},{\"state\":\"WY\",\"age\":\"50-59\",\"population\":81018},{\"state\":\"PR\",\"age\":\"50-59\",\"population\":452503},{\"state\":\"AL\",\"age\":\"60-69\",\"population\":548376},{\"state\":\"AK\",\"age\":\"60-69\",\"population\":70473},{\"state\":\"AZ\",\"age\":\"60-69\",\"population\":737884},{\"state\":\"AR\",\"age\":\"60-69\",\"population\":329734},{\"state\":\"CA\",\"age\":\"60-69\",\"population\":3737461},{\"state\":\"CO\",\"age\":\"60-69\",\"population\":563376},{\"state\":\"CT\",\"age\":\"60-69\",\"population\":400995},{\"state\":\"DE\",\"age\":\"60-69\",\"population\":110822},{\"state\":\"DC\",\"age\":\"60-69\",\"population\":56984},{\"state\":\"FL\",\"age\":\"60-69\",\"population\":2404659},{\"state\":\"GA\",\"age\":\"60-69\",\"population\":998253},{\"state\":\"HI\",\"age\":\"60-69\",\"population\":164957},{\"state\":\"ID\",\"age\":\"60-69\",\"population\":179429},{\"state\":\"IL\",\"age\":\"60-69\",\"population\":1326121},{\"state\":\"IN\",\"age\":\"60-69\",\"population\":704523},{\"state\":\"IA\",\"age\":\"60-69\",\"population\":344037},{\"state\":\"KS\",\"age\":\"60-69\",\"population\":300759},{\"state\":\"KY\",\"age\":\"60-69\",\"population\":495736},{\"state\":\"LA\",\"age\":\"60-69\",\"population\":488846},{\"state\":\"ME\",\"age\":\"60-69\",\"population\":179540},{\"state\":\"MD\",\"age\":\"60-69\",\"population\":636309},{\"state\":\"MA\",\"age\":\"60-69\",\"population\":737805},{\"state\":\"MI\",\"age\":\"60-69\",\"population\":1148131},{\"state\":\"MN\",\"age\":\"60-69\",\"population\":577313},{\"state\":\"MS\",\"age\":\"60-69\",\"population\":319443},{\"state\":\"MO\",\"age\":\"60-69\",\"population\":668878},{\"state\":\"MT\",\"age\":\"60-69\",\"population\":130977},{\"state\":\"NE\",\"age\":\"60-69\",\"population\":195705},{\"state\":\"NV\",\"age\":\"60-69\",\"population\":309651},{\"state\":\"NH\",\"age\":\"60-69\",\"population\":164287},{\"state\":\"NJ\",\"age\":\"60-69\",\"population\":946399},{\"state\":\"NM\",\"age\":\"60-69\",\"population\":239044},{\"state\":\"NY\",\"age\":\"60-69\",\"population\":2095207},{\"state\":\"NC\",\"age\":\"60-69\",\"population\":1095320},{\"state\":\"ND\",\"age\":\"60-69\",\"population\":73825},{\"state\":\"OH\",\"age\":\"60-69\",\"population\":1320776},{\"state\":\"OK\",\"age\":\"60-69\",\"population\":404704},{\"state\":\"OR\",\"age\":\"60-69\",\"population\":490894},{\"state\":\"PA\",\"age\":\"60-69\",\"population\":1491536},{\"state\":\"RI\",\"age\":\"60-69\",\"population\":117653},{\"state\":\"SC\",\"age\":\"60-69\",\"population\":579856},{\"state\":\"SD\",\"age\":\"60-69\",\"population\":92824},{\"state\":\"TN\",\"age\":\"60-69\",\"population\":741045},{\"state\":\"TX\",\"age\":\"60-69\",\"population\":2431494},{\"state\":\"UT\",\"age\":\"60-69\",\"population\":230007},{\"state\":\"VT\",\"age\":\"60-69\",\"population\":82136},{\"state\":\"VA\",\"age\":\"60-69\",\"population\":881763},{\"state\":\"WA\",\"age\":\"60-69\",\"population\":784208},{\"state\":\"WV\",\"age\":\"60-69\",\"population\":243108},{\"state\":\"WI\",\"age\":\"60-69\",\"population\":645015},{\"state\":\"WY\",\"age\":\"60-69\",\"population\":67484},{\"state\":\"PR\",\"age\":\"60-69\",\"population\":411924},{\"state\":\"AL\",\"age\":\"70-79\",\"population\":316598},{\"state\":\"AK\",\"age\":\"70-79\",\"population\":28422},{\"state\":\"AZ\",\"age\":\"70-79\",\"population\":466153},{\"state\":\"AR\",\"age\":\"70-79\",\"population\":197985},{\"state\":\"CA\",\"age\":\"70-79\",\"population\":2011678},{\"state\":\"CO\",\"age\":\"70-79\",\"population\":274466},{\"state\":\"CT\",\"age\":\"70-79\",\"population\":217827},{\"state\":\"DE\",\"age\":\"70-79\",\"population\":65369},{\"state\":\"DC\",\"age\":\"70-79\",\"population\":31362},{\"state\":\"FL\",\"age\":\"70-79\",\"population\":1615547},{\"state\":\"GA\",\"age\":\"70-79\",\"population\":528108},{\"state\":\"HI\",\"age\":\"70-79\",\"population\":85345},{\"state\":\"ID\",\"age\":\"70-79\",\"population\":97621},{\"state\":\"IL\",\"age\":\"70-79\",\"population\":728821},{\"state\":\"IN\",\"age\":\"70-79\",\"population\":384788},{\"state\":\"IA\",\"age\":\"70-79\",\"population\":197223},{\"state\":\"KS\",\"age\":\"70-79\",\"population\":166104},{\"state\":\"KY\",\"age\":\"70-79\",\"population\":273961},{\"state\":\"LA\",\"age\":\"70-79\",\"population\":266123},{\"state\":\"ME\",\"age\":\"70-79\",\"population\":97899},{\"state\":\"MD\",\"age\":\"70-79\",\"population\":330736},{\"state\":\"MA\",\"age\":\"70-79\",\"population\":401931},{\"state\":\"MI\",\"age\":\"70-79\",\"population\":619722},{\"state\":\"MN\",\"age\":\"70-79\",\"population\":312906},{\"state\":\"MS\",\"age\":\"70-79\",\"population\":181195},{\"state\":\"MO\",\"age\":\"70-79\",\"population\":388086},{\"state\":\"MT\",\"age\":\"70-79\",\"population\":70528},{\"state\":\"NE\",\"age\":\"70-79\",\"population\":107650},{\"state\":\"NV\",\"age\":\"70-79\",\"population\":173499},{\"state\":\"NH\",\"age\":\"70-79\",\"population\":84791},{\"state\":\"NJ\",\"age\":\"70-79\",\"population\":523620},{\"state\":\"NM\",\"age\":\"70-79\",\"population\":135013},{\"state\":\"NY\",\"age\":\"70-79\",\"population\":1160055},{\"state\":\"NC\",\"age\":\"70-79\",\"population\":609234},{\"state\":\"ND\",\"age\":\"70-79\",\"population\":41348},{\"state\":\"OH\",\"age\":\"70-79\",\"population\":728158},{\"state\":\"OK\",\"age\":\"70-79\",\"population\":239887},{\"state\":\"OR\",\"age\":\"70-79\",\"population\":255809},{\"state\":\"PA\",\"age\":\"70-79\",\"population\":850897},{\"state\":\"RI\",\"age\":\"70-79\",\"population\":63359},{\"state\":\"SC\",\"age\":\"70-79\",\"population\":322073},{\"state\":\"SD\",\"age\":\"70-79\",\"population\":50398},{\"state\":\"TN\",\"age\":\"70-79\",\"population\":414939},{\"state\":\"TX\",\"age\":\"70-79\",\"population\":1291486},{\"state\":\"UT\",\"age\":\"70-79\",\"population\":123674},{\"state\":\"VT\",\"age\":\"70-79\",\"population\":42978},{\"state\":\"VA\",\"age\":\"70-79\",\"population\":475141},{\"state\":\"WA\",\"age\":\"70-79\",\"population\":401094},{\"state\":\"WV\",\"age\":\"70-79\",\"population\":138134},{\"state\":\"WI\",\"age\":\"70-79\",\"population\":350772},{\"state\":\"WY\",\"age\":\"70-79\",\"population\":32819},{\"state\":\"PR\",\"age\":\"70-79\",\"population\":268783},{\"state\":\"AL\",\"age\":\"≥80\",\"population\":174781},{\"state\":\"AK\",\"age\":\"≥80\",\"population\":12503},{\"state\":\"AZ\",\"age\":\"≥80\",\"population\":254716},{\"state\":\"AR\",\"age\":\"≥80\",\"population\":113468},{\"state\":\"CA\",\"age\":\"≥80\",\"population\":1311374},{\"state\":\"CO\",\"age\":\"≥80\",\"population\":155175},{\"state\":\"CT\",\"age\":\"≥80\",\"population\":159475},{\"state\":\"DE\",\"age\":\"≥80\",\"population\":35937},{\"state\":\"DC\",\"age\":\"≥80\",\"population\":19658},{\"state\":\"FL\",\"age\":\"≥80\",\"population\":1019566},{\"state\":\"GA\",\"age\":\"≥80\",\"population\":269182},{\"state\":\"HI\",\"age\":\"≥80\",\"population\":66060},{\"state\":\"ID\",\"age\":\"≥80\",\"population\":54234},{\"state\":\"IL\",\"age\":\"≥80\",\"population\":478948},{\"state\":\"IN\",\"age\":\"≥80\",\"population\":243131},{\"state\":\"IA\",\"age\":\"≥80\",\"population\":143583},{\"state\":\"KS\",\"age\":\"≥80\",\"population\":117637},{\"state\":\"KY\",\"age\":\"≥80\",\"population\":155074},{\"state\":\"LA\",\"age\":\"≥80\",\"population\":152063},{\"state\":\"ME\",\"age\":\"≥80\",\"population\":62007},{\"state\":\"MD\",\"age\":\"≥80\",\"population\":208079},{\"state\":\"MA\",\"age\":\"≥80\",\"population\":288408},{\"state\":\"MI\",\"age\":\"≥80\",\"population\":398303},{\"state\":\"MN\",\"age\":\"≥80\",\"population\":215985},{\"state\":\"MS\",\"age\":\"≥80\",\"population\":100689},{\"state\":\"MO\",\"age\":\"≥80\",\"population\":242554},{\"state\":\"MT\",\"age\":\"≥80\",\"population\":41920},{\"state\":\"NE\",\"age\":\"≥80\",\"population\":78504},{\"state\":\"NV\",\"age\":\"≥80\",\"population\":82273},{\"state\":\"NH\",\"age\":\"≥80\",\"population\":52552},{\"state\":\"NJ\",\"age\":\"≥80\",\"population\":367432},{\"state\":\"NM\",\"age\":\"≥80\",\"population\":74393},{\"state\":\"NY\",\"age\":\"≥80\",\"population\":804091},{\"state\":\"NC\",\"age\":\"≥80\",\"population\":342497},{\"state\":\"ND\",\"age\":\"≥80\",\"population\":32206},{\"state\":\"OH\",\"age\":\"≥80\",\"population\":481890},{\"state\":\"OK\",\"age\":\"≥80\",\"population\":138055},{\"state\":\"OR\",\"age\":\"≥80\",\"population\":157153},{\"state\":\"PA\",\"age\":\"≥80\",\"population\":615069},{\"state\":\"RI\",\"age\":\"≥80\",\"population\":51021},{\"state\":\"SC\",\"age\":\"≥80\",\"population\":166727},{\"state\":\"SD\",\"age\":\"≥80\",\"population\":38540},{\"state\":\"TN\",\"age\":\"≥80\",\"population\":227483},{\"state\":\"TX\",\"age\":\"≥80\",\"population\":732179},{\"state\":\"UT\",\"age\":\"≥80\",\"population\":70711},{\"state\":\"VT\",\"age\":\"≥80\",\"population\":26656},{\"state\":\"VA\",\"age\":\"≥80\",\"population\":274606},{\"state\":\"WA\",\"age\":\"≥80\",\"population\":242589},{\"state\":\"WV\",\"age\":\"≥80\",\"population\":79201},{\"state\":\"WI\",\"age\":\"≥80\",\"population\":241747},{\"state\":\"WY\",\"age\":\"≥80\",\"population\":19682},{\"state\":\"PR\",\"age\":\"≥80\",\"population\":148963}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"state\"],\"y\":[\"population\"],\"s\":[\"age\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"季节\",\"dataType\":\"string\"},{\"name\":\"温度\",\"dataType\":\"number\"}],\"data\":[{\"季节\":\"春\",\"温度\":15},{\"季节\":\"夏\",\"温度\":28},{\"季节\":\"秋\",\"温度\":20},{\"季节\":\"冬\",\"温度\":5}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"季节\"],\"y\":[\"温度\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Continent\",\"dataType\":\"string\"},{\"name\":\"Area\",\"dataType\":\"number\"},{\"name\":\"Land Type\",\"dataType\":\"string\"}],\"data\":[{\"Continent\":\"Asia\",\"Area\":44579000,\"Land Type\":\"Land Mass\"},{\"Continent\":\"Africa\",\"Area\":30370000,\"Land Type\":\"Land Mass\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Continent\"],\"y\":[\"Area\"],\"s\":[\"Land Type\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"年龄段\",\"dataType\":\"string\"},{\"name\":\"用户数\",\"dataType\":\"number\"}],\"data\":[{\"年龄段\":\"18-24岁\",\"用户数\":1500},{\"年龄段\":\"25-34岁\",\"用户数\":2000},{\"年龄段\":\"35-44岁\",\"用户数\":1800},{\"年龄段\":\"45岁以上\",\"用户数\":1200}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"年龄段\"],\"y\":[\"用户数\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"Year\",\"dataType\":\"string\"},{\"name\":\"Sales\",\"dataType\":\"number\"},{\"name\":\"Region\",\"dataType\":\"string\"}],\"data\":[{\"Year\":\"2019\",\"Sales\":2000000,\"Region\":\"USA\"},{\"Year\":\"2020\",\"Sales\":2200000,\"Region\":\"USA\"},{\"Year\":\"2019\",\"Sales\":1500000,\"Region\":\"China\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Year\"],\"y\":[\"Sales\"],\"s\":[\"Region\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Month\",\"dataType\":\"string\"},{\"name\":\"Revenue\",\"dataType\":\"number\"},{\"name\":\"Department\",\"dataType\":\"string\"}],\"data\":[{\"Month\":\"January\",\"Revenue\":80000,\"Department\":\"Electronics\"},{\"Month\":\"February\",\"Revenue\":75000,\"Department\":\"Furniture\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Month\"],\"y\":[\"Revenue\"],\"s\":[\"Department\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"地区\",\"dataType\":\"string\"},{\"name\":\"销售额\",\"dataType\":\"number\"},{\"name\":\"产品类别\",\"dataType\":\"string\"}],\"data\":[{\"地区\":\"北区\",\"销售额\":750,\"产品类别\":\"电子产品\"},{\"地区\":\"南区\",\"销售额\":300,\"产品类别\":\"生活用品\"},{\"地区\":\"西区\",\"销售额\":900,\"产品类别\":\"服装\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"地区\"],\"y\":[\"销售额\"],\"s\":[\"产品类别\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Month\",\"dataType\":\"string\"},{\"name\":\"Rainfall\",\"dataType\":\"number\"},{\"name\":\"City\",\"dataType\":\"string\"}],\"data\":[{\"Month\":\"January\",\"Rainfall\":120,\"City\":\"Shanghai\"},{\"Month\":\"February\",\"Rainfall\":85,\"City\":\"Shanghai\"},{\"Month\":\"January\",\"Rainfall\":200,\"City\":\"London\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"Month\"],\"y\":[\"Rainfall\"],\"s\":[\"City\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"纪元\",\"dataType\":\"string\"},{\"name\":\"发电量\",\"dataType\":\"number\"},{\"name\":\"能源类型\",\"dataType\":\"string\"}],\"data\":[{\"纪元\":\"2021年\",\"发电量\":5000,\"能源类型\":\"风能\"},{\"纪元\":\"2021年\",\"发电量\":2000,\"能源类型\":\"太阳能\"},{\"纪元\":\"2022年\",\"发电量\":5500,\"能源类型\":\"风能\"},{\"纪元\":\"2022年\",\"发电量\":3000,\"能源类型\":\"太阳能\"}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"纪元\"],\"y\":[\"发电量\"],\"s\":[\"能源类型\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"site\",\"dataType\":\"string\"},{\"name\":\"yield\",\"dataType\":\"number\"}],\"data\":[{\"site\":\"University Farm\",\"yield\":27},{\"site\":\"Waseca\",\"yield\":48.86667},{\"site\":\"Morris\",\"yield\":27.43334},{\"site\":\"Crookston\",\"yield\":39.93333},{\"site\":\"Grand Rapids\",\"yield\":32.96667},{\"site\":\"Duluth\",\"yield\":28.96667}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"site\"],\"y\":[\"yield\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"季度\",\"dataType\":\"string\"},{\"name\":\"利润\",\"dataType\":\"number\"}],\"data\":[{\"季度\":\"Q1\",\"利润\":500000},{\"季度\":\"Q2\",\"利润\":550000},{\"季度\":\"Q3\",\"利润\":600000},{\"季度\":\"Q4\",\"利润\":650000}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"季度\"],\"y\":[\"利润\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"产品类别\",\"dataType\":\"string\"},{\"name\":\"销量\",\"dataType\":\"number\"}],\"data\":[{\"产品类别\":\"电子产品\",\"销量\":500},{\"产品类别\":\"家居用品\",\"销量\":300},{\"产品类别\":\"服装\",\"销量\":450},{\"产品类别\":\"食品\",\"销量\":600}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"产品类别\"],\"y\":[\"销量\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"}],\"data\":[{\"国家\":\"美国\",\"GDP\":21439453},{\"国家\":\"中国\",\"GDP\":14140163},{\"国家\":\"日本\",\"GDP\":5177086},{\"国家\":\"德国\",\"GDP\":3885000}]}","answer":"[{\"type\":\"column\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"GDP\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Exports\",\"dataType\":\"number\"},{\"name\":\"Imports\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"China\",\"Exports\":2345000,\"Imports\":1980000},{\"Country\":\"USA\",\"Exports\":1500000,\"Imports\":2300000},{\"Country\":\"Germany\",\"Exports\":1400000,\"Imports\":1200000},{\"Country\":\"Japan\",\"Exports\":1300000,\"Imports\":1400000},{\"Country\":\"South Korea\",\"Exports\":880000,\"Imports\":550000}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Exports\"],\"y2\":[\"Imports\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"Date\",\"dataType\":\"string\"},{\"name\":\"Temperature\",\"dataType\":\"number\"},{\"name\":\"Humidity\",\"dataType\":\"number\"}],\"data\":[{\"Date\":\"2023年4月1日\",\"Temperature\":22,\"Humidity\":60},{\"Date\":\"2023年4月2日\",\"Temperature\":25,\"Humidity\":55},{\"Date\":\"2023年4月3日\",\"Temperature\":21,\"Humidity\":65},{\"Date\":\"2023年4月4日\",\"Temperature\":23,\"Humidity\":70}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Date\"],\"y\":[\"Temperature\"],\"y2\":[\"Humidity\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"程序语言\",\"dataType\":\"string\"},{\"name\":\"使用人数\",\"dataType\":\"number\"},{\"name\":\"项目数\",\"dataType\":\"number\"}],\"data\":[{\"程序语言\":\"Python\",\"使用人数\":8500000,\"项目数\":42000},{\"程序语言\":\"Java\",\"使用人数\":10400000,\"项目数\":39000},{\"程序语言\":\"JavaScript\",\"使用人数\":10800000,\"项目数\":49000},{\"程序语言\":\"C++\",\"使用人数\":5900000,\"项目数\":27000},{\"程序语言\":\"C#\",\"使用人数\":5000000,\"项目数\":23000}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"程序语言\"],\"y\":[\"使用人数\"],\"y2\":[\"项目数\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"Date\",\"dataType\":\"string\"},{\"name\":\"Visitors\",\"dataType\":\"number\"},{\"name\":\"Conversions\",\"dataType\":\"number\"}],\"data\":[{\"Date\":\"01/03/2023\",\"Visitors\":1000,\"Conversions\":50},{\"Date\":\"02/03/2023\",\"Visitors\":1500,\"Conversions\":75},{\"Date\":\"03/03/2023\",\"Visitors\":2000,\"Conversions\":100},{\"Date\":\"04/03/2023\",\"Visitors\":2500,\"Conversions\":125},{\"Date\":\"05/03/2023\",\"Visitors\":3000,\"Conversions\":150}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Date\"],\"y\":[\"Visitors\"],\"y2\":[\"Conversions\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"有效期至\",\"dataType\":\"string\"},{\"name\":\"折扣率\",\"dataType\":\"number\"},{\"name\":\"库存量\",\"dataType\":\"number\"},{\"name\":\"运费\",\"dataType\":\"number\"}],\"data\":[{\"有效期至\":\"2023/01/06\",\"折扣率\":0.23,\"库存量\":34.5,\"运费\":130.7},{\"有效期至\":\"2023/01/07\",\"折扣率\":0.67,\"库存量\":67.8,\"运费\":170.9},{\"有效期至\":\"2023/01/08\",\"折扣率\":0.54,\"库存量\":12.3,\"运费\":76.4},{\"有效期至\":\"2023/01/09\",\"折扣率\":0.89,\"库存量\":45.6,\"运费\":190.5},{\"有效期至\":\"2023/01/10\",\"折扣率\":0.16,\"库存量\":98.7,\"运费\":50.2}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"有效期至\"],\"y\":[\"折扣率\"],\"y2\":[\"库存量\",\"运费\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"生产日期\",\"dataType\":\"string\"},{\"name\":\"单价\",\"dataType\":\"number\"},{\"name\":\"数量\",\"dataType\":\"number\"}],\"data\":[{\"生产日期\":\"2023-03-01\",\"单价\":1234500,\"数量\":45},{\"生产日期\":\"2023-03-02\",\"单价\":2345600,\"数量\":56},{\"生产日期\":\"2023-03-03\",\"单价\":3456700,\"数量\":67},{\"生产日期\":\"2023-03-04\",\"单价\":4567800,\"数量\":78},{\"生产日期\":\"2023-03-05\",\"单价\":5678900,\"数量\":89}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"生产日期\"],\"y\":[\"单价\"],\"y2\":[\"数量\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"City\",\"dataType\":\"string\"},{\"name\":\"Population\",\"dataType\":\"number\"},{\"name\":\"Area\",\"dataType\":\"number\"}],\"data\":[{\"City\":\"New York\",\"Population\":8419600,\"Area\":780},{\"City\":\"Los Angeles\",\"Population\":3980400,\"Area\":1300},{\"City\":\"Chicago\",\"Population\":2716000,\"Area\":606},{\"City\":\"Houston\",\"Population\":2328000,\"Area\":1700},{\"City\":\"Phoenix\",\"Population\":1690000,\"Area\":1340}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Population\"],\"y2\":[\"Area\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"Region\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"},{\"name\":\"Population\",\"dataType\":\"number\"}],\"data\":[{\"Region\":\"North America\",\"GDP\":22800000,\"Population\":579000000},{\"Region\":\"Europe\",\"GDP\":19800000,\"Population\":742000000},{\"Region\":\"Asia\",\"GDP\":28900000,\"Population\":4463000000},{\"Region\":\"South America\",\"GDP\":3520000,\"Population\":428000000},{\"Region\":\"Africa\",\"GDP\":2500000,\"Population\":1340000000}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Region\"],\"y\":[\"GDP\"],\"y2\":[\"Population\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"商品类别\",\"dataType\":\"string\"},{\"name\":\"利润\",\"dataType\":\"number\"},{\"name\":\"折扣率\",\"dataType\":\"number\"}],\"data\":[{\"商品类别\":\"电器\",\"利润\":550,\"折扣率\":0.72},{\"商品类别\":\"电子产品\",\"利润\":650,\"折扣率\":0.77},{\"商品类别\":\"户外用品\",\"利润\":750,\"折扣率\":0.82},{\"商品类别\":\"家居用品\",\"利润\":850,\"折扣率\":0.87},{\"商品类别\":\"其他\",\"利润\":950,\"折扣率\":0.92}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"商品类别\"],\"y\":[\"利润\"],\"y2\":[\"折扣率\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"发布时间\",\"dataType\":\"string\"},{\"name\":\"点击量\",\"dataType\":\"number\"},{\"name\":\"点赞数\",\"dataType\":\"number\"}],\"data\":[{\"发布时间\":\"2023/02/06\",\"点击量\":4500,\"点赞数\":150},{\"发布时间\":\"2023/02/07\",\"点击量\":5600,\"点赞数\":200},{\"发布时间\":\"2023/02/08\",\"点击量\":6700,\"点赞数\":250},{\"发布时间\":\"2023/02/09\",\"点击量\":7800,\"点赞数\":300},{\"发布时间\":\"2023/02/10\",\"点击量\":8900,\"点赞数\":350}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"发布时间\"],\"y\":[\"点击量\"],\"y2\":[\"点赞数\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Exports\",\"dataType\":\"number\"},{\"name\":\"Imports\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"China\",\"Exports\":2345000,\"Imports\":1980000},{\"Country\":\"USA\",\"Exports\":1500000,\"Imports\":2300000},{\"Country\":\"Germany\",\"Exports\":1400000,\"Imports\":1200000},{\"Country\":\"Japan\",\"Exports\":1300000,\"Imports\":1400000},{\"Country\":\"South Korea\",\"Exports\":880000,\"Imports\":550000}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Exports\"],\"y2\":[\"Imports\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"Date\",\"dataType\":\"string\"},{\"name\":\"Temperature\",\"dataType\":\"number\"},{\"name\":\"Humidity\",\"dataType\":\"number\"}],\"data\":[{\"Date\":\"2023年4月1日\",\"Temperature\":22,\"Humidity\":60},{\"Date\":\"2023年4月2日\",\"Temperature\":25,\"Humidity\":55},{\"Date\":\"2023年4月3日\",\"Temperature\":21,\"Humidity\":65},{\"Date\":\"2023年4月4日\",\"Temperature\":23,\"Humidity\":70}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Date\"],\"y\":[\"Temperature\"],\"y2\":[\"Humidity\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"程序语言\",\"dataType\":\"string\"},{\"name\":\"使用人数\",\"dataType\":\"number\"},{\"name\":\"项目数\",\"dataType\":\"number\"}],\"data\":[{\"程序语言\":\"Python\",\"使用人数\":8500000,\"项目数\":42000},{\"程序语言\":\"Java\",\"使用人数\":10400000,\"项目数\":39000},{\"程序语言\":\"JavaScript\",\"使用人数\":10800000,\"项目数\":49000},{\"程序语言\":\"C++\",\"使用人数\":5900000,\"项目数\":27000},{\"程序语言\":\"C#\",\"使用人数\":5000000,\"项目数\":23000}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"程序语言\"],\"y\":[\"使用人数\"],\"y2\":[\"项目数\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Date\",\"dataType\":\"string\"},{\"name\":\"Visitors\",\"dataType\":\"number\"},{\"name\":\"Conversions\",\"dataType\":\"number\"}],\"data\":[{\"Date\":\"01/03/2023\",\"Visitors\":1000,\"Conversions\":50},{\"Date\":\"02/03/2023\",\"Visitors\":1500,\"Conversions\":75},{\"Date\":\"03/03/2023\",\"Visitors\":2000,\"Conversions\":100},{\"Date\":\"04/03/2023\",\"Visitors\":2500,\"Conversions\":125},{\"Date\":\"05/03/2023\",\"Visitors\":3000,\"Conversions\":150}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Date\"],\"y\":[\"Visitors\"],\"y2\":[\"Conversions\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"有效期至\",\"dataType\":\"string\"},{\"name\":\"折扣率\",\"dataType\":\"number\"},{\"name\":\"库存量\",\"dataType\":\"number\"},{\"name\":\"运费\",\"dataType\":\"number\"}],\"data\":[{\"有效期至\":\"2023/01/06\",\"折扣率\":0.23,\"库存量\":34.5,\"运费\":130.7},{\"有效期至\":\"2023/01/07\",\"折扣率\":0.67,\"库存量\":67.8,\"运费\":170.9},{\"有效期至\":\"2023/01/08\",\"折扣率\":0.54,\"库存量\":12.3,\"运费\":76.4},{\"有效期至\":\"2023/01/09\",\"折扣率\":0.89,\"库存量\":45.6,\"运费\":190.5},{\"有效期至\":\"2023/01/10\",\"折扣率\":0.16,\"库存量\":98.7,\"运费\":50.2}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"有效期至\"],\"y\":[\"折扣率\"],\"y2\":[\"库存量\",\"运费\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"生产日期\",\"dataType\":\"string\"},{\"name\":\"单价\",\"dataType\":\"number\"},{\"name\":\"数量\",\"dataType\":\"number\"}],\"data\":[{\"生产日期\":\"2023-03-01\",\"单价\":1234500,\"数量\":45},{\"生产日期\":\"2023-03-02\",\"单价\":2345600,\"数量\":56},{\"生产日期\":\"2023-03-03\",\"单价\":3456700,\"数量\":67},{\"生产日期\":\"2023-03-04\",\"单价\":4567800,\"数量\":78},{\"生产日期\":\"2023-03-05\",\"单价\":5678900,\"数量\":89}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"生产日期\"],\"y\":[\"单价\"],\"y2\":[\"数量\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"City\",\"dataType\":\"string\"},{\"name\":\"Population\",\"dataType\":\"number\"},{\"name\":\"Area\",\"dataType\":\"number\"}],\"data\":[{\"City\":\"New York\",\"Population\":8419600,\"Area\":780},{\"City\":\"Los Angeles\",\"Population\":3980400,\"Area\":1300},{\"City\":\"Chicago\",\"Population\":2716000,\"Area\":606},{\"City\":\"Houston\",\"Population\":2328000,\"Area\":1700},{\"City\":\"Phoenix\",\"Population\":1690000,\"Area\":1340}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Population\"],\"y2\":[\"Area\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"Region\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"},{\"name\":\"Population\",\"dataType\":\"number\"}],\"data\":[{\"Region\":\"North America\",\"GDP\":22800000,\"Population\":579000000},{\"Region\":\"Europe\",\"GDP\":19800000,\"Population\":742000000},{\"Region\":\"Asia\",\"GDP\":28900000,\"Population\":4463000000},{\"Region\":\"South America\",\"GDP\":3520000,\"Population\":428000000},{\"Region\":\"Africa\",\"GDP\":2500000,\"Population\":1340000000}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Region\"],\"y\":[\"GDP\"],\"y2\":[\"Population\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"商品类别\",\"dataType\":\"string\"},{\"name\":\"利润\",\"dataType\":\"number\"},{\"name\":\"折扣率\",\"dataType\":\"number\"}],\"data\":[{\"商品类别\":\"电器\",\"利润\":550,\"折扣率\":0.72},{\"商品类别\":\"电子产品\",\"利润\":650,\"折扣率\":0.77},{\"商品类别\":\"户外用品\",\"利润\":750,\"折扣率\":0.82},{\"商品类别\":\"家居用品\",\"利润\":850,\"折扣率\":0.87},{\"商品类别\":\"其他\",\"利润\":950,\"折扣率\":0.92}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"商品类别\"],\"y\":[\"利润\"],\"y2\":[\"折扣率\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"发布时间\",\"dataType\":\"string\"},{\"name\":\"点击量\",\"dataType\":\"number\"},{\"name\":\"点赞数\",\"dataType\":\"number\"}],\"data\":[{\"发布时间\":\"2023/02/06\",\"点击量\":4500,\"点赞数\":150},{\"发布时间\":\"2023/02/07\",\"点击量\":5600,\"点赞数\":200},{\"发布时间\":\"2023/02/08\",\"点击量\":6700,\"点赞数\":250},{\"发布时间\":\"2023/02/09\",\"点击量\":7800,\"点赞数\":300},{\"发布时间\":\"2023/02/10\",\"点击量\":8900,\"点赞数\":350}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"发布时间\"],\"y\":[\"点击量\"],\"y2\":[\"点赞数\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Exports\",\"dataType\":\"number\"},{\"name\":\"Imports\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"China\",\"Exports\":2345000,\"Imports\":1980000},{\"Country\":\"USA\",\"Exports\":1500000,\"Imports\":2300000},{\"Country\":\"Germany\",\"Exports\":1400000,\"Imports\":1200000},{\"Country\":\"Japan\",\"Exports\":1300000,\"Imports\":1400000},{\"Country\":\"South Korea\",\"Exports\":880000,\"Imports\":550000}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Exports\"],\"y2\":[\"Imports\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"Date\",\"dataType\":\"string\"},{\"name\":\"Temperature\",\"dataType\":\"number\"},{\"name\":\"Humidity\",\"dataType\":\"number\"}],\"data\":[{\"Date\":\"2023年4月1日\",\"Temperature\":22,\"Humidity\":60},{\"Date\":\"2023年4月2日\",\"Temperature\":25,\"Humidity\":55},{\"Date\":\"2023年4月3日\",\"Temperature\":21,\"Humidity\":65},{\"Date\":\"2023年4月4日\",\"Temperature\":23,\"Humidity\":70}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Date\"],\"y\":[\"Temperature\"],\"y2\":[\"Humidity\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"程序语言\",\"dataType\":\"string\"},{\"name\":\"使用人数\",\"dataType\":\"number\"},{\"name\":\"项目数\",\"dataType\":\"number\"}],\"data\":[{\"程序语言\":\"Python\",\"使用人数\":8500000,\"项目数\":42000},{\"程序语言\":\"Java\",\"使用人数\":10400000,\"项目数\":39000},{\"程序语言\":\"JavaScript\",\"使用人数\":10800000,\"项目数\":49000},{\"程序语言\":\"C++\",\"使用人数\":5900000,\"项目数\":27000},{\"程序语言\":\"C#\",\"使用人数\":5000000,\"项目数\":23000}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"程序语言\"],\"y\":[\"使用人数\"],\"y2\":[\"项目数\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Date\",\"dataType\":\"string\"},{\"name\":\"Visitors\",\"dataType\":\"number\"},{\"name\":\"Conversions\",\"dataType\":\"number\"}],\"data\":[{\"Date\":\"01/03/2023\",\"Visitors\":1000,\"Conversions\":50},{\"Date\":\"02/03/2023\",\"Visitors\":1500,\"Conversions\":75},{\"Date\":\"03/03/2023\",\"Visitors\":2000,\"Conversions\":100},{\"Date\":\"04/03/2023\",\"Visitors\":2500,\"Conversions\":125},{\"Date\":\"05/03/2023\",\"Visitors\":3000,\"Conversions\":150}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Date\"],\"y\":[\"Visitors\"],\"y2\":[\"Conversions\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"有效期至\",\"dataType\":\"string\"},{\"name\":\"折扣率\",\"dataType\":\"number\"},{\"name\":\"库存量\",\"dataType\":\"number\"},{\"name\":\"运费\",\"dataType\":\"number\"}],\"data\":[{\"有效期至\":\"2023/01/06\",\"折扣率\":0.23,\"库存量\":34.5,\"运费\":130.7},{\"有效期至\":\"2023/01/07\",\"折扣率\":0.67,\"库存量\":67.8,\"运费\":170.9},{\"有效期至\":\"2023/01/08\",\"折扣率\":0.54,\"库存量\":12.3,\"运费\":76.4},{\"有效期至\":\"2023/01/09\",\"折扣率\":0.89,\"库存量\":45.6,\"运费\":190.5},{\"有效期至\":\"2023/01/10\",\"折扣率\":0.16,\"库存量\":98.7,\"运费\":50.2}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"有效期至\"],\"y\":[\"折扣率\"],\"y2\":[\"库存量\",\"运费\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"生产日期\",\"dataType\":\"string\"},{\"name\":\"单价\",\"dataType\":\"number\"},{\"name\":\"数量\",\"dataType\":\"number\"}],\"data\":[{\"生产日期\":\"2023-03-01\",\"单价\":1234500,\"数量\":45},{\"生产日期\":\"2023-03-02\",\"单价\":2345600,\"数量\":56},{\"生产日期\":\"2023-03-03\",\"单价\":3456700,\"数量\":67},{\"生产日期\":\"2023-03-04\",\"单价\":4567800,\"数量\":78},{\"生产日期\":\"2023-03-05\",\"单价\":5678900,\"数量\":89}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"生产日期\"],\"y\":[\"单价\"],\"y2\":[\"数量\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"City\",\"dataType\":\"string\"},{\"name\":\"Population\",\"dataType\":\"number\"},{\"name\":\"Area\",\"dataType\":\"number\"}],\"data\":[{\"City\":\"New York\",\"Population\":8419600,\"Area\":780},{\"City\":\"Los Angeles\",\"Population\":3980400,\"Area\":1300},{\"City\":\"Chicago\",\"Population\":2716000,\"Area\":606},{\"City\":\"Houston\",\"Population\":2328000,\"Area\":1700},{\"City\":\"Phoenix\",\"Population\":1690000,\"Area\":1340}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Population\"],\"y2\":[\"Area\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Region\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"},{\"name\":\"Population\",\"dataType\":\"number\"}],\"data\":[{\"Region\":\"North America\",\"GDP\":22800000,\"Population\":579000000},{\"Region\":\"Europe\",\"GDP\":19800000,\"Population\":742000000},{\"Region\":\"Asia\",\"GDP\":28900000,\"Population\":4463000000},{\"Region\":\"South America\",\"GDP\":3520000,\"Population\":428000000},{\"Region\":\"Africa\",\"GDP\":2500000,\"Population\":1340000000}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Region\"],\"y\":[\"GDP\"],\"y2\":[\"Population\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"商品类别\",\"dataType\":\"string\"},{\"name\":\"利润\",\"dataType\":\"number\"},{\"name\":\"折扣率\",\"dataType\":\"number\"}],\"data\":[{\"商品类别\":\"电器\",\"利润\":550,\"折扣率\":0.72},{\"商品类别\":\"电子产品\",\"利润\":650,\"折扣率\":0.77},{\"商品类别\":\"户外用品\",\"利润\":750,\"折扣率\":0.82},{\"商品类别\":\"家居用品\",\"利润\":850,\"折扣率\":0.87},{\"商品类别\":\"其他\",\"利润\":950,\"折扣率\":0.92}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"商品类别\"],\"y\":[\"利润\"],\"y2\":[\"折扣率\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"发布时间\",\"dataType\":\"string\"},{\"name\":\"点击量\",\"dataType\":\"number\"},{\"name\":\"点赞数\",\"dataType\":\"number\"}],\"data\":[{\"发布时间\":\"2023/02/06\",\"点击量\":4500,\"点赞数\":150},{\"发布时间\":\"2023/02/07\",\"点击量\":5600,\"点赞数\":200},{\"发布时间\":\"2023/02/08\",\"点击量\":6700,\"点赞数\":250},{\"发布时间\":\"2023/02/09\",\"点击量\":7800,\"点赞数\":300},{\"发布时间\":\"2023/02/10\",\"点击量\":8900,\"点赞数\":350}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"发布时间\"],\"y\":[\"点击量\"],\"y2\":[\"点赞数\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Exports\",\"dataType\":\"number\"},{\"name\":\"Imports\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"China\",\"Exports\":2345000,\"Imports\":1980000},{\"Country\":\"USA\",\"Exports\":1500000,\"Imports\":2300000},{\"Country\":\"Germany\",\"Exports\":1400000,\"Imports\":1200000},{\"Country\":\"Japan\",\"Exports\":1300000,\"Imports\":1400000},{\"Country\":\"South Korea\",\"Exports\":880000,\"Imports\":550000}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Exports\"],\"y2\":[\"Imports\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"Date\",\"dataType\":\"string\"},{\"name\":\"Temperature\",\"dataType\":\"number\"},{\"name\":\"Humidity\",\"dataType\":\"number\"}],\"data\":[{\"Date\":\"2023年4月1日\",\"Temperature\":22,\"Humidity\":60},{\"Date\":\"2023年4月2日\",\"Temperature\":25,\"Humidity\":55},{\"Date\":\"2023年4月3日\",\"Temperature\":21,\"Humidity\":65},{\"Date\":\"2023年4月4日\",\"Temperature\":23,\"Humidity\":70}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Date\"],\"y\":[\"Temperature\"],\"y2\":[\"Humidity\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"程序语言\",\"dataType\":\"string\"},{\"name\":\"使用人数\",\"dataType\":\"number\"},{\"name\":\"项目数\",\"dataType\":\"number\"}],\"data\":[{\"程序语言\":\"Python\",\"使用人数\":8500000,\"项目数\":42000},{\"程序语言\":\"Java\",\"使用人数\":10400000,\"项目数\":39000},{\"程序语言\":\"JavaScript\",\"使用人数\":10800000,\"项目数\":49000},{\"程序语言\":\"C++\",\"使用人数\":5900000,\"项目数\":27000},{\"程序语言\":\"C#\",\"使用人数\":5000000,\"项目数\":23000}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"程序语言\"],\"y\":[\"使用人数\"],\"y2\":[\"项目数\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"Date\",\"dataType\":\"string\"},{\"name\":\"Visitors\",\"dataType\":\"number\"},{\"name\":\"Conversions\",\"dataType\":\"number\"}],\"data\":[{\"Date\":\"01/03/2023\",\"Visitors\":1000,\"Conversions\":50},{\"Date\":\"02/03/2023\",\"Visitors\":1500,\"Conversions\":75},{\"Date\":\"03/03/2023\",\"Visitors\":2000,\"Conversions\":100},{\"Date\":\"04/03/2023\",\"Visitors\":2500,\"Conversions\":125},{\"Date\":\"05/03/2023\",\"Visitors\":3000,\"Conversions\":150}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Date\"],\"y\":[\"Visitors\"],\"y2\":[\"Conversions\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"有效期至\",\"dataType\":\"string\"},{\"name\":\"折扣率\",\"dataType\":\"number\"},{\"name\":\"库存量\",\"dataType\":\"number\"},{\"name\":\"运费\",\"dataType\":\"number\"}],\"data\":[{\"有效期至\":\"2023/01/06\",\"折扣率\":0.23,\"库存量\":34.5,\"运费\":130.7},{\"有效期至\":\"2023/01/07\",\"折扣率\":0.67,\"库存量\":67.8,\"运费\":170.9},{\"有效期至\":\"2023/01/08\",\"折扣率\":0.54,\"库存量\":12.3,\"运费\":76.4},{\"有效期至\":\"2023/01/09\",\"折扣率\":0.89,\"库存量\":45.6,\"运费\":190.5},{\"有效期至\":\"2023/01/10\",\"折扣率\":0.16,\"库存量\":98.7,\"运费\":50.2}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"有效期至\"],\"y\":[\"折扣率\"],\"y2\":[\"库存量\",\"运费\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"生产日期\",\"dataType\":\"string\"},{\"name\":\"单价\",\"dataType\":\"number\"},{\"name\":\"数量\",\"dataType\":\"number\"}],\"data\":[{\"生产日期\":\"2023-03-01\",\"单价\":1234500,\"数量\":45},{\"生产日期\":\"2023-03-02\",\"单价\":2345600,\"数量\":56},{\"生产日期\":\"2023-03-03\",\"单价\":3456700,\"数量\":67},{\"生产日期\":\"2023-03-04\",\"单价\":4567800,\"数量\":78},{\"生产日期\":\"2023-03-05\",\"单价\":5678900,\"数量\":89}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"生产日期\"],\"y\":[\"单价\"],\"y2\":[\"数量\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"City\",\"dataType\":\"string\"},{\"name\":\"Population\",\"dataType\":\"number\"},{\"name\":\"Area\",\"dataType\":\"number\"}],\"data\":[{\"City\":\"New York\",\"Population\":8419600,\"Area\":780},{\"City\":\"Los Angeles\",\"Population\":3980400,\"Area\":1300},{\"City\":\"Chicago\",\"Population\":2716000,\"Area\":606},{\"City\":\"Houston\",\"Population\":2328000,\"Area\":1700},{\"City\":\"Phoenix\",\"Population\":1690000,\"Area\":1340}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Population\"],\"y2\":[\"Area\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"Region\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"},{\"name\":\"Population\",\"dataType\":\"number\"}],\"data\":[{\"Region\":\"North America\",\"GDP\":22800000,\"Population\":579000000},{\"Region\":\"Europe\",\"GDP\":19800000,\"Population\":742000000},{\"Region\":\"Asia\",\"GDP\":28900000,\"Population\":4463000000},{\"Region\":\"South America\",\"GDP\":3520000,\"Population\":428000000},{\"Region\":\"Africa\",\"GDP\":2500000,\"Population\":1340000000}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Region\"],\"y\":[\"GDP\"],\"y2\":[\"Population\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"商品类别\",\"dataType\":\"string\"},{\"name\":\"利润\",\"dataType\":\"number\"},{\"name\":\"折扣率\",\"dataType\":\"number\"}],\"data\":[{\"商品类别\":\"电器\",\"利润\":550,\"折扣率\":0.72},{\"商品类别\":\"电子产品\",\"利润\":650,\"折扣率\":0.77},{\"商品类别\":\"户外用品\",\"利润\":750,\"折扣率\":0.82},{\"商品类别\":\"家居用品\",\"利润\":850,\"折扣率\":0.87},{\"商品类别\":\"其他\",\"利润\":950,\"折扣率\":0.92}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"商品类别\"],\"y\":[\"利润\"],\"y2\":[\"折扣率\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"发布时间\",\"dataType\":\"string\"},{\"name\":\"点击量\",\"dataType\":\"number\"},{\"name\":\"点赞数\",\"dataType\":\"number\"}],\"data\":[{\"发布时间\":\"2023/02/06\",\"点击量\":4500,\"点赞数\":150},{\"发布时间\":\"2023/02/07\",\"点击量\":5600,\"点赞数\":200},{\"发布时间\":\"2023/02/08\",\"点击量\":6700,\"点赞数\":250},{\"发布时间\":\"2023/02/09\",\"点击量\":7800,\"点赞数\":300},{\"发布时间\":\"2023/02/10\",\"点击量\":8900,\"点赞数\":350}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"发布时间\"],\"y\":[\"点击量\"],\"y2\":[\"点赞数\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Exports\",\"dataType\":\"number\"},{\"name\":\"Imports\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"China\",\"Exports\":2345000,\"Imports\":1980000},{\"Country\":\"USA\",\"Exports\":1500000,\"Imports\":2300000},{\"Country\":\"Germany\",\"Exports\":1400000,\"Imports\":1200000},{\"Country\":\"Japan\",\"Exports\":1300000,\"Imports\":1400000},{\"Country\":\"South Korea\",\"Exports\":880000,\"Imports\":550000}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Exports\"],\"y2\":[\"Imports\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"Date\",\"dataType\":\"string\"},{\"name\":\"Temperature\",\"dataType\":\"number\"},{\"name\":\"Humidity\",\"dataType\":\"number\"}],\"data\":[{\"Date\":\"2023年4月1日\",\"Temperature\":22,\"Humidity\":60},{\"Date\":\"2023年4月2日\",\"Temperature\":25,\"Humidity\":55},{\"Date\":\"2023年4月3日\",\"Temperature\":21,\"Humidity\":65},{\"Date\":\"2023年4月4日\",\"Temperature\":23,\"Humidity\":70}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Date\"],\"y\":[\"Temperature\"],\"y2\":[\"Humidity\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"程序语言\",\"dataType\":\"string\"},{\"name\":\"使用人数\",\"dataType\":\"number\"},{\"name\":\"项目数\",\"dataType\":\"number\"}],\"data\":[{\"程序语言\":\"Python\",\"使用人数\":8500000,\"项目数\":42000},{\"程序语言\":\"Java\",\"使用人数\":10400000,\"项目数\":39000},{\"程序语言\":\"JavaScript\",\"使用人数\":10800000,\"项目数\":49000},{\"程序语言\":\"C++\",\"使用人数\":5900000,\"项目数\":27000},{\"程序语言\":\"C#\",\"使用人数\":5000000,\"项目数\":23000}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"程序语言\"],\"y\":[\"使用人数\"],\"y2\":[\"项目数\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"Date\",\"dataType\":\"string\"},{\"name\":\"Visitors\",\"dataType\":\"number\"},{\"name\":\"Conversions\",\"dataType\":\"number\"}],\"data\":[{\"Date\":\"01/03/2023\",\"Visitors\":1000,\"Conversions\":50},{\"Date\":\"02/03/2023\",\"Visitors\":1500,\"Conversions\":75},{\"Date\":\"03/03/2023\",\"Visitors\":2000,\"Conversions\":100},{\"Date\":\"04/03/2023\",\"Visitors\":2500,\"Conversions\":125},{\"Date\":\"05/03/2023\",\"Visitors\":3000,\"Conversions\":150}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Date\"],\"y\":[\"Visitors\"],\"y2\":[\"Conversions\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"有效期至\",\"dataType\":\"string\"},{\"name\":\"折扣率\",\"dataType\":\"number\"},{\"name\":\"库存量\",\"dataType\":\"number\"},{\"name\":\"运费\",\"dataType\":\"number\"}],\"data\":[{\"有效期至\":\"2023/01/06\",\"折扣率\":0.23,\"库存量\":34.5,\"运费\":130.7},{\"有效期至\":\"2023/01/07\",\"折扣率\":0.67,\"库存量\":67.8,\"运费\":170.9},{\"有效期至\":\"2023/01/08\",\"折扣率\":0.54,\"库存量\":12.3,\"运费\":76.4},{\"有效期至\":\"2023/01/09\",\"折扣率\":0.89,\"库存量\":45.6,\"运费\":190.5},{\"有效期至\":\"2023/01/10\",\"折扣率\":0.16,\"库存量\":98.7,\"运费\":50.2}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"有效期至\"],\"y\":[\"折扣率\"],\"y2\":[\"库存量\",\"运费\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"生产日期\",\"dataType\":\"string\"},{\"name\":\"单价\",\"dataType\":\"number\"},{\"name\":\"数量\",\"dataType\":\"number\"}],\"data\":[{\"生产日期\":\"2023-03-01\",\"单价\":1234500,\"数量\":45},{\"生产日期\":\"2023-03-02\",\"单价\":2345600,\"数量\":56},{\"生产日期\":\"2023-03-03\",\"单价\":3456700,\"数量\":67},{\"生产日期\":\"2023-03-04\",\"单价\":4567800,\"数量\":78},{\"生产日期\":\"2023-03-05\",\"单价\":5678900,\"数量\":89}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"生产日期\"],\"y\":[\"单价\"],\"y2\":[\"数量\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"City\",\"dataType\":\"string\"},{\"name\":\"Population\",\"dataType\":\"number\"},{\"name\":\"Area\",\"dataType\":\"number\"}],\"data\":[{\"City\":\"New York\",\"Population\":8419600,\"Area\":780},{\"City\":\"Los Angeles\",\"Population\":3980400,\"Area\":1300},{\"City\":\"Chicago\",\"Population\":2716000,\"Area\":606},{\"City\":\"Houston\",\"Population\":2328000,\"Area\":1700},{\"City\":\"Phoenix\",\"Population\":1690000,\"Area\":1340}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Population\"],\"y2\":[\"Area\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"Region\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"},{\"name\":\"Population\",\"dataType\":\"number\"}],\"data\":[{\"Region\":\"North America\",\"GDP\":22800000,\"Population\":579000000},{\"Region\":\"Europe\",\"GDP\":19800000,\"Population\":742000000},{\"Region\":\"Asia\",\"GDP\":28900000,\"Population\":4463000000},{\"Region\":\"South America\",\"GDP\":3520000,\"Population\":428000000},{\"Region\":\"Africa\",\"GDP\":2500000,\"Population\":1340000000}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Region\"],\"y\":[\"GDP\"],\"y2\":[\"Population\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"商品类别\",\"dataType\":\"string\"},{\"name\":\"利润\",\"dataType\":\"number\"},{\"name\":\"折扣率\",\"dataType\":\"number\"}],\"data\":[{\"商品类别\":\"电器\",\"利润\":550,\"折扣率\":0.72},{\"商品类别\":\"电子产品\",\"利润\":650,\"折扣率\":0.77},{\"商品类别\":\"户外用品\",\"利润\":750,\"折扣率\":0.82},{\"商品类别\":\"家居用品\",\"利润\":850,\"折扣率\":0.87},{\"商品类别\":\"其他\",\"利润\":950,\"折扣率\":0.92}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"商品类别\"],\"y\":[\"利润\"],\"y2\":[\"折扣率\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"发布时间\",\"dataType\":\"string\"},{\"name\":\"点击量\",\"dataType\":\"number\"},{\"name\":\"点赞数\",\"dataType\":\"number\"}],\"data\":[{\"发布时间\":\"2023/02/06\",\"点击量\":4500,\"点赞数\":150},{\"发布时间\":\"2023/02/07\",\"点击量\":5600,\"点赞数\":200},{\"发布时间\":\"2023/02/08\",\"点击量\":6700,\"点赞数\":250},{\"发布时间\":\"2023/02/09\",\"点击量\":7800,\"点赞数\":300},{\"发布时间\":\"2023/02/10\",\"点击量\":8900,\"点赞数\":350}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"发布时间\"],\"y\":[\"点击量\"],\"y2\":[\"点赞数\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Exports\",\"dataType\":\"number\"},{\"name\":\"Imports\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"China\",\"Exports\":2345000,\"Imports\":1980000},{\"Country\":\"USA\",\"Exports\":1500000,\"Imports\":2300000},{\"Country\":\"Germany\",\"Exports\":1400000,\"Imports\":1200000},{\"Country\":\"Japan\",\"Exports\":1300000,\"Imports\":1400000},{\"Country\":\"South Korea\",\"Exports\":880000,\"Imports\":550000}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Exports\"],\"y2\":[\"Imports\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Date\",\"dataType\":\"string\"},{\"name\":\"Temperature\",\"dataType\":\"number\"},{\"name\":\"Humidity\",\"dataType\":\"number\"}],\"data\":[{\"Date\":\"2023年4月1日\",\"Temperature\":22,\"Humidity\":60},{\"Date\":\"2023年4月2日\",\"Temperature\":25,\"Humidity\":55},{\"Date\":\"2023年4月3日\",\"Temperature\":21,\"Humidity\":65},{\"Date\":\"2023年4月4日\",\"Temperature\":23,\"Humidity\":70}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Date\"],\"y\":[\"Temperature\"],\"y2\":[\"Humidity\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"程序语言\",\"dataType\":\"string\"},{\"name\":\"使用人数\",\"dataType\":\"number\"},{\"name\":\"项目数\",\"dataType\":\"number\"}],\"data\":[{\"程序语言\":\"Python\",\"使用人数\":8500000,\"项目数\":42000},{\"程序语言\":\"Java\",\"使用人数\":10400000,\"项目数\":39000},{\"程序语言\":\"JavaScript\",\"使用人数\":10800000,\"项目数\":49000},{\"程序语言\":\"C++\",\"使用人数\":5900000,\"项目数\":27000},{\"程序语言\":\"C#\",\"使用人数\":5000000,\"项目数\":23000}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"程序语言\"],\"y\":[\"使用人数\"],\"y2\":[\"项目数\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"Date\",\"dataType\":\"string\"},{\"name\":\"Visitors\",\"dataType\":\"number\"},{\"name\":\"Conversions\",\"dataType\":\"number\"}],\"data\":[{\"Date\":\"01/03/2023\",\"Visitors\":1000,\"Conversions\":50},{\"Date\":\"02/03/2023\",\"Visitors\":1500,\"Conversions\":75},{\"Date\":\"03/03/2023\",\"Visitors\":2000,\"Conversions\":100},{\"Date\":\"04/03/2023\",\"Visitors\":2500,\"Conversions\":125},{\"Date\":\"05/03/2023\",\"Visitors\":3000,\"Conversions\":150}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Date\"],\"y\":[\"Visitors\"],\"y2\":[\"Conversions\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"有效期至\",\"dataType\":\"string\"},{\"name\":\"折扣率\",\"dataType\":\"number\"},{\"name\":\"库存量\",\"dataType\":\"number\"},{\"name\":\"运费\",\"dataType\":\"number\"}],\"data\":[{\"有效期至\":\"2023/01/06\",\"折扣率\":0.23,\"库存量\":34.5,\"运费\":130.7},{\"有效期至\":\"2023/01/07\",\"折扣率\":0.67,\"库存量\":67.8,\"运费\":170.9},{\"有效期至\":\"2023/01/08\",\"折扣率\":0.54,\"库存量\":12.3,\"运费\":76.4},{\"有效期至\":\"2023/01/09\",\"折扣率\":0.89,\"库存量\":45.6,\"运费\":190.5},{\"有效期至\":\"2023/01/10\",\"折扣率\":0.16,\"库存量\":98.7,\"运费\":50.2}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"有效期至\"],\"y\":[\"折扣率\"],\"y2\":[\"库存量\",\"运费\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"生产日期\",\"dataType\":\"string\"},{\"name\":\"单价\",\"dataType\":\"number\"},{\"name\":\"数量\",\"dataType\":\"number\"}],\"data\":[{\"生产日期\":\"2023-03-01\",\"单价\":1234500,\"数量\":45},{\"生产日期\":\"2023-03-02\",\"单价\":2345600,\"数量\":56},{\"生产日期\":\"2023-03-03\",\"单价\":3456700,\"数量\":67},{\"生产日期\":\"2023-03-04\",\"单价\":4567800,\"数量\":78},{\"生产日期\":\"2023-03-05\",\"单价\":5678900,\"数量\":89}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"生产日期\"],\"y\":[\"单价\"],\"y2\":[\"数量\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"City\",\"dataType\":\"string\"},{\"name\":\"Population\",\"dataType\":\"number\"},{\"name\":\"Area\",\"dataType\":\"number\"}],\"data\":[{\"City\":\"New York\",\"Population\":8419600,\"Area\":780},{\"City\":\"Los Angeles\",\"Population\":3980400,\"Area\":1300},{\"City\":\"Chicago\",\"Population\":2716000,\"Area\":606},{\"City\":\"Houston\",\"Population\":2328000,\"Area\":1700},{\"City\":\"Phoenix\",\"Population\":1690000,\"Area\":1340}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Population\"],\"y2\":[\"Area\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Region\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"},{\"name\":\"Population\",\"dataType\":\"number\"}],\"data\":[{\"Region\":\"North America\",\"GDP\":22800000,\"Population\":579000000},{\"Region\":\"Europe\",\"GDP\":19800000,\"Population\":742000000},{\"Region\":\"Asia\",\"GDP\":28900000,\"Population\":4463000000},{\"Region\":\"South America\",\"GDP\":3520000,\"Population\":428000000},{\"Region\":\"Africa\",\"GDP\":2500000,\"Population\":1340000000}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Region\"],\"y\":[\"GDP\"],\"y2\":[\"Population\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"商品类别\",\"dataType\":\"string\"},{\"name\":\"利润\",\"dataType\":\"number\"},{\"name\":\"折扣率\",\"dataType\":\"number\"}],\"data\":[{\"商品类别\":\"电器\",\"利润\":550,\"折扣率\":0.72},{\"商品类别\":\"电子产品\",\"利润\":650,\"折扣率\":0.77},{\"商品类别\":\"户外用品\",\"利润\":750,\"折扣率\":0.82},{\"商品类别\":\"家居用品\",\"利润\":850,\"折扣率\":0.87},{\"商品类别\":\"其他\",\"利润\":950,\"折扣率\":0.92}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"商品类别\"],\"y\":[\"利润\"],\"y2\":[\"折扣率\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"发布时间\",\"dataType\":\"string\"},{\"name\":\"点击量\",\"dataType\":\"number\"},{\"name\":\"点赞数\",\"dataType\":\"number\"}],\"data\":[{\"发布时间\":\"2023/02/06\",\"点击量\":4500,\"点赞数\":150},{\"发布时间\":\"2023/02/07\",\"点击量\":5600,\"点赞数\":200},{\"发布时间\":\"2023/02/08\",\"点击量\":6700,\"点赞数\":250},{\"发布时间\":\"2023/02/09\",\"点击量\":7800,\"点赞数\":300},{\"发布时间\":\"2023/02/10\",\"点击量\":8900,\"点赞数\":350}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"发布时间\"],\"y\":[\"点击量\"],\"y2\":[\"点赞数\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Exports\",\"dataType\":\"number\"},{\"name\":\"Imports\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"China\",\"Exports\":2345000,\"Imports\":1980000},{\"Country\":\"USA\",\"Exports\":1500000,\"Imports\":2300000},{\"Country\":\"Germany\",\"Exports\":1400000,\"Imports\":1200000},{\"Country\":\"Japan\",\"Exports\":1300000,\"Imports\":1400000},{\"Country\":\"South Korea\",\"Exports\":880000,\"Imports\":550000}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Exports\"],\"y2\":[\"Imports\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"Date\",\"dataType\":\"string\"},{\"name\":\"Temperature\",\"dataType\":\"number\"},{\"name\":\"Humidity\",\"dataType\":\"number\"}],\"data\":[{\"Date\":\"2023年4月1日\",\"Temperature\":22,\"Humidity\":60},{\"Date\":\"2023年4月2日\",\"Temperature\":25,\"Humidity\":55},{\"Date\":\"2023年4月3日\",\"Temperature\":21,\"Humidity\":65},{\"Date\":\"2023年4月4日\",\"Temperature\":23,\"Humidity\":70}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Date\"],\"y\":[\"Temperature\"],\"y2\":[\"Humidity\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"程序语言\",\"dataType\":\"string\"},{\"name\":\"使用人数\",\"dataType\":\"number\"},{\"name\":\"项目数\",\"dataType\":\"number\"}],\"data\":[{\"程序语言\":\"Python\",\"使用人数\":8500000,\"项目数\":42000},{\"程序语言\":\"Java\",\"使用人数\":10400000,\"项目数\":39000},{\"程序语言\":\"JavaScript\",\"使用人数\":10800000,\"项目数\":49000},{\"程序语言\":\"C++\",\"使用人数\":5900000,\"项目数\":27000},{\"程序语言\":\"C#\",\"使用人数\":5000000,\"项目数\":23000}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"程序语言\"],\"y\":[\"使用人数\"],\"y2\":[\"项目数\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"Date\",\"dataType\":\"string\"},{\"name\":\"Visitors\",\"dataType\":\"number\"},{\"name\":\"Conversions\",\"dataType\":\"number\"}],\"data\":[{\"Date\":\"01/03/2023\",\"Visitors\":1000,\"Conversions\":50},{\"Date\":\"02/03/2023\",\"Visitors\":1500,\"Conversions\":75},{\"Date\":\"03/03/2023\",\"Visitors\":2000,\"Conversions\":100},{\"Date\":\"04/03/2023\",\"Visitors\":2500,\"Conversions\":125},{\"Date\":\"05/03/2023\",\"Visitors\":3000,\"Conversions\":150}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Date\"],\"y\":[\"Visitors\"],\"y2\":[\"Conversions\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"有效期至\",\"dataType\":\"string\"},{\"name\":\"折扣率\",\"dataType\":\"number\"},{\"name\":\"库存量\",\"dataType\":\"number\"},{\"name\":\"运费\",\"dataType\":\"number\"}],\"data\":[{\"有效期至\":\"2023/01/06\",\"折扣率\":0.23,\"库存量\":34.5,\"运费\":130.7},{\"有效期至\":\"2023/01/07\",\"折扣率\":0.67,\"库存量\":67.8,\"运费\":170.9},{\"有效期至\":\"2023/01/08\",\"折扣率\":0.54,\"库存量\":12.3,\"运费\":76.4},{\"有效期至\":\"2023/01/09\",\"折扣率\":0.89,\"库存量\":45.6,\"运费\":190.5},{\"有效期至\":\"2023/01/10\",\"折扣率\":0.16,\"库存量\":98.7,\"运费\":50.2}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"有效期至\"],\"y\":[\"折扣率\"],\"y2\":[\"库存量\",\"运费\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"生产日期\",\"dataType\":\"string\"},{\"name\":\"单价\",\"dataType\":\"number\"},{\"name\":\"数量\",\"dataType\":\"number\"}],\"data\":[{\"生产日期\":\"2023-03-01\",\"单价\":1234500,\"数量\":45},{\"生产日期\":\"2023-03-02\",\"单价\":2345600,\"数量\":56},{\"生产日期\":\"2023-03-03\",\"单价\":3456700,\"数量\":67},{\"生产日期\":\"2023-03-04\",\"单价\":4567800,\"数量\":78},{\"生产日期\":\"2023-03-05\",\"单价\":5678900,\"数量\":89}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"生产日期\"],\"y\":[\"单价\"],\"y2\":[\"数量\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"City\",\"dataType\":\"string\"},{\"name\":\"Population\",\"dataType\":\"number\"},{\"name\":\"Area\",\"dataType\":\"number\"}],\"data\":[{\"City\":\"New York\",\"Population\":8419600,\"Area\":780},{\"City\":\"Los Angeles\",\"Population\":3980400,\"Area\":1300},{\"City\":\"Chicago\",\"Population\":2716000,\"Area\":606},{\"City\":\"Houston\",\"Population\":2328000,\"Area\":1700},{\"City\":\"Phoenix\",\"Population\":1690000,\"Area\":1340}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Population\"],\"y2\":[\"Area\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"Region\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"},{\"name\":\"Population\",\"dataType\":\"number\"}],\"data\":[{\"Region\":\"North America\",\"GDP\":22800000,\"Population\":579000000},{\"Region\":\"Europe\",\"GDP\":19800000,\"Population\":742000000},{\"Region\":\"Asia\",\"GDP\":28900000,\"Population\":4463000000},{\"Region\":\"South America\",\"GDP\":3520000,\"Population\":428000000},{\"Region\":\"Africa\",\"GDP\":2500000,\"Population\":1340000000}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"Region\"],\"y\":[\"GDP\"],\"y2\":[\"Population\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"商品类别\",\"dataType\":\"string\"},{\"name\":\"利润\",\"dataType\":\"number\"},{\"name\":\"折扣率\",\"dataType\":\"number\"}],\"data\":[{\"商品类别\":\"电器\",\"利润\":550,\"折扣率\":0.72},{\"商品类别\":\"电子产品\",\"利润\":650,\"折扣率\":0.77},{\"商品类别\":\"户外用品\",\"利润\":750,\"折扣率\":0.82},{\"商品类别\":\"家居用品\",\"利润\":850,\"折扣率\":0.87},{\"商品类别\":\"其他\",\"利润\":950,\"折扣率\":0.92}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"商品类别\"],\"y\":[\"利润\"],\"y2\":[\"折扣率\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"发布时间\",\"dataType\":\"string\"},{\"name\":\"点击量\",\"dataType\":\"number\"},{\"name\":\"点赞数\",\"dataType\":\"number\"}],\"data\":[{\"发布时间\":\"2023/02/06\",\"点击量\":4500,\"点赞数\":150},{\"发布时间\":\"2023/02/07\",\"点击量\":5600,\"点赞数\":200},{\"发布时间\":\"2023/02/08\",\"点击量\":6700,\"点赞数\":250},{\"发布时间\":\"2023/02/09\",\"点击量\":7800,\"点赞数\":300},{\"发布时间\":\"2023/02/10\",\"点击量\":8900,\"点赞数\":350}]}","answer":"[{\"type\":\"multiple\",\"encode\":{\"x\":[\"发布时间\"],\"y\":[\"点击量\"],\"y2\":[\"点赞数\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"潜在客户\",\"dataType\":\"number\"},{\"name\":\"营销邮件打开\",\"dataType\":\"number\"},{\"name\":\"点击链接\",\"dataType\":\"number\"},{\"name\":\"签约\",\"dataType\":\"number\"}],\"data\":[{\"潜在客户\":7000,\"营销邮件打开\":4000,\"点击链接\":1500,\"签约\":300}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"潜在客户\",\"营销邮件打开\",\"点击链接\",\"签约\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"信息传播\",\"dataType\":\"number\"},{\"name\":\"接受搜索\",\"dataType\":\"number\"},{\"name\":\"阅读条款\",\"dataType\":\"number\"},{\"name\":\"尝试服务\",\"dataType\":\"number\"}],\"data\":[{\"信息传播\":20000,\"接受搜索\":12000,\"阅读条款\":5000,\"尝试服务\":1800}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"信息传播\",\"接受搜索\",\"阅读条款\",\"尝试服务\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"文章阅读\",\"dataType\":\"number\"},{\"name\":\"深入阅读\",\"dataType\":\"number\"},{\"name\":\"推荐他人\",\"dataType\":\"number\"},{\"name\":\"新增用户\",\"dataType\":\"number\"}],\"data\":[{\"文章阅读\":2500,\"深入阅读\":1500,\"推荐他人\":800,\"新增用户\":200}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"文章阅读\",\"深入阅读\",\"推荐他人\",\"新增用户\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Page Views\",\"dataType\":\"number\"},{\"name\":\"Clicks\",\"dataType\":\"number\"},{\"name\":\"Cart Additions\",\"dataType\":\"number\"},{\"name\":\"Checkouts\",\"dataType\":\"number\"}],\"data\":[{\"Page Views\":10000,\"Clicks\":7000,\"Cart Additions\":3500,\"Checkouts\":2500}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Page Views\",\"Clicks\",\"Cart Additions\",\"Checkouts\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"收到简历\",\"dataType\":\"number\"},{\"name\":\"初筛通过\",\"dataType\":\"number\"},{\"name\":\"进入面试\",\"dataType\":\"number\"},{\"name\":\"最终录用\",\"dataType\":\"number\"}],\"data\":[{\"收到简历\":1000,\"初筛通过\":400,\"进入面试\":200,\"最终录用\":50}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"收到简历\",\"初筛通过\",\"进入面试\",\"最终录用\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"Visits\",\"dataType\":\"number\"},{\"name\":\"Signups\",\"dataType\":\"number\"},{\"name\":\"Purchased\",\"dataType\":\"number\"},{\"name\":\"Retained Customers\",\"dataType\":\"number\"}],\"data\":[{\"Visits\":5000,\"Signups\":3000,\"Purchased\":1500,\"Retained Customers\":800}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Visits\",\"Signups\",\"Purchased\",\"Retained Customers\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"Social Media Followers\",\"dataType\":\"number\"},{\"name\":\"Engaged Users\",\"dataType\":\"number\"},{\"name\":\"Content Shares\",\"dataType\":\"number\"},{\"name\":\"Conversions\",\"dataType\":\"number\"}],\"data\":[{\"Social Media Followers\":10000,\"Engaged Users\":4000,\"Content Shares\":1000,\"Conversions\":200}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Social Media Followers\",\"Engaged Users\",\"Content Shares\",\"Conversions\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"Session Starts\",\"dataType\":\"number\"},{\"name\":\"Games Played\",\"dataType\":\"number\"},{\"name\":\"In-Game Purchase\",\"dataType\":\"number\"},{\"name\":\"Return User\",\"dataType\":\"number\"}],\"data\":[{\"Session Starts\":9000,\"Games Played\":5000,\"In-Game Purchase\":2000,\"Return Users\":1000}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Session Starts\",\"Games Played\",\"In-Game Purchase\",\"Return Users\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"潜在客户\",\"dataType\":\"number\"},{\"name\":\"营销邮件打开\",\"dataType\":\"number\"},{\"name\":\"点击链接\",\"dataType\":\"number\"},{\"name\":\"签约\",\"dataType\":\"number\"}],\"data\":[{\"潜在客户\":7000,\"营销邮件打开\":4000,\"点击链接\":1500,\"签约\":300}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"潜在客户\",\"营销邮件打开\",\"点击链接\",\"签约\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"信息传播\",\"dataType\":\"number\"},{\"name\":\"接受搜索\",\"dataType\":\"number\"},{\"name\":\"阅读条款\",\"dataType\":\"number\"},{\"name\":\"尝试服务\",\"dataType\":\"number\"}],\"data\":[{\"信息传播\":20000,\"接受搜索\":12000,\"阅读条款\":5000,\"尝试服务\":1800}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"信息传播\",\"接受搜索\",\"阅读条款\",\"尝试服务\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"文章阅读\",\"dataType\":\"number\"},{\"name\":\"深入阅读\",\"dataType\":\"number\"},{\"name\":\"推荐他人\",\"dataType\":\"number\"},{\"name\":\"新增用户\",\"dataType\":\"number\"}],\"data\":[{\"文章阅读\":2500,\"深入阅读\":1500,\"推荐他人\":800,\"新增用户\":200}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"文章阅读\",\"深入阅读\",\"推荐他人\",\"新增用户\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"Page Views\",\"dataType\":\"number\"},{\"name\":\"Clicks\",\"dataType\":\"number\"},{\"name\":\"Cart Additions\",\"dataType\":\"number\"},{\"name\":\"Checkouts\",\"dataType\":\"number\"}],\"data\":[{\"Page Views\":10000,\"Clicks\":7000,\"Cart Additions\":3500,\"Checkouts\":2500}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Page Views\",\"Clicks\",\"Cart Additions\",\"Checkouts\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"收到简历\",\"dataType\":\"number\"},{\"name\":\"初筛通过\",\"dataType\":\"number\"},{\"name\":\"进入面试\",\"dataType\":\"number\"},{\"name\":\"最终录用\",\"dataType\":\"number\"}],\"data\":[{\"收到简历\":1000,\"初筛通过\":400,\"进入面试\":200,\"最终录用\":50}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"收到简历\",\"初筛通过\",\"进入面试\",\"最终录用\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Visits\",\"dataType\":\"number\"},{\"name\":\"Signups\",\"dataType\":\"number\"},{\"name\":\"Purchased\",\"dataType\":\"number\"},{\"name\":\"Retained Customers\",\"dataType\":\"number\"}],\"data\":[{\"Visits\":5000,\"Signups\":3000,\"Purchased\":1500,\"Retained Customers\":800}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Visits\",\"Signups\",\"Purchased\",\"Retained Customers\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"Social Media Followers\",\"dataType\":\"number\"},{\"name\":\"Engaged Users\",\"dataType\":\"number\"},{\"name\":\"Content Shares\",\"dataType\":\"number\"},{\"name\":\"Conversions\",\"dataType\":\"number\"}],\"data\":[{\"Social Media Followers\":10000,\"Engaged Users\":4000,\"Content Shares\":1000,\"Conversions\":200}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Social Media Followers\",\"Engaged Users\",\"Content Shares\",\"Conversions\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"Session Starts\",\"dataType\":\"number\"},{\"name\":\"Games Played\",\"dataType\":\"number\"},{\"name\":\"In-Game Purchase\",\"dataType\":\"number\"},{\"name\":\"Return User\",\"dataType\":\"number\"}],\"data\":[{\"Session Starts\":9000,\"Games Played\":5000,\"In-Game Purchase\":2000,\"Return Users\":1000}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Session Starts\",\"Games Played\",\"In-Game Purchase\",\"Return Users\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"潜在客户\",\"dataType\":\"number\"},{\"name\":\"营销邮件打开\",\"dataType\":\"number\"},{\"name\":\"点击链接\",\"dataType\":\"number\"},{\"name\":\"签约\",\"dataType\":\"number\"}],\"data\":[{\"潜在客户\":7000,\"营销邮件打开\":4000,\"点击链接\":1500,\"签约\":300}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"潜在客户\",\"营销邮件打开\",\"点击链接\",\"签约\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"信息传播\",\"dataType\":\"number\"},{\"name\":\"接受搜索\",\"dataType\":\"number\"},{\"name\":\"阅读条款\",\"dataType\":\"number\"},{\"name\":\"尝试服务\",\"dataType\":\"number\"}],\"data\":[{\"信息传播\":20000,\"接受搜索\":12000,\"阅读条款\":5000,\"尝试服务\":1800}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"信息传播\",\"接受搜索\",\"阅读条款\",\"尝试服务\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"文章阅读\",\"dataType\":\"number\"},{\"name\":\"深入阅读\",\"dataType\":\"number\"},{\"name\":\"推荐他人\",\"dataType\":\"number\"},{\"name\":\"新增用户\",\"dataType\":\"number\"}],\"data\":[{\"文章阅读\":2500,\"深入阅读\":1500,\"推荐他人\":800,\"新增用户\":200}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"文章阅读\",\"深入阅读\",\"推荐他人\",\"新增用户\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"Page Views\",\"dataType\":\"number\"},{\"name\":\"Clicks\",\"dataType\":\"number\"},{\"name\":\"Cart Additions\",\"dataType\":\"number\"},{\"name\":\"Checkouts\",\"dataType\":\"number\"}],\"data\":[{\"Page Views\":10000,\"Clicks\":7000,\"Cart Additions\":3500,\"Checkouts\":2500}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Page Views\",\"Clicks\",\"Cart Additions\",\"Checkouts\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"收到简历\",\"dataType\":\"number\"},{\"name\":\"初筛通过\",\"dataType\":\"number\"},{\"name\":\"进入面试\",\"dataType\":\"number\"},{\"name\":\"最终录用\",\"dataType\":\"number\"}],\"data\":[{\"收到简历\":1000,\"初筛通过\":400,\"进入面试\":200,\"最终录用\":50}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"收到简历\",\"初筛通过\",\"进入面试\",\"最终录用\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"Visits\",\"dataType\":\"number\"},{\"name\":\"Signups\",\"dataType\":\"number\"},{\"name\":\"Purchased\",\"dataType\":\"number\"},{\"name\":\"Retained Customers\",\"dataType\":\"number\"}],\"data\":[{\"Visits\":5000,\"Signups\":3000,\"Purchased\":1500,\"Retained Customers\":800}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Visits\",\"Signups\",\"Purchased\",\"Retained Customers\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"Social Media Followers\",\"dataType\":\"number\"},{\"name\":\"Engaged Users\",\"dataType\":\"number\"},{\"name\":\"Content Shares\",\"dataType\":\"number\"},{\"name\":\"Conversions\",\"dataType\":\"number\"}],\"data\":[{\"Social Media Followers\":10000,\"Engaged Users\":4000,\"Content Shares\":1000,\"Conversions\":200}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Social Media Followers\",\"Engaged Users\",\"Content Shares\",\"Conversions\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Session Starts\",\"dataType\":\"number\"},{\"name\":\"Games Played\",\"dataType\":\"number\"},{\"name\":\"In-Game Purchase\",\"dataType\":\"number\"},{\"name\":\"Return User\",\"dataType\":\"number\"}],\"data\":[{\"Session Starts\":9000,\"Games Played\":5000,\"In-Game Purchase\":2000,\"Return Users\":1000}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Session Starts\",\"Games Played\",\"In-Game Purchase\",\"Return Users\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"潜在客户\",\"dataType\":\"number\"},{\"name\":\"营销邮件打开\",\"dataType\":\"number\"},{\"name\":\"点击链接\",\"dataType\":\"number\"},{\"name\":\"签约\",\"dataType\":\"number\"}],\"data\":[{\"潜在客户\":7000,\"营销邮件打开\":4000,\"点击链接\":1500,\"签约\":300}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"潜在客户\",\"营销邮件打开\",\"点击链接\",\"签约\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"信息传播\",\"dataType\":\"number\"},{\"name\":\"接受搜索\",\"dataType\":\"number\"},{\"name\":\"阅读条款\",\"dataType\":\"number\"},{\"name\":\"尝试服务\",\"dataType\":\"number\"}],\"data\":[{\"信息传播\":20000,\"接受搜索\":12000,\"阅读条款\":5000,\"尝试服务\":1800}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"信息传播\",\"接受搜索\",\"阅读条款\",\"尝试服务\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"文章阅读\",\"dataType\":\"number\"},{\"name\":\"深入阅读\",\"dataType\":\"number\"},{\"name\":\"推荐他人\",\"dataType\":\"number\"},{\"name\":\"新增用户\",\"dataType\":\"number\"}],\"data\":[{\"文章阅读\":2500,\"深入阅读\":1500,\"推荐他人\":800,\"新增用户\":200}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"文章阅读\",\"深入阅读\",\"推荐他人\",\"新增用户\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"Page Views\",\"dataType\":\"number\"},{\"name\":\"Clicks\",\"dataType\":\"number\"},{\"name\":\"Cart Additions\",\"dataType\":\"number\"},{\"name\":\"Checkouts\",\"dataType\":\"number\"}],\"data\":[{\"Page Views\":10000,\"Clicks\":7000,\"Cart Additions\":3500,\"Checkouts\":2500}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Page Views\",\"Clicks\",\"Cart Additions\",\"Checkouts\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"收到简历\",\"dataType\":\"number\"},{\"name\":\"初筛通过\",\"dataType\":\"number\"},{\"name\":\"进入面试\",\"dataType\":\"number\"},{\"name\":\"最终录用\",\"dataType\":\"number\"}],\"data\":[{\"收到简历\":1000,\"初筛通过\":400,\"进入面试\":200,\"最终录用\":50}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"收到简历\",\"初筛通过\",\"进入面试\",\"最终录用\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"Visits\",\"dataType\":\"number\"},{\"name\":\"Signups\",\"dataType\":\"number\"},{\"name\":\"Purchased\",\"dataType\":\"number\"},{\"name\":\"Retained Customers\",\"dataType\":\"number\"}],\"data\":[{\"Visits\":5000,\"Signups\":3000,\"Purchased\":1500,\"Retained Customers\":800}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Visits\",\"Signups\",\"Purchased\",\"Retained Customers\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"Social Media Followers\",\"dataType\":\"number\"},{\"name\":\"Engaged Users\",\"dataType\":\"number\"},{\"name\":\"Content Shares\",\"dataType\":\"number\"},{\"name\":\"Conversions\",\"dataType\":\"number\"}],\"data\":[{\"Social Media Followers\":10000,\"Engaged Users\":4000,\"Content Shares\":1000,\"Conversions\":200}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Social Media Followers\",\"Engaged Users\",\"Content Shares\",\"Conversions\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"Session Starts\",\"dataType\":\"number\"},{\"name\":\"Games Played\",\"dataType\":\"number\"},{\"name\":\"In-Game Purchase\",\"dataType\":\"number\"},{\"name\":\"Return User\",\"dataType\":\"number\"}],\"data\":[{\"Session Starts\":9000,\"Games Played\":5000,\"In-Game Purchase\":2000,\"Return Users\":1000}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Session Starts\",\"Games Played\",\"In-Game Purchase\",\"Return Users\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"潜在客户\",\"dataType\":\"number\"},{\"name\":\"营销邮件打开\",\"dataType\":\"number\"},{\"name\":\"点击链接\",\"dataType\":\"number\"},{\"name\":\"签约\",\"dataType\":\"number\"}],\"data\":[{\"潜在客户\":7000,\"营销邮件打开\":4000,\"点击链接\":1500,\"签约\":300}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"潜在客户\",\"营销邮件打开\",\"点击链接\",\"签约\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"信息传播\",\"dataType\":\"number\"},{\"name\":\"接受搜索\",\"dataType\":\"number\"},{\"name\":\"阅读条款\",\"dataType\":\"number\"},{\"name\":\"尝试服务\",\"dataType\":\"number\"}],\"data\":[{\"信息传播\":20000,\"接受搜索\":12000,\"阅读条款\":5000,\"尝试服务\":1800}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"信息传播\",\"接受搜索\",\"阅读条款\",\"尝试服务\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"文章阅读\",\"dataType\":\"number\"},{\"name\":\"深入阅读\",\"dataType\":\"number\"},{\"name\":\"推荐他人\",\"dataType\":\"number\"},{\"name\":\"新增用户\",\"dataType\":\"number\"}],\"data\":[{\"文章阅读\":2500,\"深入阅读\":1500,\"推荐他人\":800,\"新增用户\":200}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"文章阅读\",\"深入阅读\",\"推荐他人\",\"新增用户\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"Page Views\",\"dataType\":\"number\"},{\"name\":\"Clicks\",\"dataType\":\"number\"},{\"name\":\"Cart Additions\",\"dataType\":\"number\"},{\"name\":\"Checkouts\",\"dataType\":\"number\"}],\"data\":[{\"Page Views\":10000,\"Clicks\":7000,\"Cart Additions\":3500,\"Checkouts\":2500}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Page Views\",\"Clicks\",\"Cart Additions\",\"Checkouts\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"收到简历\",\"dataType\":\"number\"},{\"name\":\"初筛通过\",\"dataType\":\"number\"},{\"name\":\"进入面试\",\"dataType\":\"number\"},{\"name\":\"最终录用\",\"dataType\":\"number\"}],\"data\":[{\"收到简历\":1000,\"初筛通过\":400,\"进入面试\":200,\"最终录用\":50}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"收到简历\",\"初筛通过\",\"进入面试\",\"最终录用\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Visits\",\"dataType\":\"number\"},{\"name\":\"Signups\",\"dataType\":\"number\"},{\"name\":\"Purchased\",\"dataType\":\"number\"},{\"name\":\"Retained Customers\",\"dataType\":\"number\"}],\"data\":[{\"Visits\":5000,\"Signups\":3000,\"Purchased\":1500,\"Retained Customers\":800}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Visits\",\"Signups\",\"Purchased\",\"Retained Customers\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"Social Media Followers\",\"dataType\":\"number\"},{\"name\":\"Engaged Users\",\"dataType\":\"number\"},{\"name\":\"Content Shares\",\"dataType\":\"number\"},{\"name\":\"Conversions\",\"dataType\":\"number\"}],\"data\":[{\"Social Media Followers\":10000,\"Engaged Users\":4000,\"Content Shares\":1000,\"Conversions\":200}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Social Media Followers\",\"Engaged Users\",\"Content Shares\",\"Conversions\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"Session Starts\",\"dataType\":\"number\"},{\"name\":\"Games Played\",\"dataType\":\"number\"},{\"name\":\"In-Game Purchase\",\"dataType\":\"number\"},{\"name\":\"Return User\",\"dataType\":\"number\"}],\"data\":[{\"Session Starts\":9000,\"Games Played\":5000,\"In-Game Purchase\":2000,\"Return Users\":1000}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Session Starts\",\"Games Played\",\"In-Game Purchase\",\"Return Users\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"潜在客户\",\"dataType\":\"number\"},{\"name\":\"营销邮件打开\",\"dataType\":\"number\"},{\"name\":\"点击链接\",\"dataType\":\"number\"},{\"name\":\"签约\",\"dataType\":\"number\"}],\"data\":[{\"潜在客户\":7000,\"营销邮件打开\":4000,\"点击链接\":1500,\"签约\":300}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"潜在客户\",\"营销邮件打开\",\"点击链接\",\"签约\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"信息传播\",\"dataType\":\"number\"},{\"name\":\"接受搜索\",\"dataType\":\"number\"},{\"name\":\"阅读条款\",\"dataType\":\"number\"},{\"name\":\"尝试服务\",\"dataType\":\"number\"}],\"data\":[{\"信息传播\":20000,\"接受搜索\":12000,\"阅读条款\":5000,\"尝试服务\":1800}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"信息传播\",\"接受搜索\",\"阅读条款\",\"尝试服务\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"文章阅读\",\"dataType\":\"number\"},{\"name\":\"深入阅读\",\"dataType\":\"number\"},{\"name\":\"推荐他人\",\"dataType\":\"number\"},{\"name\":\"新增用户\",\"dataType\":\"number\"}],\"data\":[{\"文章阅读\":2500,\"深入阅读\":1500,\"推荐他人\":800,\"新增用户\":200}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"文章阅读\",\"深入阅读\",\"推荐他人\",\"新增用户\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"Page Views\",\"dataType\":\"number\"},{\"name\":\"Clicks\",\"dataType\":\"number\"},{\"name\":\"Cart Additions\",\"dataType\":\"number\"},{\"name\":\"Checkouts\",\"dataType\":\"number\"}],\"data\":[{\"Page Views\":10000,\"Clicks\":7000,\"Cart Additions\":3500,\"Checkouts\":2500}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Page Views\",\"Clicks\",\"Cart Additions\",\"Checkouts\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"收到简历\",\"dataType\":\"number\"},{\"name\":\"初筛通过\",\"dataType\":\"number\"},{\"name\":\"进入面试\",\"dataType\":\"number\"},{\"name\":\"最终录用\",\"dataType\":\"number\"}],\"data\":[{\"收到简历\":1000,\"初筛通过\":400,\"进入面试\":200,\"最终录用\":50}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"收到简历\",\"初筛通过\",\"进入面试\",\"最终录用\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"Visits\",\"dataType\":\"number\"},{\"name\":\"Signups\",\"dataType\":\"number\"},{\"name\":\"Purchased\",\"dataType\":\"number\"},{\"name\":\"Retained Customers\",\"dataType\":\"number\"}],\"data\":[{\"Visits\":5000,\"Signups\":3000,\"Purchased\":1500,\"Retained Customers\":800}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Visits\",\"Signups\",\"Purchased\",\"Retained Customers\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Social Media Followers\",\"dataType\":\"number\"},{\"name\":\"Engaged Users\",\"dataType\":\"number\"},{\"name\":\"Content Shares\",\"dataType\":\"number\"},{\"name\":\"Conversions\",\"dataType\":\"number\"}],\"data\":[{\"Social Media Followers\":10000,\"Engaged Users\":4000,\"Content Shares\":1000,\"Conversions\":200}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Social Media Followers\",\"Engaged Users\",\"Content Shares\",\"Conversions\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"Session Starts\",\"dataType\":\"number\"},{\"name\":\"Games Played\",\"dataType\":\"number\"},{\"name\":\"In-Game Purchase\",\"dataType\":\"number\"},{\"name\":\"Return User\",\"dataType\":\"number\"}],\"data\":[{\"Session Starts\":9000,\"Games Played\":5000,\"In-Game Purchase\":2000,\"Return Users\":1000}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Session Starts\",\"Games Played\",\"In-Game Purchase\",\"Return Users\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"潜在客户\",\"dataType\":\"number\"},{\"name\":\"营销邮件打开\",\"dataType\":\"number\"},{\"name\":\"点击链接\",\"dataType\":\"number\"},{\"name\":\"签约\",\"dataType\":\"number\"}],\"data\":[{\"潜在客户\":7000,\"营销邮件打开\":4000,\"点击链接\":1500,\"签约\":300}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"潜在客户\",\"营销邮件打开\",\"点击链接\",\"签约\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"信息传播\",\"dataType\":\"number\"},{\"name\":\"接受搜索\",\"dataType\":\"number\"},{\"name\":\"阅读条款\",\"dataType\":\"number\"},{\"name\":\"尝试服务\",\"dataType\":\"number\"}],\"data\":[{\"信息传播\":20000,\"接受搜索\":12000,\"阅读条款\":5000,\"尝试服务\":1800}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"信息传播\",\"接受搜索\",\"阅读条款\",\"尝试服务\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"文章阅读\",\"dataType\":\"number\"},{\"name\":\"深入阅读\",\"dataType\":\"number\"},{\"name\":\"推荐他人\",\"dataType\":\"number\"},{\"name\":\"新增用户\",\"dataType\":\"number\"}],\"data\":[{\"文章阅读\":2500,\"深入阅读\":1500,\"推荐他人\":800,\"新增用户\":200}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"文章阅读\",\"深入阅读\",\"推荐他人\",\"新增用户\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"Page Views\",\"dataType\":\"number\"},{\"name\":\"Clicks\",\"dataType\":\"number\"},{\"name\":\"Cart Additions\",\"dataType\":\"number\"},{\"name\":\"Checkouts\",\"dataType\":\"number\"}],\"data\":[{\"Page Views\":10000,\"Clicks\":7000,\"Cart Additions\":3500,\"Checkouts\":2500}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Page Views\",\"Clicks\",\"Cart Additions\",\"Checkouts\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"收到简历\",\"dataType\":\"number\"},{\"name\":\"初筛通过\",\"dataType\":\"number\"},{\"name\":\"进入面试\",\"dataType\":\"number\"},{\"name\":\"最终录用\",\"dataType\":\"number\"}],\"data\":[{\"收到简历\":1000,\"初筛通过\":400,\"进入面试\":200,\"最终录用\":50}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"收到简历\",\"初筛通过\",\"进入面试\",\"最终录用\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"Visits\",\"dataType\":\"number\"},{\"name\":\"Signups\",\"dataType\":\"number\"},{\"name\":\"Purchased\",\"dataType\":\"number\"},{\"name\":\"Retained Customers\",\"dataType\":\"number\"}],\"data\":[{\"Visits\":5000,\"Signups\":3000,\"Purchased\":1500,\"Retained Customers\":800}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Visits\",\"Signups\",\"Purchased\",\"Retained Customers\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Social Media Followers\",\"dataType\":\"number\"},{\"name\":\"Engaged Users\",\"dataType\":\"number\"},{\"name\":\"Content Shares\",\"dataType\":\"number\"},{\"name\":\"Conversions\",\"dataType\":\"number\"}],\"data\":[{\"Social Media Followers\":10000,\"Engaged Users\":4000,\"Content Shares\":1000,\"Conversions\":200}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Social Media Followers\",\"Engaged Users\",\"Content Shares\",\"Conversions\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"Session Starts\",\"dataType\":\"number\"},{\"name\":\"Games Played\",\"dataType\":\"number\"},{\"name\":\"In-Game Purchase\",\"dataType\":\"number\"},{\"name\":\"Return User\",\"dataType\":\"number\"}],\"data\":[{\"Session Starts\":9000,\"Games Played\":5000,\"In-Game Purchase\":2000,\"Return Users\":1000}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Session Starts\",\"Games Played\",\"In-Game Purchase\",\"Return Users\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"潜在客户\",\"dataType\":\"number\"},{\"name\":\"营销邮件打开\",\"dataType\":\"number\"},{\"name\":\"点击链接\",\"dataType\":\"number\"},{\"name\":\"签约\",\"dataType\":\"number\"}],\"data\":[{\"潜在客户\":7000,\"营销邮件打开\":4000,\"点击链接\":1500,\"签约\":300}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"潜在客户\",\"营销邮件打开\",\"点击链接\",\"签约\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"信息传播\",\"dataType\":\"number\"},{\"name\":\"接受搜索\",\"dataType\":\"number\"},{\"name\":\"阅读条款\",\"dataType\":\"number\"},{\"name\":\"尝试服务\",\"dataType\":\"number\"}],\"data\":[{\"信息传播\":20000,\"接受搜索\":12000,\"阅读条款\":5000,\"尝试服务\":1800}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"信息传播\",\"接受搜索\",\"阅读条款\",\"尝试服务\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"文章阅读\",\"dataType\":\"number\"},{\"name\":\"深入阅读\",\"dataType\":\"number\"},{\"name\":\"推荐他人\",\"dataType\":\"number\"},{\"name\":\"新增用户\",\"dataType\":\"number\"}],\"data\":[{\"文章阅读\":2500,\"深入阅读\":1500,\"推荐他人\":800,\"新增用户\":200}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"文章阅读\",\"深入阅读\",\"推荐他人\",\"新增用户\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Page Views\",\"dataType\":\"number\"},{\"name\":\"Clicks\",\"dataType\":\"number\"},{\"name\":\"Cart Additions\",\"dataType\":\"number\"},{\"name\":\"Checkouts\",\"dataType\":\"number\"}],\"data\":[{\"Page Views\":10000,\"Clicks\":7000,\"Cart Additions\":3500,\"Checkouts\":2500}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Page Views\",\"Clicks\",\"Cart Additions\",\"Checkouts\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"收到简历\",\"dataType\":\"number\"},{\"name\":\"初筛通过\",\"dataType\":\"number\"},{\"name\":\"进入面试\",\"dataType\":\"number\"},{\"name\":\"最终录用\",\"dataType\":\"number\"}],\"data\":[{\"收到简历\":1000,\"初筛通过\":400,\"进入面试\":200,\"最终录用\":50}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"收到简历\",\"初筛通过\",\"进入面试\",\"最终录用\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"Visits\",\"dataType\":\"number\"},{\"name\":\"Signups\",\"dataType\":\"number\"},{\"name\":\"Purchased\",\"dataType\":\"number\"},{\"name\":\"Retained Customers\",\"dataType\":\"number\"}],\"data\":[{\"Visits\":5000,\"Signups\":3000,\"Purchased\":1500,\"Retained Customers\":800}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Visits\",\"Signups\",\"Purchased\",\"Retained Customers\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"Social Media Followers\",\"dataType\":\"number\"},{\"name\":\"Engaged Users\",\"dataType\":\"number\"},{\"name\":\"Content Shares\",\"dataType\":\"number\"},{\"name\":\"Conversions\",\"dataType\":\"number\"}],\"data\":[{\"Social Media Followers\":10000,\"Engaged Users\":4000,\"Content Shares\":1000,\"Conversions\":200}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Social Media Followers\",\"Engaged Users\",\"Content Shares\",\"Conversions\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"Session Starts\",\"dataType\":\"number\"},{\"name\":\"Games Played\",\"dataType\":\"number\"},{\"name\":\"In-Game Purchase\",\"dataType\":\"number\"},{\"name\":\"Return User\",\"dataType\":\"number\"}],\"data\":[{\"Session Starts\":9000,\"Games Played\":5000,\"In-Game Purchase\":2000,\"Return Users\":1000}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Session Starts\",\"Games Played\",\"In-Game Purchase\",\"Return Users\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"潜在客户\",\"dataType\":\"number\"},{\"name\":\"营销邮件打开\",\"dataType\":\"number\"},{\"name\":\"点击链接\",\"dataType\":\"number\"},{\"name\":\"签约\",\"dataType\":\"number\"}],\"data\":[{\"潜在客户\":7000,\"营销邮件打开\":4000,\"点击链接\":1500,\"签约\":300}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"潜在客户\",\"营销邮件打开\",\"点击链接\",\"签约\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"信息传播\",\"dataType\":\"number\"},{\"name\":\"接受搜索\",\"dataType\":\"number\"},{\"name\":\"阅读条款\",\"dataType\":\"number\"},{\"name\":\"尝试服务\",\"dataType\":\"number\"}],\"data\":[{\"信息传播\":20000,\"接受搜索\":12000,\"阅读条款\":5000,\"尝试服务\":1800}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"信息传播\",\"接受搜索\",\"阅读条款\",\"尝试服务\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"文章阅读\",\"dataType\":\"number\"},{\"name\":\"深入阅读\",\"dataType\":\"number\"},{\"name\":\"推荐他人\",\"dataType\":\"number\"},{\"name\":\"新增用户\",\"dataType\":\"number\"}],\"data\":[{\"文章阅读\":2500,\"深入阅读\":1500,\"推荐他人\":800,\"新增用户\":200}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"文章阅读\",\"深入阅读\",\"推荐他人\",\"新增用户\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"Page Views\",\"dataType\":\"number\"},{\"name\":\"Clicks\",\"dataType\":\"number\"},{\"name\":\"Cart Additions\",\"dataType\":\"number\"},{\"name\":\"Checkouts\",\"dataType\":\"number\"}],\"data\":[{\"Page Views\":10000,\"Clicks\":7000,\"Cart Additions\":3500,\"Checkouts\":2500}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Page Views\",\"Clicks\",\"Cart Additions\",\"Checkouts\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"收到简历\",\"dataType\":\"number\"},{\"name\":\"初筛通过\",\"dataType\":\"number\"},{\"name\":\"进入面试\",\"dataType\":\"number\"},{\"name\":\"最终录用\",\"dataType\":\"number\"}],\"data\":[{\"收到简历\":1000,\"初筛通过\":400,\"进入面试\":200,\"最终录用\":50}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"收到简历\",\"初筛通过\",\"进入面试\",\"最终录用\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"Visits\",\"dataType\":\"number\"},{\"name\":\"Signups\",\"dataType\":\"number\"},{\"name\":\"Purchased\",\"dataType\":\"number\"},{\"name\":\"Retained Customers\",\"dataType\":\"number\"}],\"data\":[{\"Visits\":5000,\"Signups\":3000,\"Purchased\":1500,\"Retained Customers\":800}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Visits\",\"Signups\",\"Purchased\",\"Retained Customers\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Social Media Followers\",\"dataType\":\"number\"},{\"name\":\"Engaged Users\",\"dataType\":\"number\"},{\"name\":\"Content Shares\",\"dataType\":\"number\"},{\"name\":\"Conversions\",\"dataType\":\"number\"}],\"data\":[{\"Social Media Followers\":10000,\"Engaged Users\":4000,\"Content Shares\":1000,\"Conversions\":200}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Social Media Followers\",\"Engaged Users\",\"Content Shares\",\"Conversions\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"Session Starts\",\"dataType\":\"number\"},{\"name\":\"Games Played\",\"dataType\":\"number\"},{\"name\":\"In-Game Purchase\",\"dataType\":\"number\"},{\"name\":\"Return User\",\"dataType\":\"number\"}],\"data\":[{\"Session Starts\":9000,\"Games Played\":5000,\"In-Game Purchase\":2000,\"Return Users\":1000}]}","answer":"[{\"type\":\"funnel\",\"encode\":{\"y\":[\"Session Starts\",\"Games Played\",\"In-Game Purchase\",\"Return Users\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"步骤\":\"创建项目\",\"下一步\":\"设计原型\"},{\"步骤\":\"设计原型\",\"下一步\":\"开发应用\"},{\"步骤\":\"开发应用\",\"下一步\":\"测试应用\"},{\"步骤\":\"测试应用\",\"下一步\":\"部署应用\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"步骤\",\"target\":\"下一步\"}}]"} +{"prompt":"{\"data\":[{\"stage\":\"Start\",\"next\":\"Analysis\"},{\"stage\":\"Analysis\",\"next\":\"Design\"},{\"stage\":\"Design\",\"next\":\"Implementation\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"stage\",\"target\":\"next\"}}]"} +{"prompt":"{\"data\":[{\"source\":\"Idea\",\"target\":\"Research\"},{\"source\":\"Research\",\"target\":\"Prototype\"},{\"source\":\"Prototype\",\"target\":\"Testing\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"source\":\"加载数据\",\"target\":\"逻辑回归\"},{\"source\":\"逻辑回归\",\"target\":\"模型预测\"},{\"source\":\"逻辑回归\",\"target\":\"读取参数\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}]"} +{"prompt":"可视化{\"data\":[{\"过程\":\"调查\",\"后续\":\"评估\"},{\"过程\":\"评估\",\"后续\":\"决策\"},{\"过程\":\"决策\",\"后续\":\"执行\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"过程\",\"target\":\"后续\"}}]"} +{"prompt":"展示{\"data\":[{\"phase\":\"Discovery\",\"next\":\"Definition\"},{\"phase\":\"Definition\",\"next\":\"Development\"},{\"phase\":\"Development\",\"next\":\"Delivery\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"phase\",\"target\":\"next\"}}]"} +{"prompt":"展示{\"data\":[{\"环节\":\"请假申请\",\"下一步\":\"领导审批\"},{\"环节\":\"请假申请\",\"下一步\":\"一级审批\"},{\"环节\":\"领导审批\",\"下一步\":\"二级审批\"},{\"环节\":\"一级审批\",\"下一步\":\"二级审批\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"环节\",\"target\":\"下一步\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"from\":\"Start\",\"to\":\"Prepare Ingredients\"},{\"from\":\"Prepare Ingredients\",\"to\":\"Cook Ingredients\"},{\"from\":\"Cook Ingredients\",\"to\":\"Serve Dish\"},{\"from\":\"Serve Dish\",\"to\":\"Finish\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"from\",\"target\":\"to\"}}]"} +{"prompt":"{\"data\":[{\"步骤\":\"创建项目\",\"下一步\":\"设计原型\"},{\"步骤\":\"设计原型\",\"下一步\":\"开发应用\"},{\"步骤\":\"开发应用\",\"下一步\":\"测试应用\"},{\"步骤\":\"测试应用\",\"下一步\":\"部署应用\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"步骤\",\"target\":\"下一步\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"stage\":\"Start\",\"next\":\"Analysis\"},{\"stage\":\"Analysis\",\"next\":\"Design\"},{\"stage\":\"Design\",\"next\":\"Implementation\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"stage\",\"target\":\"next\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"source\":\"Idea\",\"target\":\"Research\"},{\"source\":\"Research\",\"target\":\"Prototype\"},{\"source\":\"Prototype\",\"target\":\"Testing\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"source\":\"加载数据\",\"target\":\"逻辑回归\"},{\"source\":\"逻辑回归\",\"target\":\"模型预测\"},{\"source\":\"逻辑回归\",\"target\":\"读取参数\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}]"} +{"prompt":"展示{\"data\":[{\"过程\":\"调查\",\"后续\":\"评估\"},{\"过程\":\"评估\",\"后续\":\"决策\"},{\"过程\":\"决策\",\"后续\":\"执行\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"过程\",\"target\":\"后续\"}}]"} +{"prompt":"{\"data\":[{\"phase\":\"Discovery\",\"next\":\"Definition\"},{\"phase\":\"Definition\",\"next\":\"Development\"},{\"phase\":\"Development\",\"next\":\"Delivery\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"phase\",\"target\":\"next\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"环节\":\"请假申请\",\"下一步\":\"领导审批\"},{\"环节\":\"请假申请\",\"下一步\":\"一级审批\"},{\"环节\":\"领导审批\",\"下一步\":\"二级审批\"},{\"环节\":\"一级审批\",\"下一步\":\"二级审批\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"环节\",\"target\":\"下一步\"}}]"} +{"prompt":"展示{\"data\":[{\"from\":\"Start\",\"to\":\"Prepare Ingredients\"},{\"from\":\"Prepare Ingredients\",\"to\":\"Cook Ingredients\"},{\"from\":\"Cook Ingredients\",\"to\":\"Serve Dish\"},{\"from\":\"Serve Dish\",\"to\":\"Finish\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"from\",\"target\":\"to\"}}]"} +{"prompt":"可视化{\"data\":[{\"步骤\":\"创建项目\",\"下一步\":\"设计原型\"},{\"步骤\":\"设计原型\",\"下一步\":\"开发应用\"},{\"步骤\":\"开发应用\",\"下一步\":\"测试应用\"},{\"步骤\":\"测试应用\",\"下一步\":\"部署应用\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"步骤\",\"target\":\"下一步\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"stage\":\"Start\",\"next\":\"Analysis\"},{\"stage\":\"Analysis\",\"next\":\"Design\"},{\"stage\":\"Design\",\"next\":\"Implementation\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"stage\",\"target\":\"next\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"source\":\"Idea\",\"target\":\"Research\"},{\"source\":\"Research\",\"target\":\"Prototype\"},{\"source\":\"Prototype\",\"target\":\"Testing\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"source\":\"加载数据\",\"target\":\"逻辑回归\"},{\"source\":\"逻辑回归\",\"target\":\"模型预测\"},{\"source\":\"逻辑回归\",\"target\":\"读取参数\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}]"} +{"prompt":"{\"data\":[{\"过程\":\"调查\",\"后续\":\"评估\"},{\"过程\":\"评估\",\"后续\":\"决策\"},{\"过程\":\"决策\",\"后续\":\"执行\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"过程\",\"target\":\"后续\"}}]"} +{"prompt":"展示{\"data\":[{\"phase\":\"Discovery\",\"next\":\"Definition\"},{\"phase\":\"Definition\",\"next\":\"Development\"},{\"phase\":\"Development\",\"next\":\"Delivery\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"phase\",\"target\":\"next\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"环节\":\"请假申请\",\"下一步\":\"领导审批\"},{\"环节\":\"请假申请\",\"下一步\":\"一级审批\"},{\"环节\":\"领导审批\",\"下一步\":\"二级审批\"},{\"环节\":\"一级审批\",\"下一步\":\"二级审批\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"环节\",\"target\":\"下一步\"}}]"} +{"prompt":"展示{\"data\":[{\"from\":\"Start\",\"to\":\"Prepare Ingredients\"},{\"from\":\"Prepare Ingredients\",\"to\":\"Cook Ingredients\"},{\"from\":\"Cook Ingredients\",\"to\":\"Serve Dish\"},{\"from\":\"Serve Dish\",\"to\":\"Finish\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"from\",\"target\":\"to\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"步骤\":\"创建项目\",\"下一步\":\"设计原型\"},{\"步骤\":\"设计原型\",\"下一步\":\"开发应用\"},{\"步骤\":\"开发应用\",\"下一步\":\"测试应用\"},{\"步骤\":\"测试应用\",\"下一步\":\"部署应用\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"步骤\",\"target\":\"下一步\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"stage\":\"Start\",\"next\":\"Analysis\"},{\"stage\":\"Analysis\",\"next\":\"Design\"},{\"stage\":\"Design\",\"next\":\"Implementation\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"stage\",\"target\":\"next\"}}]"} +{"prompt":"可视化{\"data\":[{\"source\":\"Idea\",\"target\":\"Research\"},{\"source\":\"Research\",\"target\":\"Prototype\"},{\"source\":\"Prototype\",\"target\":\"Testing\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"source\":\"加载数据\",\"target\":\"逻辑回归\"},{\"source\":\"逻辑回归\",\"target\":\"模型预测\"},{\"source\":\"逻辑回归\",\"target\":\"读取参数\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"过程\":\"调查\",\"后续\":\"评估\"},{\"过程\":\"评估\",\"后续\":\"决策\"},{\"过程\":\"决策\",\"后续\":\"执行\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"过程\",\"target\":\"后续\"}}]"} +{"prompt":"{\"data\":[{\"phase\":\"Discovery\",\"next\":\"Definition\"},{\"phase\":\"Definition\",\"next\":\"Development\"},{\"phase\":\"Development\",\"next\":\"Delivery\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"phase\",\"target\":\"next\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"环节\":\"请假申请\",\"下一步\":\"领导审批\"},{\"环节\":\"请假申请\",\"下一步\":\"一级审批\"},{\"环节\":\"领导审批\",\"下一步\":\"二级审批\"},{\"环节\":\"一级审批\",\"下一步\":\"二级审批\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"环节\",\"target\":\"下一步\"}}]"} +{"prompt":"可视化{\"data\":[{\"from\":\"Start\",\"to\":\"Prepare Ingredients\"},{\"from\":\"Prepare Ingredients\",\"to\":\"Cook Ingredients\"},{\"from\":\"Cook Ingredients\",\"to\":\"Serve Dish\"},{\"from\":\"Serve Dish\",\"to\":\"Finish\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"from\",\"target\":\"to\"}}]"} +{"prompt":"可视化{\"data\":[{\"步骤\":\"创建项目\",\"下一步\":\"设计原型\"},{\"步骤\":\"设计原型\",\"下一步\":\"开发应用\"},{\"步骤\":\"开发应用\",\"下一步\":\"测试应用\"},{\"步骤\":\"测试应用\",\"下一步\":\"部署应用\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"步骤\",\"target\":\"下一步\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"stage\":\"Start\",\"next\":\"Analysis\"},{\"stage\":\"Analysis\",\"next\":\"Design\"},{\"stage\":\"Design\",\"next\":\"Implementation\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"stage\",\"target\":\"next\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"source\":\"Idea\",\"target\":\"Research\"},{\"source\":\"Research\",\"target\":\"Prototype\"},{\"source\":\"Prototype\",\"target\":\"Testing\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}]"} +{"prompt":"展示{\"data\":[{\"source\":\"加载数据\",\"target\":\"逻辑回归\"},{\"source\":\"逻辑回归\",\"target\":\"模型预测\"},{\"source\":\"逻辑回归\",\"target\":\"读取参数\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"过程\":\"调查\",\"后续\":\"评估\"},{\"过程\":\"评估\",\"后续\":\"决策\"},{\"过程\":\"决策\",\"后续\":\"执行\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"过程\",\"target\":\"后续\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"phase\":\"Discovery\",\"next\":\"Definition\"},{\"phase\":\"Definition\",\"next\":\"Development\"},{\"phase\":\"Development\",\"next\":\"Delivery\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"phase\",\"target\":\"next\"}}]"} +{"prompt":"展示{\"data\":[{\"环节\":\"请假申请\",\"下一步\":\"领导审批\"},{\"环节\":\"请假申请\",\"下一步\":\"一级审批\"},{\"环节\":\"领导审批\",\"下一步\":\"二级审批\"},{\"环节\":\"一级审批\",\"下一步\":\"二级审批\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"环节\",\"target\":\"下一步\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"from\":\"Start\",\"to\":\"Prepare Ingredients\"},{\"from\":\"Prepare Ingredients\",\"to\":\"Cook Ingredients\"},{\"from\":\"Cook Ingredients\",\"to\":\"Serve Dish\"},{\"from\":\"Serve Dish\",\"to\":\"Finish\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"from\",\"target\":\"to\"}}]"} +{"prompt":"可视化{\"data\":[{\"步骤\":\"创建项目\",\"下一步\":\"设计原型\"},{\"步骤\":\"设计原型\",\"下一步\":\"开发应用\"},{\"步骤\":\"开发应用\",\"下一步\":\"测试应用\"},{\"步骤\":\"测试应用\",\"下一步\":\"部署应用\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"步骤\",\"target\":\"下一步\"}}]"} +{"prompt":"可视化{\"data\":[{\"stage\":\"Start\",\"next\":\"Analysis\"},{\"stage\":\"Analysis\",\"next\":\"Design\"},{\"stage\":\"Design\",\"next\":\"Implementation\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"stage\",\"target\":\"next\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"source\":\"Idea\",\"target\":\"Research\"},{\"source\":\"Research\",\"target\":\"Prototype\"},{\"source\":\"Prototype\",\"target\":\"Testing\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"source\":\"加载数据\",\"target\":\"逻辑回归\"},{\"source\":\"逻辑回归\",\"target\":\"模型预测\"},{\"source\":\"逻辑回归\",\"target\":\"读取参数\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"过程\":\"调查\",\"后续\":\"评估\"},{\"过程\":\"评估\",\"后续\":\"决策\"},{\"过程\":\"决策\",\"后续\":\"执行\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"过程\",\"target\":\"后续\"}}]"} +{"prompt":"可视化{\"data\":[{\"phase\":\"Discovery\",\"next\":\"Definition\"},{\"phase\":\"Definition\",\"next\":\"Development\"},{\"phase\":\"Development\",\"next\":\"Delivery\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"phase\",\"target\":\"next\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"环节\":\"请假申请\",\"下一步\":\"领导审批\"},{\"环节\":\"请假申请\",\"下一步\":\"一级审批\"},{\"环节\":\"领导审批\",\"下一步\":\"二级审批\"},{\"环节\":\"一级审批\",\"下一步\":\"二级审批\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"环节\",\"target\":\"下一步\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"from\":\"Start\",\"to\":\"Prepare Ingredients\"},{\"from\":\"Prepare Ingredients\",\"to\":\"Cook Ingredients\"},{\"from\":\"Cook Ingredients\",\"to\":\"Serve Dish\"},{\"from\":\"Serve Dish\",\"to\":\"Finish\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"from\",\"target\":\"to\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"步骤\":\"创建项目\",\"下一步\":\"设计原型\"},{\"步骤\":\"设计原型\",\"下一步\":\"开发应用\"},{\"步骤\":\"开发应用\",\"下一步\":\"测试应用\"},{\"步骤\":\"测试应用\",\"下一步\":\"部署应用\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"步骤\",\"target\":\"下一步\"}}]"} +{"prompt":"可视化{\"data\":[{\"stage\":\"Start\",\"next\":\"Analysis\"},{\"stage\":\"Analysis\",\"next\":\"Design\"},{\"stage\":\"Design\",\"next\":\"Implementation\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"stage\",\"target\":\"next\"}}]"} +{"prompt":"可视化{\"data\":[{\"source\":\"Idea\",\"target\":\"Research\"},{\"source\":\"Research\",\"target\":\"Prototype\"},{\"source\":\"Prototype\",\"target\":\"Testing\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"source\":\"加载数据\",\"target\":\"逻辑回归\"},{\"source\":\"逻辑回归\",\"target\":\"模型预测\"},{\"source\":\"逻辑回归\",\"target\":\"读取参数\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}]"} +{"prompt":"{\"data\":[{\"过程\":\"调查\",\"后续\":\"评估\"},{\"过程\":\"评估\",\"后续\":\"决策\"},{\"过程\":\"决策\",\"后续\":\"执行\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"过程\",\"target\":\"后续\"}}]"} +{"prompt":"{\"data\":[{\"phase\":\"Discovery\",\"next\":\"Definition\"},{\"phase\":\"Definition\",\"next\":\"Development\"},{\"phase\":\"Development\",\"next\":\"Delivery\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"phase\",\"target\":\"next\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"环节\":\"请假申请\",\"下一步\":\"领导审批\"},{\"环节\":\"请假申请\",\"下一步\":\"一级审批\"},{\"环节\":\"领导审批\",\"下一步\":\"二级审批\"},{\"环节\":\"一级审批\",\"下一步\":\"二级审批\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"环节\",\"target\":\"下一步\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"from\":\"Start\",\"to\":\"Prepare Ingredients\"},{\"from\":\"Prepare Ingredients\",\"to\":\"Cook Ingredients\"},{\"from\":\"Cook Ingredients\",\"to\":\"Serve Dish\"},{\"from\":\"Serve Dish\",\"to\":\"Finish\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"from\",\"target\":\"to\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"步骤\":\"创建项目\",\"下一步\":\"设计原型\"},{\"步骤\":\"设计原型\",\"下一步\":\"开发应用\"},{\"步骤\":\"开发应用\",\"下一步\":\"测试应用\"},{\"步骤\":\"测试应用\",\"下一步\":\"部署应用\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"步骤\",\"target\":\"下一步\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"stage\":\"Start\",\"next\":\"Analysis\"},{\"stage\":\"Analysis\",\"next\":\"Design\"},{\"stage\":\"Design\",\"next\":\"Implementation\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"stage\",\"target\":\"next\"}}]"} +{"prompt":"可视化{\"data\":[{\"source\":\"Idea\",\"target\":\"Research\"},{\"source\":\"Research\",\"target\":\"Prototype\"},{\"source\":\"Prototype\",\"target\":\"Testing\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}]"} +{"prompt":"{\"data\":[{\"source\":\"加载数据\",\"target\":\"逻辑回归\"},{\"source\":\"逻辑回归\",\"target\":\"模型预测\"},{\"source\":\"逻辑回归\",\"target\":\"读取参数\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}]"} +{"prompt":"展示{\"data\":[{\"过程\":\"调查\",\"后续\":\"评估\"},{\"过程\":\"评估\",\"后续\":\"决策\"},{\"过程\":\"决策\",\"后续\":\"执行\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"过程\",\"target\":\"后续\"}}]"} +{"prompt":"{\"data\":[{\"phase\":\"Discovery\",\"next\":\"Definition\"},{\"phase\":\"Definition\",\"next\":\"Development\"},{\"phase\":\"Development\",\"next\":\"Delivery\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"phase\",\"target\":\"next\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"环节\":\"请假申请\",\"下一步\":\"领导审批\"},{\"环节\":\"请假申请\",\"下一步\":\"一级审批\"},{\"环节\":\"领导审批\",\"下一步\":\"二级审批\"},{\"环节\":\"一级审批\",\"下一步\":\"二级审批\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"环节\",\"target\":\"下一步\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"from\":\"Start\",\"to\":\"Prepare Ingredients\"},{\"from\":\"Prepare Ingredients\",\"to\":\"Cook Ingredients\"},{\"from\":\"Cook Ingredients\",\"to\":\"Serve Dish\"},{\"from\":\"Serve Dish\",\"to\":\"Finish\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"from\",\"target\":\"to\"}}]"} +{"prompt":"展示{\"data\":[{\"步骤\":\"创建项目\",\"下一步\":\"设计原型\"},{\"步骤\":\"设计原型\",\"下一步\":\"开发应用\"},{\"步骤\":\"开发应用\",\"下一步\":\"测试应用\"},{\"步骤\":\"测试应用\",\"下一步\":\"部署应用\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"步骤\",\"target\":\"下一步\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"stage\":\"Start\",\"next\":\"Analysis\"},{\"stage\":\"Analysis\",\"next\":\"Design\"},{\"stage\":\"Design\",\"next\":\"Implementation\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"stage\",\"target\":\"next\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"source\":\"Idea\",\"target\":\"Research\"},{\"source\":\"Research\",\"target\":\"Prototype\"},{\"source\":\"Prototype\",\"target\":\"Testing\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}]"} +{"prompt":"展示{\"data\":[{\"source\":\"加载数据\",\"target\":\"逻辑回归\"},{\"source\":\"逻辑回归\",\"target\":\"模型预测\"},{\"source\":\"逻辑回归\",\"target\":\"读取参数\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}]"} +{"prompt":"展示{\"data\":[{\"过程\":\"调查\",\"后续\":\"评估\"},{\"过程\":\"评估\",\"后续\":\"决策\"},{\"过程\":\"决策\",\"后续\":\"执行\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"过程\",\"target\":\"后续\"}}]"} +{"prompt":"可视化{\"data\":[{\"phase\":\"Discovery\",\"next\":\"Definition\"},{\"phase\":\"Definition\",\"next\":\"Development\"},{\"phase\":\"Development\",\"next\":\"Delivery\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"phase\",\"target\":\"next\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"环节\":\"请假申请\",\"下一步\":\"领导审批\"},{\"环节\":\"请假申请\",\"下一步\":\"一级审批\"},{\"环节\":\"领导审批\",\"下一步\":\"二级审批\"},{\"环节\":\"一级审批\",\"下一步\":\"二级审批\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"环节\",\"target\":\"下一步\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"from\":\"Start\",\"to\":\"Prepare Ingredients\"},{\"from\":\"Prepare Ingredients\",\"to\":\"Cook Ingredients\"},{\"from\":\"Cook Ingredients\",\"to\":\"Serve Dish\"},{\"from\":\"Serve Dish\",\"to\":\"Finish\"}]}","answer":"[{\"type\":\"flow_diagram\",\"encode\":{\"source\":\"from\",\"target\":\"to\"}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Unemployment\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"USA\",\"Year\":2019,\"Unemployment\":3.5},{\"Country\":\"Canada\",\"Year\":2019,\"Unemployment\":5.7},{\"Country\":\"Germany\",\"Year\":2019,\"Unemployment\":3.2},{\"Country\":\"UK\",\"Year\":2019,\"Unemployment\":3.8},{\"Country\":\"France\",\"Year\":2019,\"Unemployment\":8.5}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"Unemployment\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"Unemployment\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"City\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Temperature\",\"dataType\":\"number\"}],\"data\":[{\"City\":\"London\",\"Year\":2018,\"Temperature\":15.5},{\"City\":\"Paris\",\"Year\":2018,\"Temperature\":17},{\"City\":\"New York\",\"Year\":2018,\"Temperature\":22.1},{\"City\":\"Tokyo\",\"Year\":2018,\"Temperature\":19.3},{\"City\":\"Sydney\",\"Year\":2018,\"Temperature\":23.1}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Year\"],\"size\":[\"Temperature\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Year\"],\"size\":[\"Temperature\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Sector\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Profit\",\"dataType\":\"number\"}],\"data\":[{\"Sector\":\"Technology\",\"Year\":2021,\"Profit\":1500},{\"Sector\":\"Healthcare\",\"Year\":2021,\"Profit\":830},{\"Sector\":\"Finance\",\"Year\":2021,\"Profit\":970},{\"Sector\":\"Energy\",\"Year\":2021,\"Profit\":650},{\"Sector\":\"Retail\",\"Year\":2021,\"Profit\":510}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Sector\"],\"y\":[\"Year\"],\"size\":[\"Profit\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Sector\"],\"y\":[\"Year\"],\"size\":[\"Profit\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"城市\",\"dataType\":\"string\"},{\"name\":\"年份\",\"dataType\":\"number\"},{\"name\":\"人口\",\"dataType\":\"number\"}],\"data\":[{\"城市\":\"北京\",\"年份\":2010,\"人口\":19612368},{\"城市\":\"上海\",\"年份\":2010,\"人口\":23019148},{\"城市\":\"广州\",\"年份\":2010,\"人口\":12700800},{\"城市\":\"深圳\",\"年份\":2010,\"人口\":10357813},{\"城市\":\"成都\",\"年份\":2010,\"人口\":14043972}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"年份\"],\"size\":[\"人口\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"年份\"],\"size\":[\"人口\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"年份\",\"dataType\":\"number\"},{\"name\":\"CO2 排放\",\"dataType\":\"number\"}],\"data\":[{\"国家\":\"美国\",\"年份\":2015,\"CO2 排放\":5000},{\"国家\":\"中国\",\"年份\":2015,\"CO2 排放\":10000},{\"国家\":\"印度\",\"年份\":2015,\"CO2 排放\":2500},{\"国家\":\"俄罗斯\",\"年份\":2015,\"CO2 排放\":1600},{\"国家\":\"日本\",\"年份\":2015,\"CO2 排放\":1200}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"年份\"],\"size\":[\"CO2 排放\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"年份\"],\"size\":[\"CO2 排放\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"GDP\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"USA\",\"Year\":2020,\"GDP\":21137518},{\"Country\":\"China\",\"Year\":2020,\"GDP\":14722801},{\"Country\":\"Japan\",\"Year\":2020,\"GDP\":5064873},{\"Country\":\"Germany\",\"Year\":2020,\"GDP\":3845630},{\"Country\":\"India\",\"Year\":2020,\"GDP\":2875142}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"GDP\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"GDP\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Unemployment\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"USA\",\"Year\":2019,\"Unemployment\":3.5},{\"Country\":\"Canada\",\"Year\":2019,\"Unemployment\":5.7},{\"Country\":\"Germany\",\"Year\":2019,\"Unemployment\":3.2},{\"Country\":\"UK\",\"Year\":2019,\"Unemployment\":3.8},{\"Country\":\"France\",\"Year\":2019,\"Unemployment\":8.5}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"Unemployment\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"Unemployment\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"City\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Temperature\",\"dataType\":\"number\"}],\"data\":[{\"City\":\"London\",\"Year\":2018,\"Temperature\":15.5},{\"City\":\"Paris\",\"Year\":2018,\"Temperature\":17},{\"City\":\"New York\",\"Year\":2018,\"Temperature\":22.1},{\"City\":\"Tokyo\",\"Year\":2018,\"Temperature\":19.3},{\"City\":\"Sydney\",\"Year\":2018,\"Temperature\":23.1}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Year\"],\"size\":[\"Temperature\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Year\"],\"size\":[\"Temperature\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Sector\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Profit\",\"dataType\":\"number\"}],\"data\":[{\"Sector\":\"Technology\",\"Year\":2021,\"Profit\":1500},{\"Sector\":\"Healthcare\",\"Year\":2021,\"Profit\":830},{\"Sector\":\"Finance\",\"Year\":2021,\"Profit\":970},{\"Sector\":\"Energy\",\"Year\":2021,\"Profit\":650},{\"Sector\":\"Retail\",\"Year\":2021,\"Profit\":510}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Sector\"],\"y\":[\"Year\"],\"size\":[\"Profit\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Sector\"],\"y\":[\"Year\"],\"size\":[\"Profit\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"城市\",\"dataType\":\"string\"},{\"name\":\"年份\",\"dataType\":\"number\"},{\"name\":\"人口\",\"dataType\":\"number\"}],\"data\":[{\"城市\":\"北京\",\"年份\":2010,\"人口\":19612368},{\"城市\":\"上海\",\"年份\":2010,\"人口\":23019148},{\"城市\":\"广州\",\"年份\":2010,\"人口\":12700800},{\"城市\":\"深圳\",\"年份\":2010,\"人口\":10357813},{\"城市\":\"成都\",\"年份\":2010,\"人口\":14043972}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"年份\"],\"size\":[\"人口\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"年份\"],\"size\":[\"人口\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"年份\",\"dataType\":\"number\"},{\"name\":\"CO2 排放\",\"dataType\":\"number\"}],\"data\":[{\"国家\":\"美国\",\"年份\":2015,\"CO2 排放\":5000},{\"国家\":\"中国\",\"年份\":2015,\"CO2 排放\":10000},{\"国家\":\"印度\",\"年份\":2015,\"CO2 排放\":2500},{\"国家\":\"俄罗斯\",\"年份\":2015,\"CO2 排放\":1600},{\"国家\":\"日本\",\"年份\":2015,\"CO2 排放\":1200}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"年份\"],\"size\":[\"CO2 排放\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"年份\"],\"size\":[\"CO2 排放\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"GDP\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"USA\",\"Year\":2020,\"GDP\":21137518},{\"Country\":\"China\",\"Year\":2020,\"GDP\":14722801},{\"Country\":\"Japan\",\"Year\":2020,\"GDP\":5064873},{\"Country\":\"Germany\",\"Year\":2020,\"GDP\":3845630},{\"Country\":\"India\",\"Year\":2020,\"GDP\":2875142}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"GDP\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"GDP\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Unemployment\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"USA\",\"Year\":2019,\"Unemployment\":3.5},{\"Country\":\"Canada\",\"Year\":2019,\"Unemployment\":5.7},{\"Country\":\"Germany\",\"Year\":2019,\"Unemployment\":3.2},{\"Country\":\"UK\",\"Year\":2019,\"Unemployment\":3.8},{\"Country\":\"France\",\"Year\":2019,\"Unemployment\":8.5}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"Unemployment\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"Unemployment\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"City\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Temperature\",\"dataType\":\"number\"}],\"data\":[{\"City\":\"London\",\"Year\":2018,\"Temperature\":15.5},{\"City\":\"Paris\",\"Year\":2018,\"Temperature\":17},{\"City\":\"New York\",\"Year\":2018,\"Temperature\":22.1},{\"City\":\"Tokyo\",\"Year\":2018,\"Temperature\":19.3},{\"City\":\"Sydney\",\"Year\":2018,\"Temperature\":23.1}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Year\"],\"size\":[\"Temperature\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Year\"],\"size\":[\"Temperature\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Sector\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Profit\",\"dataType\":\"number\"}],\"data\":[{\"Sector\":\"Technology\",\"Year\":2021,\"Profit\":1500},{\"Sector\":\"Healthcare\",\"Year\":2021,\"Profit\":830},{\"Sector\":\"Finance\",\"Year\":2021,\"Profit\":970},{\"Sector\":\"Energy\",\"Year\":2021,\"Profit\":650},{\"Sector\":\"Retail\",\"Year\":2021,\"Profit\":510}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Sector\"],\"y\":[\"Year\"],\"size\":[\"Profit\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Sector\"],\"y\":[\"Year\"],\"size\":[\"Profit\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"城市\",\"dataType\":\"string\"},{\"name\":\"年份\",\"dataType\":\"number\"},{\"name\":\"人口\",\"dataType\":\"number\"}],\"data\":[{\"城市\":\"北京\",\"年份\":2010,\"人口\":19612368},{\"城市\":\"上海\",\"年份\":2010,\"人口\":23019148},{\"城市\":\"广州\",\"年份\":2010,\"人口\":12700800},{\"城市\":\"深圳\",\"年份\":2010,\"人口\":10357813},{\"城市\":\"成都\",\"年份\":2010,\"人口\":14043972}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"年份\"],\"size\":[\"人口\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"年份\"],\"size\":[\"人口\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"年份\",\"dataType\":\"number\"},{\"name\":\"CO2 排放\",\"dataType\":\"number\"}],\"data\":[{\"国家\":\"美国\",\"年份\":2015,\"CO2 排放\":5000},{\"国家\":\"中国\",\"年份\":2015,\"CO2 排放\":10000},{\"国家\":\"印度\",\"年份\":2015,\"CO2 排放\":2500},{\"国家\":\"俄罗斯\",\"年份\":2015,\"CO2 排放\":1600},{\"国家\":\"日本\",\"年份\":2015,\"CO2 排放\":1200}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"年份\"],\"size\":[\"CO2 排放\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"年份\"],\"size\":[\"CO2 排放\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"GDP\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"USA\",\"Year\":2020,\"GDP\":21137518},{\"Country\":\"China\",\"Year\":2020,\"GDP\":14722801},{\"Country\":\"Japan\",\"Year\":2020,\"GDP\":5064873},{\"Country\":\"Germany\",\"Year\":2020,\"GDP\":3845630},{\"Country\":\"India\",\"Year\":2020,\"GDP\":2875142}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"GDP\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"GDP\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Unemployment\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"USA\",\"Year\":2019,\"Unemployment\":3.5},{\"Country\":\"Canada\",\"Year\":2019,\"Unemployment\":5.7},{\"Country\":\"Germany\",\"Year\":2019,\"Unemployment\":3.2},{\"Country\":\"UK\",\"Year\":2019,\"Unemployment\":3.8},{\"Country\":\"France\",\"Year\":2019,\"Unemployment\":8.5}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"Unemployment\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"Unemployment\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"City\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Temperature\",\"dataType\":\"number\"}],\"data\":[{\"City\":\"London\",\"Year\":2018,\"Temperature\":15.5},{\"City\":\"Paris\",\"Year\":2018,\"Temperature\":17},{\"City\":\"New York\",\"Year\":2018,\"Temperature\":22.1},{\"City\":\"Tokyo\",\"Year\":2018,\"Temperature\":19.3},{\"City\":\"Sydney\",\"Year\":2018,\"Temperature\":23.1}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Year\"],\"size\":[\"Temperature\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Year\"],\"size\":[\"Temperature\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"Sector\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Profit\",\"dataType\":\"number\"}],\"data\":[{\"Sector\":\"Technology\",\"Year\":2021,\"Profit\":1500},{\"Sector\":\"Healthcare\",\"Year\":2021,\"Profit\":830},{\"Sector\":\"Finance\",\"Year\":2021,\"Profit\":970},{\"Sector\":\"Energy\",\"Year\":2021,\"Profit\":650},{\"Sector\":\"Retail\",\"Year\":2021,\"Profit\":510}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Sector\"],\"y\":[\"Year\"],\"size\":[\"Profit\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Sector\"],\"y\":[\"Year\"],\"size\":[\"Profit\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"城市\",\"dataType\":\"string\"},{\"name\":\"年份\",\"dataType\":\"number\"},{\"name\":\"人口\",\"dataType\":\"number\"}],\"data\":[{\"城市\":\"北京\",\"年份\":2010,\"人口\":19612368},{\"城市\":\"上海\",\"年份\":2010,\"人口\":23019148},{\"城市\":\"广州\",\"年份\":2010,\"人口\":12700800},{\"城市\":\"深圳\",\"年份\":2010,\"人口\":10357813},{\"城市\":\"成都\",\"年份\":2010,\"人口\":14043972}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"年份\"],\"size\":[\"人口\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"年份\"],\"size\":[\"人口\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"年份\",\"dataType\":\"number\"},{\"name\":\"CO2 排放\",\"dataType\":\"number\"}],\"data\":[{\"国家\":\"美国\",\"年份\":2015,\"CO2 排放\":5000},{\"国家\":\"中国\",\"年份\":2015,\"CO2 排放\":10000},{\"国家\":\"印度\",\"年份\":2015,\"CO2 排放\":2500},{\"国家\":\"俄罗斯\",\"年份\":2015,\"CO2 排放\":1600},{\"国家\":\"日本\",\"年份\":2015,\"CO2 排放\":1200}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"年份\"],\"size\":[\"CO2 排放\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"年份\"],\"size\":[\"CO2 排放\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"GDP\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"USA\",\"Year\":2020,\"GDP\":21137518},{\"Country\":\"China\",\"Year\":2020,\"GDP\":14722801},{\"Country\":\"Japan\",\"Year\":2020,\"GDP\":5064873},{\"Country\":\"Germany\",\"Year\":2020,\"GDP\":3845630},{\"Country\":\"India\",\"Year\":2020,\"GDP\":2875142}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"GDP\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"GDP\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Unemployment\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"USA\",\"Year\":2019,\"Unemployment\":3.5},{\"Country\":\"Canada\",\"Year\":2019,\"Unemployment\":5.7},{\"Country\":\"Germany\",\"Year\":2019,\"Unemployment\":3.2},{\"Country\":\"UK\",\"Year\":2019,\"Unemployment\":3.8},{\"Country\":\"France\",\"Year\":2019,\"Unemployment\":8.5}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"Unemployment\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"Unemployment\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"City\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Temperature\",\"dataType\":\"number\"}],\"data\":[{\"City\":\"London\",\"Year\":2018,\"Temperature\":15.5},{\"City\":\"Paris\",\"Year\":2018,\"Temperature\":17},{\"City\":\"New York\",\"Year\":2018,\"Temperature\":22.1},{\"City\":\"Tokyo\",\"Year\":2018,\"Temperature\":19.3},{\"City\":\"Sydney\",\"Year\":2018,\"Temperature\":23.1}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Year\"],\"size\":[\"Temperature\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Year\"],\"size\":[\"Temperature\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Sector\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Profit\",\"dataType\":\"number\"}],\"data\":[{\"Sector\":\"Technology\",\"Year\":2021,\"Profit\":1500},{\"Sector\":\"Healthcare\",\"Year\":2021,\"Profit\":830},{\"Sector\":\"Finance\",\"Year\":2021,\"Profit\":970},{\"Sector\":\"Energy\",\"Year\":2021,\"Profit\":650},{\"Sector\":\"Retail\",\"Year\":2021,\"Profit\":510}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Sector\"],\"y\":[\"Year\"],\"size\":[\"Profit\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Sector\"],\"y\":[\"Year\"],\"size\":[\"Profit\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"城市\",\"dataType\":\"string\"},{\"name\":\"年份\",\"dataType\":\"number\"},{\"name\":\"人口\",\"dataType\":\"number\"}],\"data\":[{\"城市\":\"北京\",\"年份\":2010,\"人口\":19612368},{\"城市\":\"上海\",\"年份\":2010,\"人口\":23019148},{\"城市\":\"广州\",\"年份\":2010,\"人口\":12700800},{\"城市\":\"深圳\",\"年份\":2010,\"人口\":10357813},{\"城市\":\"成都\",\"年份\":2010,\"人口\":14043972}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"年份\"],\"size\":[\"人口\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"年份\"],\"size\":[\"人口\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"年份\",\"dataType\":\"number\"},{\"name\":\"CO2 排放\",\"dataType\":\"number\"}],\"data\":[{\"国家\":\"美国\",\"年份\":2015,\"CO2 排放\":5000},{\"国家\":\"中国\",\"年份\":2015,\"CO2 排放\":10000},{\"国家\":\"印度\",\"年份\":2015,\"CO2 排放\":2500},{\"国家\":\"俄罗斯\",\"年份\":2015,\"CO2 排放\":1600},{\"国家\":\"日本\",\"年份\":2015,\"CO2 排放\":1200}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"年份\"],\"size\":[\"CO2 排放\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"年份\"],\"size\":[\"CO2 排放\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"GDP\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"USA\",\"Year\":2020,\"GDP\":21137518},{\"Country\":\"China\",\"Year\":2020,\"GDP\":14722801},{\"Country\":\"Japan\",\"Year\":2020,\"GDP\":5064873},{\"Country\":\"Germany\",\"Year\":2020,\"GDP\":3845630},{\"Country\":\"India\",\"Year\":2020,\"GDP\":2875142}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"GDP\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"GDP\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Unemployment\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"USA\",\"Year\":2019,\"Unemployment\":3.5},{\"Country\":\"Canada\",\"Year\":2019,\"Unemployment\":5.7},{\"Country\":\"Germany\",\"Year\":2019,\"Unemployment\":3.2},{\"Country\":\"UK\",\"Year\":2019,\"Unemployment\":3.8},{\"Country\":\"France\",\"Year\":2019,\"Unemployment\":8.5}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"Unemployment\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"Unemployment\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"City\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Temperature\",\"dataType\":\"number\"}],\"data\":[{\"City\":\"London\",\"Year\":2018,\"Temperature\":15.5},{\"City\":\"Paris\",\"Year\":2018,\"Temperature\":17},{\"City\":\"New York\",\"Year\":2018,\"Temperature\":22.1},{\"City\":\"Tokyo\",\"Year\":2018,\"Temperature\":19.3},{\"City\":\"Sydney\",\"Year\":2018,\"Temperature\":23.1}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Year\"],\"size\":[\"Temperature\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Year\"],\"size\":[\"Temperature\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Sector\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Profit\",\"dataType\":\"number\"}],\"data\":[{\"Sector\":\"Technology\",\"Year\":2021,\"Profit\":1500},{\"Sector\":\"Healthcare\",\"Year\":2021,\"Profit\":830},{\"Sector\":\"Finance\",\"Year\":2021,\"Profit\":970},{\"Sector\":\"Energy\",\"Year\":2021,\"Profit\":650},{\"Sector\":\"Retail\",\"Year\":2021,\"Profit\":510}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Sector\"],\"y\":[\"Year\"],\"size\":[\"Profit\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Sector\"],\"y\":[\"Year\"],\"size\":[\"Profit\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"城市\",\"dataType\":\"string\"},{\"name\":\"年份\",\"dataType\":\"number\"},{\"name\":\"人口\",\"dataType\":\"number\"}],\"data\":[{\"城市\":\"北京\",\"年份\":2010,\"人口\":19612368},{\"城市\":\"上海\",\"年份\":2010,\"人口\":23019148},{\"城市\":\"广州\",\"年份\":2010,\"人口\":12700800},{\"城市\":\"深圳\",\"年份\":2010,\"人口\":10357813},{\"城市\":\"成都\",\"年份\":2010,\"人口\":14043972}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"年份\"],\"size\":[\"人口\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"年份\"],\"size\":[\"人口\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"年份\",\"dataType\":\"number\"},{\"name\":\"CO2 排放\",\"dataType\":\"number\"}],\"data\":[{\"国家\":\"美国\",\"年份\":2015,\"CO2 排放\":5000},{\"国家\":\"中国\",\"年份\":2015,\"CO2 排放\":10000},{\"国家\":\"印度\",\"年份\":2015,\"CO2 排放\":2500},{\"国家\":\"俄罗斯\",\"年份\":2015,\"CO2 排放\":1600},{\"国家\":\"日本\",\"年份\":2015,\"CO2 排放\":1200}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"年份\"],\"size\":[\"CO2 排放\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"年份\"],\"size\":[\"CO2 排放\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"GDP\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"USA\",\"Year\":2020,\"GDP\":21137518},{\"Country\":\"China\",\"Year\":2020,\"GDP\":14722801},{\"Country\":\"Japan\",\"Year\":2020,\"GDP\":5064873},{\"Country\":\"Germany\",\"Year\":2020,\"GDP\":3845630},{\"Country\":\"India\",\"Year\":2020,\"GDP\":2875142}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"GDP\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"GDP\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Unemployment\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"USA\",\"Year\":2019,\"Unemployment\":3.5},{\"Country\":\"Canada\",\"Year\":2019,\"Unemployment\":5.7},{\"Country\":\"Germany\",\"Year\":2019,\"Unemployment\":3.2},{\"Country\":\"UK\",\"Year\":2019,\"Unemployment\":3.8},{\"Country\":\"France\",\"Year\":2019,\"Unemployment\":8.5}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"Unemployment\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"Unemployment\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"City\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Temperature\",\"dataType\":\"number\"}],\"data\":[{\"City\":\"London\",\"Year\":2018,\"Temperature\":15.5},{\"City\":\"Paris\",\"Year\":2018,\"Temperature\":17},{\"City\":\"New York\",\"Year\":2018,\"Temperature\":22.1},{\"City\":\"Tokyo\",\"Year\":2018,\"Temperature\":19.3},{\"City\":\"Sydney\",\"Year\":2018,\"Temperature\":23.1}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Year\"],\"size\":[\"Temperature\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Year\"],\"size\":[\"Temperature\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"Sector\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Profit\",\"dataType\":\"number\"}],\"data\":[{\"Sector\":\"Technology\",\"Year\":2021,\"Profit\":1500},{\"Sector\":\"Healthcare\",\"Year\":2021,\"Profit\":830},{\"Sector\":\"Finance\",\"Year\":2021,\"Profit\":970},{\"Sector\":\"Energy\",\"Year\":2021,\"Profit\":650},{\"Sector\":\"Retail\",\"Year\":2021,\"Profit\":510}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Sector\"],\"y\":[\"Year\"],\"size\":[\"Profit\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Sector\"],\"y\":[\"Year\"],\"size\":[\"Profit\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"城市\",\"dataType\":\"string\"},{\"name\":\"年份\",\"dataType\":\"number\"},{\"name\":\"人口\",\"dataType\":\"number\"}],\"data\":[{\"城市\":\"北京\",\"年份\":2010,\"人口\":19612368},{\"城市\":\"上海\",\"年份\":2010,\"人口\":23019148},{\"城市\":\"广州\",\"年份\":2010,\"人口\":12700800},{\"城市\":\"深圳\",\"年份\":2010,\"人口\":10357813},{\"城市\":\"成都\",\"年份\":2010,\"人口\":14043972}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"年份\"],\"size\":[\"人口\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"年份\"],\"size\":[\"人口\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"年份\",\"dataType\":\"number\"},{\"name\":\"CO2 排放\",\"dataType\":\"number\"}],\"data\":[{\"国家\":\"美国\",\"年份\":2015,\"CO2 排放\":5000},{\"国家\":\"中国\",\"年份\":2015,\"CO2 排放\":10000},{\"国家\":\"印度\",\"年份\":2015,\"CO2 排放\":2500},{\"国家\":\"俄罗斯\",\"年份\":2015,\"CO2 排放\":1600},{\"国家\":\"日本\",\"年份\":2015,\"CO2 排放\":1200}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"年份\"],\"size\":[\"CO2 排放\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"年份\"],\"size\":[\"CO2 排放\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"GDP\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"USA\",\"Year\":2020,\"GDP\":21137518},{\"Country\":\"China\",\"Year\":2020,\"GDP\":14722801},{\"Country\":\"Japan\",\"Year\":2020,\"GDP\":5064873},{\"Country\":\"Germany\",\"Year\":2020,\"GDP\":3845630},{\"Country\":\"India\",\"Year\":2020,\"GDP\":2875142}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"GDP\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"GDP\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Unemployment\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"USA\",\"Year\":2019,\"Unemployment\":3.5},{\"Country\":\"Canada\",\"Year\":2019,\"Unemployment\":5.7},{\"Country\":\"Germany\",\"Year\":2019,\"Unemployment\":3.2},{\"Country\":\"UK\",\"Year\":2019,\"Unemployment\":3.8},{\"Country\":\"France\",\"Year\":2019,\"Unemployment\":8.5}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"Unemployment\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"Unemployment\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"City\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Temperature\",\"dataType\":\"number\"}],\"data\":[{\"City\":\"London\",\"Year\":2018,\"Temperature\":15.5},{\"City\":\"Paris\",\"Year\":2018,\"Temperature\":17},{\"City\":\"New York\",\"Year\":2018,\"Temperature\":22.1},{\"City\":\"Tokyo\",\"Year\":2018,\"Temperature\":19.3},{\"City\":\"Sydney\",\"Year\":2018,\"Temperature\":23.1}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Year\"],\"size\":[\"Temperature\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Year\"],\"size\":[\"Temperature\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"Sector\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Profit\",\"dataType\":\"number\"}],\"data\":[{\"Sector\":\"Technology\",\"Year\":2021,\"Profit\":1500},{\"Sector\":\"Healthcare\",\"Year\":2021,\"Profit\":830},{\"Sector\":\"Finance\",\"Year\":2021,\"Profit\":970},{\"Sector\":\"Energy\",\"Year\":2021,\"Profit\":650},{\"Sector\":\"Retail\",\"Year\":2021,\"Profit\":510}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Sector\"],\"y\":[\"Year\"],\"size\":[\"Profit\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Sector\"],\"y\":[\"Year\"],\"size\":[\"Profit\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"城市\",\"dataType\":\"string\"},{\"name\":\"年份\",\"dataType\":\"number\"},{\"name\":\"人口\",\"dataType\":\"number\"}],\"data\":[{\"城市\":\"北京\",\"年份\":2010,\"人口\":19612368},{\"城市\":\"上海\",\"年份\":2010,\"人口\":23019148},{\"城市\":\"广州\",\"年份\":2010,\"人口\":12700800},{\"城市\":\"深圳\",\"年份\":2010,\"人口\":10357813},{\"城市\":\"成都\",\"年份\":2010,\"人口\":14043972}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"年份\"],\"size\":[\"人口\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"年份\"],\"size\":[\"人口\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"年份\",\"dataType\":\"number\"},{\"name\":\"CO2 排放\",\"dataType\":\"number\"}],\"data\":[{\"国家\":\"美国\",\"年份\":2015,\"CO2 排放\":5000},{\"国家\":\"中国\",\"年份\":2015,\"CO2 排放\":10000},{\"国家\":\"印度\",\"年份\":2015,\"CO2 排放\":2500},{\"国家\":\"俄罗斯\",\"年份\":2015,\"CO2 排放\":1600},{\"国家\":\"日本\",\"年份\":2015,\"CO2 排放\":1200}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"年份\"],\"size\":[\"CO2 排放\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"年份\"],\"size\":[\"CO2 排放\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"GDP\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"USA\",\"Year\":2020,\"GDP\":21137518},{\"Country\":\"China\",\"Year\":2020,\"GDP\":14722801},{\"Country\":\"Japan\",\"Year\":2020,\"GDP\":5064873},{\"Country\":\"Germany\",\"Year\":2020,\"GDP\":3845630},{\"Country\":\"India\",\"Year\":2020,\"GDP\":2875142}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"GDP\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"GDP\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Unemployment\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"USA\",\"Year\":2019,\"Unemployment\":3.5},{\"Country\":\"Canada\",\"Year\":2019,\"Unemployment\":5.7},{\"Country\":\"Germany\",\"Year\":2019,\"Unemployment\":3.2},{\"Country\":\"UK\",\"Year\":2019,\"Unemployment\":3.8},{\"Country\":\"France\",\"Year\":2019,\"Unemployment\":8.5}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"Unemployment\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"Unemployment\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"City\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Temperature\",\"dataType\":\"number\"}],\"data\":[{\"City\":\"London\",\"Year\":2018,\"Temperature\":15.5},{\"City\":\"Paris\",\"Year\":2018,\"Temperature\":17},{\"City\":\"New York\",\"Year\":2018,\"Temperature\":22.1},{\"City\":\"Tokyo\",\"Year\":2018,\"Temperature\":19.3},{\"City\":\"Sydney\",\"Year\":2018,\"Temperature\":23.1}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Year\"],\"size\":[\"Temperature\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Year\"],\"size\":[\"Temperature\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"Sector\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Profit\",\"dataType\":\"number\"}],\"data\":[{\"Sector\":\"Technology\",\"Year\":2021,\"Profit\":1500},{\"Sector\":\"Healthcare\",\"Year\":2021,\"Profit\":830},{\"Sector\":\"Finance\",\"Year\":2021,\"Profit\":970},{\"Sector\":\"Energy\",\"Year\":2021,\"Profit\":650},{\"Sector\":\"Retail\",\"Year\":2021,\"Profit\":510}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Sector\"],\"y\":[\"Year\"],\"size\":[\"Profit\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Sector\"],\"y\":[\"Year\"],\"size\":[\"Profit\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"城市\",\"dataType\":\"string\"},{\"name\":\"年份\",\"dataType\":\"number\"},{\"name\":\"人口\",\"dataType\":\"number\"}],\"data\":[{\"城市\":\"北京\",\"年份\":2010,\"人口\":19612368},{\"城市\":\"上海\",\"年份\":2010,\"人口\":23019148},{\"城市\":\"广州\",\"年份\":2010,\"人口\":12700800},{\"城市\":\"深圳\",\"年份\":2010,\"人口\":10357813},{\"城市\":\"成都\",\"年份\":2010,\"人口\":14043972}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"年份\"],\"size\":[\"人口\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"年份\"],\"size\":[\"人口\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"年份\",\"dataType\":\"number\"},{\"name\":\"CO2 排放\",\"dataType\":\"number\"}],\"data\":[{\"国家\":\"美国\",\"年份\":2015,\"CO2 排放\":5000},{\"国家\":\"中国\",\"年份\":2015,\"CO2 排放\":10000},{\"国家\":\"印度\",\"年份\":2015,\"CO2 排放\":2500},{\"国家\":\"俄罗斯\",\"年份\":2015,\"CO2 排放\":1600},{\"国家\":\"日本\",\"年份\":2015,\"CO2 排放\":1200}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"年份\"],\"size\":[\"CO2 排放\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"年份\"],\"size\":[\"CO2 排放\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"GDP\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"USA\",\"Year\":2020,\"GDP\":21137518},{\"Country\":\"China\",\"Year\":2020,\"GDP\":14722801},{\"Country\":\"Japan\",\"Year\":2020,\"GDP\":5064873},{\"Country\":\"Germany\",\"Year\":2020,\"GDP\":3845630},{\"Country\":\"India\",\"Year\":2020,\"GDP\":2875142}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"GDP\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"GDP\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Unemployment\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"USA\",\"Year\":2019,\"Unemployment\":3.5},{\"Country\":\"Canada\",\"Year\":2019,\"Unemployment\":5.7},{\"Country\":\"Germany\",\"Year\":2019,\"Unemployment\":3.2},{\"Country\":\"UK\",\"Year\":2019,\"Unemployment\":3.8},{\"Country\":\"France\",\"Year\":2019,\"Unemployment\":8.5}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"Unemployment\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"Unemployment\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"City\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Temperature\",\"dataType\":\"number\"}],\"data\":[{\"City\":\"London\",\"Year\":2018,\"Temperature\":15.5},{\"City\":\"Paris\",\"Year\":2018,\"Temperature\":17},{\"City\":\"New York\",\"Year\":2018,\"Temperature\":22.1},{\"City\":\"Tokyo\",\"Year\":2018,\"Temperature\":19.3},{\"City\":\"Sydney\",\"Year\":2018,\"Temperature\":23.1}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Year\"],\"size\":[\"Temperature\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Year\"],\"size\":[\"Temperature\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"Sector\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Profit\",\"dataType\":\"number\"}],\"data\":[{\"Sector\":\"Technology\",\"Year\":2021,\"Profit\":1500},{\"Sector\":\"Healthcare\",\"Year\":2021,\"Profit\":830},{\"Sector\":\"Finance\",\"Year\":2021,\"Profit\":970},{\"Sector\":\"Energy\",\"Year\":2021,\"Profit\":650},{\"Sector\":\"Retail\",\"Year\":2021,\"Profit\":510}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Sector\"],\"y\":[\"Year\"],\"size\":[\"Profit\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Sector\"],\"y\":[\"Year\"],\"size\":[\"Profit\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"城市\",\"dataType\":\"string\"},{\"name\":\"年份\",\"dataType\":\"number\"},{\"name\":\"人口\",\"dataType\":\"number\"}],\"data\":[{\"城市\":\"北京\",\"年份\":2010,\"人口\":19612368},{\"城市\":\"上海\",\"年份\":2010,\"人口\":23019148},{\"城市\":\"广州\",\"年份\":2010,\"人口\":12700800},{\"城市\":\"深圳\",\"年份\":2010,\"人口\":10357813},{\"城市\":\"成都\",\"年份\":2010,\"人口\":14043972}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"年份\"],\"size\":[\"人口\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"年份\"],\"size\":[\"人口\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"年份\",\"dataType\":\"number\"},{\"name\":\"CO2 排放\",\"dataType\":\"number\"}],\"data\":[{\"国家\":\"美国\",\"年份\":2015,\"CO2 排放\":5000},{\"国家\":\"中国\",\"年份\":2015,\"CO2 排放\":10000},{\"国家\":\"印度\",\"年份\":2015,\"CO2 排放\":2500},{\"国家\":\"俄罗斯\",\"年份\":2015,\"CO2 排放\":1600},{\"国家\":\"日本\",\"年份\":2015,\"CO2 排放\":1200}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"年份\"],\"size\":[\"CO2 排放\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"年份\"],\"size\":[\"CO2 排放\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"GDP\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"USA\",\"Year\":2020,\"GDP\":21137518},{\"Country\":\"China\",\"Year\":2020,\"GDP\":14722801},{\"Country\":\"Japan\",\"Year\":2020,\"GDP\":5064873},{\"Country\":\"Germany\",\"Year\":2020,\"GDP\":3845630},{\"Country\":\"India\",\"Year\":2020,\"GDP\":2875142}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"GDP\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"GDP\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Unemployment\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"USA\",\"Year\":2019,\"Unemployment\":3.5},{\"Country\":\"Canada\",\"Year\":2019,\"Unemployment\":5.7},{\"Country\":\"Germany\",\"Year\":2019,\"Unemployment\":3.2},{\"Country\":\"UK\",\"Year\":2019,\"Unemployment\":3.8},{\"Country\":\"France\",\"Year\":2019,\"Unemployment\":8.5}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"Unemployment\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"Unemployment\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"City\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Temperature\",\"dataType\":\"number\"}],\"data\":[{\"City\":\"London\",\"Year\":2018,\"Temperature\":15.5},{\"City\":\"Paris\",\"Year\":2018,\"Temperature\":17},{\"City\":\"New York\",\"Year\":2018,\"Temperature\":22.1},{\"City\":\"Tokyo\",\"Year\":2018,\"Temperature\":19.3},{\"City\":\"Sydney\",\"Year\":2018,\"Temperature\":23.1}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Year\"],\"size\":[\"Temperature\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"City\"],\"y\":[\"Year\"],\"size\":[\"Temperature\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"Sector\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"Profit\",\"dataType\":\"number\"}],\"data\":[{\"Sector\":\"Technology\",\"Year\":2021,\"Profit\":1500},{\"Sector\":\"Healthcare\",\"Year\":2021,\"Profit\":830},{\"Sector\":\"Finance\",\"Year\":2021,\"Profit\":970},{\"Sector\":\"Energy\",\"Year\":2021,\"Profit\":650},{\"Sector\":\"Retail\",\"Year\":2021,\"Profit\":510}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Sector\"],\"y\":[\"Year\"],\"size\":[\"Profit\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Sector\"],\"y\":[\"Year\"],\"size\":[\"Profit\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"城市\",\"dataType\":\"string\"},{\"name\":\"年份\",\"dataType\":\"number\"},{\"name\":\"人口\",\"dataType\":\"number\"}],\"data\":[{\"城市\":\"北京\",\"年份\":2010,\"人口\":19612368},{\"城市\":\"上海\",\"年份\":2010,\"人口\":23019148},{\"城市\":\"广州\",\"年份\":2010,\"人口\":12700800},{\"城市\":\"深圳\",\"年份\":2010,\"人口\":10357813},{\"城市\":\"成都\",\"年份\":2010,\"人口\":14043972}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"年份\"],\"size\":[\"人口\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"城市\"],\"y\":[\"年份\"],\"size\":[\"人口\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"年份\",\"dataType\":\"number\"},{\"name\":\"CO2 排放\",\"dataType\":\"number\"}],\"data\":[{\"国家\":\"美国\",\"年份\":2015,\"CO2 排放\":5000},{\"国家\":\"中国\",\"年份\":2015,\"CO2 排放\":10000},{\"国家\":\"印度\",\"年份\":2015,\"CO2 排放\":2500},{\"国家\":\"俄罗斯\",\"年份\":2015,\"CO2 排放\":1600},{\"国家\":\"日本\",\"年份\":2015,\"CO2 排放\":1200}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"年份\"],\"size\":[\"CO2 排放\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"国家\"],\"y\":[\"年份\"],\"size\":[\"CO2 排放\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"Country\",\"dataType\":\"string\"},{\"name\":\"Year\",\"dataType\":\"number\"},{\"name\":\"GDP\",\"dataType\":\"number\"}],\"data\":[{\"Country\":\"USA\",\"Year\":2020,\"GDP\":21137518},{\"Country\":\"China\",\"Year\":2020,\"GDP\":14722801},{\"Country\":\"Japan\",\"Year\":2020,\"GDP\":5064873},{\"Country\":\"Germany\",\"Year\":2020,\"GDP\":3845630},{\"Country\":\"India\",\"Year\":2020,\"GDP\":2875142}]}","answer":"[{\"type\":\"heatmap\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"GDP\"]}},{\"type\":\"scatter\",\"encode\":{\"x\":[\"Country\"],\"y\":[\"Year\"],\"size\":[\"GDP\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Region\":\"California\",\"output\":423967,\"longitude\":-119.4179,\"latitude\":36.7783},{\"Region\":\"Texas\",\"output\":695662,\"longitude\":-99.9018,\"latitude\":31.9686},{\"Region\":\"Alaska\",\"output\":1717850,\"longitude\":-149.4937,\"latitude\":64.2008}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Region\"],\"color\":[\"output\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Landmark\":\"Eiffel Tower\",\"visitors_per_year\":7000000,\"longitude\":2.2945,\"latitude\":48.8584},{\"Landmark\":\"Colosseum\",\"visitors_per_year\":5500000,\"longitude\":12.4924,\"latitude\":41.8902},{\"Landmark\":\"Statue of Liberty\",\"visitors_per_year\":4300000,\"longitude\":-74.0445,\"latitude\":40.6892}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Landmark\"],\"color\":[\"visitors_per_year\"]}}]"} +{"prompt":"{\"data\":[{\"国家\":\"中国\",\"GDP\":14300000000000,\"longitude\":104.1954,\"latitude\":35.8617},{\"国家\":\"美国\",\"GDP\":21430000000000,\"longitude\":-95.7129,\"latitude\":37.0902},{\"国家\":\"日本\",\"GDP\":5080000000000,\"longitude\":138.2529,\"latitude\":36.2048}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"国家\"],\"color\":[\"GDP\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.2869,\"cy\":51.3879},{\"name\":\"Croydon\",\"cx\":-0.0872,\"cy\":51.3553},{\"name\":\"Bromley\",\"cx\":0.0515,\"cy\":51.372},{\"name\":\"Hounslow\",\"cx\":-0.3672,\"cy\":51.4684},{\"name\":\"Ealing\",\"cx\":-0.331,\"cy\":51.5225},{\"name\":\"Havering\",\"cx\":0.2211,\"cy\":51.5644}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.28691465719243003,\"cy\":51.387893353778395},{\"name\":\"Croydon\",\"cx\":-0.08716546101532906,\"cy\":51.355317416374},{\"name\":\"Bromley\",\"cx\":0.051536586180461884,\"cy\":51.37198402033694},{\"name\":\"Hounslow\",\"cx\":-0.3671516396902454,\"cy\":51.46838045919461},{\"name\":\"Ealing\",\"cx\":-0.331019323573572,\"cy\":51.52247610268018},{\"name\":\"Havering\",\"cx\":0.22111695897456907,\"cy\":51.564368109593914},{\"name\":\"Hillingdon\",\"cx\":-0.4456619192134244,\"cy\":51.54147118065276},{\"name\":\"Harrow\",\"cx\":-0.34127462993183943,\"cy\":51.59771852185307},{\"name\":\"Brent\",\"cx\":-0.2678117446868589,\"cy\":51.558554439571225},{\"name\":\"Barnet\",\"cx\":-0.2100178905687616,\"cy\":51.61601840050092},{\"name\":\"Lambeth\",\"cx\":-0.11827879184555543,\"cy\":51.45307915598091},{\"name\":\"Southwark\",\"cx\":-0.07460248417459615,\"cy\":51.47313736252929},{\"name\":\"Lewisham\",\"cx\":-0.020251210147097444,\"cy\":51.44808622366465},{\"name\":\"Greenwich\",\"cx\":0.05623854022441538,\"cy\":51.47280349330009},{\"name\":\"Bexley\",\"cx\":0.14034521936844538,\"cy\":51.45881060129503},{\"name\":\"Enfield\",\"cx\":-0.08726531756552813,\"cy\":51.650991897325454},{\"name\":\"Waltham Forest\",\"cx\":-0.012645389036967391,\"cy\":51.59402179942259},{\"name\":\"Redbridge\",\"cx\":0.07586498666349965,\"cy\":51.58566980239283},{\"name\":\"Sutton\",\"cx\":-0.1775706458949663,\"cy\":51.36208881322784},{\"name\":\"Richmond upon Thames\",\"cx\":-0.312989912939369,\"cy\":51.44217087768007},{\"name\":\"Merton\",\"cx\":-0.19724686451592524,\"cy\":51.40994982121643},{\"name\":\"Wandsworth\",\"cx\":-0.18644255213923716,\"cy\":51.45135372974042},{\"name\":\"Hammersmith and Fulham\",\"cx\":-0.22312501860130696,\"cy\":51.49760349773975},{\"name\":\"Kensington and Chelsea\",\"cx\":-0.1926146417708775,\"cy\":51.50326858912867},{\"name\":\"Westminster\",\"cx\":-0.16129707300361068,\"cy\":51.513897745031734},{\"name\":\"Camden\",\"cx\":-0.15741523389534484,\"cy\":51.54639253962996},{\"name\":\"Tower Hamlets\",\"cx\":-0.03246795051939853,\"cy\":51.515056063777294},{\"name\":\"Islington\",\"cx\":-0.10744657464865907,\"cy\":51.54550386068218},{\"name\":\"Hackney\",\"cx\":-0.06564515736890775,\"cy\":51.54976532427057},{\"name\":\"Haringey\",\"cx\":-0.10747319126297968,\"cy\":51.59037386425316},{\"name\":\"Newham\",\"cx\":0.036385305135703754,\"cy\":51.52834280272405},{\"name\":\"Barking and Dagenham\",\"cx\":0.13352186486629006,\"cy\":51.545272267046116},{\"name\":\"City of London\",\"cx\":-0.09232371387227843,\"cy\":51.51529009582889}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"{\"data\":[{\"Region\":\"California\",\"output\":423967,\"longitude\":-119.4179,\"latitude\":36.7783},{\"Region\":\"Texas\",\"output\":695662,\"longitude\":-99.9018,\"latitude\":31.9686},{\"Region\":\"Alaska\",\"output\":1717850,\"longitude\":-149.4937,\"latitude\":64.2008}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Region\"],\"color\":[\"output\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Landmark\":\"Eiffel Tower\",\"visitors_per_year\":7000000,\"longitude\":2.2945,\"latitude\":48.8584},{\"Landmark\":\"Colosseum\",\"visitors_per_year\":5500000,\"longitude\":12.4924,\"latitude\":41.8902},{\"Landmark\":\"Statue of Liberty\",\"visitors_per_year\":4300000,\"longitude\":-74.0445,\"latitude\":40.6892}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Landmark\"],\"color\":[\"visitors_per_year\"]}}]"} +{"prompt":"{\"data\":[{\"国家\":\"中国\",\"GDP\":14300000000000,\"longitude\":104.1954,\"latitude\":35.8617},{\"国家\":\"美国\",\"GDP\":21430000000000,\"longitude\":-95.7129,\"latitude\":37.0902},{\"国家\":\"日本\",\"GDP\":5080000000000,\"longitude\":138.2529,\"latitude\":36.2048}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"国家\"],\"color\":[\"GDP\"]}}]"} +{"prompt":"可视化{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.2869,\"cy\":51.3879},{\"name\":\"Croydon\",\"cx\":-0.0872,\"cy\":51.3553},{\"name\":\"Bromley\",\"cx\":0.0515,\"cy\":51.372},{\"name\":\"Hounslow\",\"cx\":-0.3672,\"cy\":51.4684},{\"name\":\"Ealing\",\"cx\":-0.331,\"cy\":51.5225},{\"name\":\"Havering\",\"cx\":0.2211,\"cy\":51.5644}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.28691465719243003,\"cy\":51.387893353778395},{\"name\":\"Croydon\",\"cx\":-0.08716546101532906,\"cy\":51.355317416374},{\"name\":\"Bromley\",\"cx\":0.051536586180461884,\"cy\":51.37198402033694},{\"name\":\"Hounslow\",\"cx\":-0.3671516396902454,\"cy\":51.46838045919461},{\"name\":\"Ealing\",\"cx\":-0.331019323573572,\"cy\":51.52247610268018},{\"name\":\"Havering\",\"cx\":0.22111695897456907,\"cy\":51.564368109593914},{\"name\":\"Hillingdon\",\"cx\":-0.4456619192134244,\"cy\":51.54147118065276},{\"name\":\"Harrow\",\"cx\":-0.34127462993183943,\"cy\":51.59771852185307},{\"name\":\"Brent\",\"cx\":-0.2678117446868589,\"cy\":51.558554439571225},{\"name\":\"Barnet\",\"cx\":-0.2100178905687616,\"cy\":51.61601840050092},{\"name\":\"Lambeth\",\"cx\":-0.11827879184555543,\"cy\":51.45307915598091},{\"name\":\"Southwark\",\"cx\":-0.07460248417459615,\"cy\":51.47313736252929},{\"name\":\"Lewisham\",\"cx\":-0.020251210147097444,\"cy\":51.44808622366465},{\"name\":\"Greenwich\",\"cx\":0.05623854022441538,\"cy\":51.47280349330009},{\"name\":\"Bexley\",\"cx\":0.14034521936844538,\"cy\":51.45881060129503},{\"name\":\"Enfield\",\"cx\":-0.08726531756552813,\"cy\":51.650991897325454},{\"name\":\"Waltham Forest\",\"cx\":-0.012645389036967391,\"cy\":51.59402179942259},{\"name\":\"Redbridge\",\"cx\":0.07586498666349965,\"cy\":51.58566980239283},{\"name\":\"Sutton\",\"cx\":-0.1775706458949663,\"cy\":51.36208881322784},{\"name\":\"Richmond upon Thames\",\"cx\":-0.312989912939369,\"cy\":51.44217087768007},{\"name\":\"Merton\",\"cx\":-0.19724686451592524,\"cy\":51.40994982121643},{\"name\":\"Wandsworth\",\"cx\":-0.18644255213923716,\"cy\":51.45135372974042},{\"name\":\"Hammersmith and Fulham\",\"cx\":-0.22312501860130696,\"cy\":51.49760349773975},{\"name\":\"Kensington and Chelsea\",\"cx\":-0.1926146417708775,\"cy\":51.50326858912867},{\"name\":\"Westminster\",\"cx\":-0.16129707300361068,\"cy\":51.513897745031734},{\"name\":\"Camden\",\"cx\":-0.15741523389534484,\"cy\":51.54639253962996},{\"name\":\"Tower Hamlets\",\"cx\":-0.03246795051939853,\"cy\":51.515056063777294},{\"name\":\"Islington\",\"cx\":-0.10744657464865907,\"cy\":51.54550386068218},{\"name\":\"Hackney\",\"cx\":-0.06564515736890775,\"cy\":51.54976532427057},{\"name\":\"Haringey\",\"cx\":-0.10747319126297968,\"cy\":51.59037386425316},{\"name\":\"Newham\",\"cx\":0.036385305135703754,\"cy\":51.52834280272405},{\"name\":\"Barking and Dagenham\",\"cx\":0.13352186486629006,\"cy\":51.545272267046116},{\"name\":\"City of London\",\"cx\":-0.09232371387227843,\"cy\":51.51529009582889}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Region\":\"California\",\"output\":423967,\"longitude\":-119.4179,\"latitude\":36.7783},{\"Region\":\"Texas\",\"output\":695662,\"longitude\":-99.9018,\"latitude\":31.9686},{\"Region\":\"Alaska\",\"output\":1717850,\"longitude\":-149.4937,\"latitude\":64.2008}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Region\"],\"color\":[\"output\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"Landmark\":\"Eiffel Tower\",\"visitors_per_year\":7000000,\"longitude\":2.2945,\"latitude\":48.8584},{\"Landmark\":\"Colosseum\",\"visitors_per_year\":5500000,\"longitude\":12.4924,\"latitude\":41.8902},{\"Landmark\":\"Statue of Liberty\",\"visitors_per_year\":4300000,\"longitude\":-74.0445,\"latitude\":40.6892}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Landmark\"],\"color\":[\"visitors_per_year\"]}}]"} +{"prompt":"展示{\"data\":[{\"国家\":\"中国\",\"GDP\":14300000000000,\"longitude\":104.1954,\"latitude\":35.8617},{\"国家\":\"美国\",\"GDP\":21430000000000,\"longitude\":-95.7129,\"latitude\":37.0902},{\"国家\":\"日本\",\"GDP\":5080000000000,\"longitude\":138.2529,\"latitude\":36.2048}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"国家\"],\"color\":[\"GDP\"]}}]"} +{"prompt":"{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.2869,\"cy\":51.3879},{\"name\":\"Croydon\",\"cx\":-0.0872,\"cy\":51.3553},{\"name\":\"Bromley\",\"cx\":0.0515,\"cy\":51.372},{\"name\":\"Hounslow\",\"cx\":-0.3672,\"cy\":51.4684},{\"name\":\"Ealing\",\"cx\":-0.331,\"cy\":51.5225},{\"name\":\"Havering\",\"cx\":0.2211,\"cy\":51.5644}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.28691465719243003,\"cy\":51.387893353778395},{\"name\":\"Croydon\",\"cx\":-0.08716546101532906,\"cy\":51.355317416374},{\"name\":\"Bromley\",\"cx\":0.051536586180461884,\"cy\":51.37198402033694},{\"name\":\"Hounslow\",\"cx\":-0.3671516396902454,\"cy\":51.46838045919461},{\"name\":\"Ealing\",\"cx\":-0.331019323573572,\"cy\":51.52247610268018},{\"name\":\"Havering\",\"cx\":0.22111695897456907,\"cy\":51.564368109593914},{\"name\":\"Hillingdon\",\"cx\":-0.4456619192134244,\"cy\":51.54147118065276},{\"name\":\"Harrow\",\"cx\":-0.34127462993183943,\"cy\":51.59771852185307},{\"name\":\"Brent\",\"cx\":-0.2678117446868589,\"cy\":51.558554439571225},{\"name\":\"Barnet\",\"cx\":-0.2100178905687616,\"cy\":51.61601840050092},{\"name\":\"Lambeth\",\"cx\":-0.11827879184555543,\"cy\":51.45307915598091},{\"name\":\"Southwark\",\"cx\":-0.07460248417459615,\"cy\":51.47313736252929},{\"name\":\"Lewisham\",\"cx\":-0.020251210147097444,\"cy\":51.44808622366465},{\"name\":\"Greenwich\",\"cx\":0.05623854022441538,\"cy\":51.47280349330009},{\"name\":\"Bexley\",\"cx\":0.14034521936844538,\"cy\":51.45881060129503},{\"name\":\"Enfield\",\"cx\":-0.08726531756552813,\"cy\":51.650991897325454},{\"name\":\"Waltham Forest\",\"cx\":-0.012645389036967391,\"cy\":51.59402179942259},{\"name\":\"Redbridge\",\"cx\":0.07586498666349965,\"cy\":51.58566980239283},{\"name\":\"Sutton\",\"cx\":-0.1775706458949663,\"cy\":51.36208881322784},{\"name\":\"Richmond upon Thames\",\"cx\":-0.312989912939369,\"cy\":51.44217087768007},{\"name\":\"Merton\",\"cx\":-0.19724686451592524,\"cy\":51.40994982121643},{\"name\":\"Wandsworth\",\"cx\":-0.18644255213923716,\"cy\":51.45135372974042},{\"name\":\"Hammersmith and Fulham\",\"cx\":-0.22312501860130696,\"cy\":51.49760349773975},{\"name\":\"Kensington and Chelsea\",\"cx\":-0.1926146417708775,\"cy\":51.50326858912867},{\"name\":\"Westminster\",\"cx\":-0.16129707300361068,\"cy\":51.513897745031734},{\"name\":\"Camden\",\"cx\":-0.15741523389534484,\"cy\":51.54639253962996},{\"name\":\"Tower Hamlets\",\"cx\":-0.03246795051939853,\"cy\":51.515056063777294},{\"name\":\"Islington\",\"cx\":-0.10744657464865907,\"cy\":51.54550386068218},{\"name\":\"Hackney\",\"cx\":-0.06564515736890775,\"cy\":51.54976532427057},{\"name\":\"Haringey\",\"cx\":-0.10747319126297968,\"cy\":51.59037386425316},{\"name\":\"Newham\",\"cx\":0.036385305135703754,\"cy\":51.52834280272405},{\"name\":\"Barking and Dagenham\",\"cx\":0.13352186486629006,\"cy\":51.545272267046116},{\"name\":\"City of London\",\"cx\":-0.09232371387227843,\"cy\":51.51529009582889}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"可视化{\"data\":[{\"Region\":\"California\",\"output\":423967,\"longitude\":-119.4179,\"latitude\":36.7783},{\"Region\":\"Texas\",\"output\":695662,\"longitude\":-99.9018,\"latitude\":31.9686},{\"Region\":\"Alaska\",\"output\":1717850,\"longitude\":-149.4937,\"latitude\":64.2008}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Region\"],\"color\":[\"output\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Landmark\":\"Eiffel Tower\",\"visitors_per_year\":7000000,\"longitude\":2.2945,\"latitude\":48.8584},{\"Landmark\":\"Colosseum\",\"visitors_per_year\":5500000,\"longitude\":12.4924,\"latitude\":41.8902},{\"Landmark\":\"Statue of Liberty\",\"visitors_per_year\":4300000,\"longitude\":-74.0445,\"latitude\":40.6892}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Landmark\"],\"color\":[\"visitors_per_year\"]}}]"} +{"prompt":"展示{\"data\":[{\"国家\":\"中国\",\"GDP\":14300000000000,\"longitude\":104.1954,\"latitude\":35.8617},{\"国家\":\"美国\",\"GDP\":21430000000000,\"longitude\":-95.7129,\"latitude\":37.0902},{\"国家\":\"日本\",\"GDP\":5080000000000,\"longitude\":138.2529,\"latitude\":36.2048}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"国家\"],\"color\":[\"GDP\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.2869,\"cy\":51.3879},{\"name\":\"Croydon\",\"cx\":-0.0872,\"cy\":51.3553},{\"name\":\"Bromley\",\"cx\":0.0515,\"cy\":51.372},{\"name\":\"Hounslow\",\"cx\":-0.3672,\"cy\":51.4684},{\"name\":\"Ealing\",\"cx\":-0.331,\"cy\":51.5225},{\"name\":\"Havering\",\"cx\":0.2211,\"cy\":51.5644}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"展示{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.28691465719243003,\"cy\":51.387893353778395},{\"name\":\"Croydon\",\"cx\":-0.08716546101532906,\"cy\":51.355317416374},{\"name\":\"Bromley\",\"cx\":0.051536586180461884,\"cy\":51.37198402033694},{\"name\":\"Hounslow\",\"cx\":-0.3671516396902454,\"cy\":51.46838045919461},{\"name\":\"Ealing\",\"cx\":-0.331019323573572,\"cy\":51.52247610268018},{\"name\":\"Havering\",\"cx\":0.22111695897456907,\"cy\":51.564368109593914},{\"name\":\"Hillingdon\",\"cx\":-0.4456619192134244,\"cy\":51.54147118065276},{\"name\":\"Harrow\",\"cx\":-0.34127462993183943,\"cy\":51.59771852185307},{\"name\":\"Brent\",\"cx\":-0.2678117446868589,\"cy\":51.558554439571225},{\"name\":\"Barnet\",\"cx\":-0.2100178905687616,\"cy\":51.61601840050092},{\"name\":\"Lambeth\",\"cx\":-0.11827879184555543,\"cy\":51.45307915598091},{\"name\":\"Southwark\",\"cx\":-0.07460248417459615,\"cy\":51.47313736252929},{\"name\":\"Lewisham\",\"cx\":-0.020251210147097444,\"cy\":51.44808622366465},{\"name\":\"Greenwich\",\"cx\":0.05623854022441538,\"cy\":51.47280349330009},{\"name\":\"Bexley\",\"cx\":0.14034521936844538,\"cy\":51.45881060129503},{\"name\":\"Enfield\",\"cx\":-0.08726531756552813,\"cy\":51.650991897325454},{\"name\":\"Waltham Forest\",\"cx\":-0.012645389036967391,\"cy\":51.59402179942259},{\"name\":\"Redbridge\",\"cx\":0.07586498666349965,\"cy\":51.58566980239283},{\"name\":\"Sutton\",\"cx\":-0.1775706458949663,\"cy\":51.36208881322784},{\"name\":\"Richmond upon Thames\",\"cx\":-0.312989912939369,\"cy\":51.44217087768007},{\"name\":\"Merton\",\"cx\":-0.19724686451592524,\"cy\":51.40994982121643},{\"name\":\"Wandsworth\",\"cx\":-0.18644255213923716,\"cy\":51.45135372974042},{\"name\":\"Hammersmith and Fulham\",\"cx\":-0.22312501860130696,\"cy\":51.49760349773975},{\"name\":\"Kensington and Chelsea\",\"cx\":-0.1926146417708775,\"cy\":51.50326858912867},{\"name\":\"Westminster\",\"cx\":-0.16129707300361068,\"cy\":51.513897745031734},{\"name\":\"Camden\",\"cx\":-0.15741523389534484,\"cy\":51.54639253962996},{\"name\":\"Tower Hamlets\",\"cx\":-0.03246795051939853,\"cy\":51.515056063777294},{\"name\":\"Islington\",\"cx\":-0.10744657464865907,\"cy\":51.54550386068218},{\"name\":\"Hackney\",\"cx\":-0.06564515736890775,\"cy\":51.54976532427057},{\"name\":\"Haringey\",\"cx\":-0.10747319126297968,\"cy\":51.59037386425316},{\"name\":\"Newham\",\"cx\":0.036385305135703754,\"cy\":51.52834280272405},{\"name\":\"Barking and Dagenham\",\"cx\":0.13352186486629006,\"cy\":51.545272267046116},{\"name\":\"City of London\",\"cx\":-0.09232371387227843,\"cy\":51.51529009582889}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"Region\":\"California\",\"output\":423967,\"longitude\":-119.4179,\"latitude\":36.7783},{\"Region\":\"Texas\",\"output\":695662,\"longitude\":-99.9018,\"latitude\":31.9686},{\"Region\":\"Alaska\",\"output\":1717850,\"longitude\":-149.4937,\"latitude\":64.2008}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Region\"],\"color\":[\"output\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Landmark\":\"Eiffel Tower\",\"visitors_per_year\":7000000,\"longitude\":2.2945,\"latitude\":48.8584},{\"Landmark\":\"Colosseum\",\"visitors_per_year\":5500000,\"longitude\":12.4924,\"latitude\":41.8902},{\"Landmark\":\"Statue of Liberty\",\"visitors_per_year\":4300000,\"longitude\":-74.0445,\"latitude\":40.6892}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Landmark\"],\"color\":[\"visitors_per_year\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"国家\":\"中国\",\"GDP\":14300000000000,\"longitude\":104.1954,\"latitude\":35.8617},{\"国家\":\"美国\",\"GDP\":21430000000000,\"longitude\":-95.7129,\"latitude\":37.0902},{\"国家\":\"日本\",\"GDP\":5080000000000,\"longitude\":138.2529,\"latitude\":36.2048}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"国家\"],\"color\":[\"GDP\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.2869,\"cy\":51.3879},{\"name\":\"Croydon\",\"cx\":-0.0872,\"cy\":51.3553},{\"name\":\"Bromley\",\"cx\":0.0515,\"cy\":51.372},{\"name\":\"Hounslow\",\"cx\":-0.3672,\"cy\":51.4684},{\"name\":\"Ealing\",\"cx\":-0.331,\"cy\":51.5225},{\"name\":\"Havering\",\"cx\":0.2211,\"cy\":51.5644}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.28691465719243003,\"cy\":51.387893353778395},{\"name\":\"Croydon\",\"cx\":-0.08716546101532906,\"cy\":51.355317416374},{\"name\":\"Bromley\",\"cx\":0.051536586180461884,\"cy\":51.37198402033694},{\"name\":\"Hounslow\",\"cx\":-0.3671516396902454,\"cy\":51.46838045919461},{\"name\":\"Ealing\",\"cx\":-0.331019323573572,\"cy\":51.52247610268018},{\"name\":\"Havering\",\"cx\":0.22111695897456907,\"cy\":51.564368109593914},{\"name\":\"Hillingdon\",\"cx\":-0.4456619192134244,\"cy\":51.54147118065276},{\"name\":\"Harrow\",\"cx\":-0.34127462993183943,\"cy\":51.59771852185307},{\"name\":\"Brent\",\"cx\":-0.2678117446868589,\"cy\":51.558554439571225},{\"name\":\"Barnet\",\"cx\":-0.2100178905687616,\"cy\":51.61601840050092},{\"name\":\"Lambeth\",\"cx\":-0.11827879184555543,\"cy\":51.45307915598091},{\"name\":\"Southwark\",\"cx\":-0.07460248417459615,\"cy\":51.47313736252929},{\"name\":\"Lewisham\",\"cx\":-0.020251210147097444,\"cy\":51.44808622366465},{\"name\":\"Greenwich\",\"cx\":0.05623854022441538,\"cy\":51.47280349330009},{\"name\":\"Bexley\",\"cx\":0.14034521936844538,\"cy\":51.45881060129503},{\"name\":\"Enfield\",\"cx\":-0.08726531756552813,\"cy\":51.650991897325454},{\"name\":\"Waltham Forest\",\"cx\":-0.012645389036967391,\"cy\":51.59402179942259},{\"name\":\"Redbridge\",\"cx\":0.07586498666349965,\"cy\":51.58566980239283},{\"name\":\"Sutton\",\"cx\":-0.1775706458949663,\"cy\":51.36208881322784},{\"name\":\"Richmond upon Thames\",\"cx\":-0.312989912939369,\"cy\":51.44217087768007},{\"name\":\"Merton\",\"cx\":-0.19724686451592524,\"cy\":51.40994982121643},{\"name\":\"Wandsworth\",\"cx\":-0.18644255213923716,\"cy\":51.45135372974042},{\"name\":\"Hammersmith and Fulham\",\"cx\":-0.22312501860130696,\"cy\":51.49760349773975},{\"name\":\"Kensington and Chelsea\",\"cx\":-0.1926146417708775,\"cy\":51.50326858912867},{\"name\":\"Westminster\",\"cx\":-0.16129707300361068,\"cy\":51.513897745031734},{\"name\":\"Camden\",\"cx\":-0.15741523389534484,\"cy\":51.54639253962996},{\"name\":\"Tower Hamlets\",\"cx\":-0.03246795051939853,\"cy\":51.515056063777294},{\"name\":\"Islington\",\"cx\":-0.10744657464865907,\"cy\":51.54550386068218},{\"name\":\"Hackney\",\"cx\":-0.06564515736890775,\"cy\":51.54976532427057},{\"name\":\"Haringey\",\"cx\":-0.10747319126297968,\"cy\":51.59037386425316},{\"name\":\"Newham\",\"cx\":0.036385305135703754,\"cy\":51.52834280272405},{\"name\":\"Barking and Dagenham\",\"cx\":0.13352186486629006,\"cy\":51.545272267046116},{\"name\":\"City of London\",\"cx\":-0.09232371387227843,\"cy\":51.51529009582889}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"展示{\"data\":[{\"Region\":\"California\",\"output\":423967,\"longitude\":-119.4179,\"latitude\":36.7783},{\"Region\":\"Texas\",\"output\":695662,\"longitude\":-99.9018,\"latitude\":31.9686},{\"Region\":\"Alaska\",\"output\":1717850,\"longitude\":-149.4937,\"latitude\":64.2008}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Region\"],\"color\":[\"output\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Landmark\":\"Eiffel Tower\",\"visitors_per_year\":7000000,\"longitude\":2.2945,\"latitude\":48.8584},{\"Landmark\":\"Colosseum\",\"visitors_per_year\":5500000,\"longitude\":12.4924,\"latitude\":41.8902},{\"Landmark\":\"Statue of Liberty\",\"visitors_per_year\":4300000,\"longitude\":-74.0445,\"latitude\":40.6892}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Landmark\"],\"color\":[\"visitors_per_year\"]}}]"} +{"prompt":"{\"data\":[{\"国家\":\"中国\",\"GDP\":14300000000000,\"longitude\":104.1954,\"latitude\":35.8617},{\"国家\":\"美国\",\"GDP\":21430000000000,\"longitude\":-95.7129,\"latitude\":37.0902},{\"国家\":\"日本\",\"GDP\":5080000000000,\"longitude\":138.2529,\"latitude\":36.2048}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"国家\"],\"color\":[\"GDP\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.2869,\"cy\":51.3879},{\"name\":\"Croydon\",\"cx\":-0.0872,\"cy\":51.3553},{\"name\":\"Bromley\",\"cx\":0.0515,\"cy\":51.372},{\"name\":\"Hounslow\",\"cx\":-0.3672,\"cy\":51.4684},{\"name\":\"Ealing\",\"cx\":-0.331,\"cy\":51.5225},{\"name\":\"Havering\",\"cx\":0.2211,\"cy\":51.5644}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.28691465719243003,\"cy\":51.387893353778395},{\"name\":\"Croydon\",\"cx\":-0.08716546101532906,\"cy\":51.355317416374},{\"name\":\"Bromley\",\"cx\":0.051536586180461884,\"cy\":51.37198402033694},{\"name\":\"Hounslow\",\"cx\":-0.3671516396902454,\"cy\":51.46838045919461},{\"name\":\"Ealing\",\"cx\":-0.331019323573572,\"cy\":51.52247610268018},{\"name\":\"Havering\",\"cx\":0.22111695897456907,\"cy\":51.564368109593914},{\"name\":\"Hillingdon\",\"cx\":-0.4456619192134244,\"cy\":51.54147118065276},{\"name\":\"Harrow\",\"cx\":-0.34127462993183943,\"cy\":51.59771852185307},{\"name\":\"Brent\",\"cx\":-0.2678117446868589,\"cy\":51.558554439571225},{\"name\":\"Barnet\",\"cx\":-0.2100178905687616,\"cy\":51.61601840050092},{\"name\":\"Lambeth\",\"cx\":-0.11827879184555543,\"cy\":51.45307915598091},{\"name\":\"Southwark\",\"cx\":-0.07460248417459615,\"cy\":51.47313736252929},{\"name\":\"Lewisham\",\"cx\":-0.020251210147097444,\"cy\":51.44808622366465},{\"name\":\"Greenwich\",\"cx\":0.05623854022441538,\"cy\":51.47280349330009},{\"name\":\"Bexley\",\"cx\":0.14034521936844538,\"cy\":51.45881060129503},{\"name\":\"Enfield\",\"cx\":-0.08726531756552813,\"cy\":51.650991897325454},{\"name\":\"Waltham Forest\",\"cx\":-0.012645389036967391,\"cy\":51.59402179942259},{\"name\":\"Redbridge\",\"cx\":0.07586498666349965,\"cy\":51.58566980239283},{\"name\":\"Sutton\",\"cx\":-0.1775706458949663,\"cy\":51.36208881322784},{\"name\":\"Richmond upon Thames\",\"cx\":-0.312989912939369,\"cy\":51.44217087768007},{\"name\":\"Merton\",\"cx\":-0.19724686451592524,\"cy\":51.40994982121643},{\"name\":\"Wandsworth\",\"cx\":-0.18644255213923716,\"cy\":51.45135372974042},{\"name\":\"Hammersmith and Fulham\",\"cx\":-0.22312501860130696,\"cy\":51.49760349773975},{\"name\":\"Kensington and Chelsea\",\"cx\":-0.1926146417708775,\"cy\":51.50326858912867},{\"name\":\"Westminster\",\"cx\":-0.16129707300361068,\"cy\":51.513897745031734},{\"name\":\"Camden\",\"cx\":-0.15741523389534484,\"cy\":51.54639253962996},{\"name\":\"Tower Hamlets\",\"cx\":-0.03246795051939853,\"cy\":51.515056063777294},{\"name\":\"Islington\",\"cx\":-0.10744657464865907,\"cy\":51.54550386068218},{\"name\":\"Hackney\",\"cx\":-0.06564515736890775,\"cy\":51.54976532427057},{\"name\":\"Haringey\",\"cx\":-0.10747319126297968,\"cy\":51.59037386425316},{\"name\":\"Newham\",\"cx\":0.036385305135703754,\"cy\":51.52834280272405},{\"name\":\"Barking and Dagenham\",\"cx\":0.13352186486629006,\"cy\":51.545272267046116},{\"name\":\"City of London\",\"cx\":-0.09232371387227843,\"cy\":51.51529009582889}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"展示{\"data\":[{\"Region\":\"California\",\"output\":423967,\"longitude\":-119.4179,\"latitude\":36.7783},{\"Region\":\"Texas\",\"output\":695662,\"longitude\":-99.9018,\"latitude\":31.9686},{\"Region\":\"Alaska\",\"output\":1717850,\"longitude\":-149.4937,\"latitude\":64.2008}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Region\"],\"color\":[\"output\"]}}]"} +{"prompt":"展示{\"data\":[{\"Landmark\":\"Eiffel Tower\",\"visitors_per_year\":7000000,\"longitude\":2.2945,\"latitude\":48.8584},{\"Landmark\":\"Colosseum\",\"visitors_per_year\":5500000,\"longitude\":12.4924,\"latitude\":41.8902},{\"Landmark\":\"Statue of Liberty\",\"visitors_per_year\":4300000,\"longitude\":-74.0445,\"latitude\":40.6892}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Landmark\"],\"color\":[\"visitors_per_year\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"国家\":\"中国\",\"GDP\":14300000000000,\"longitude\":104.1954,\"latitude\":35.8617},{\"国家\":\"美国\",\"GDP\":21430000000000,\"longitude\":-95.7129,\"latitude\":37.0902},{\"国家\":\"日本\",\"GDP\":5080000000000,\"longitude\":138.2529,\"latitude\":36.2048}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"国家\"],\"color\":[\"GDP\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.2869,\"cy\":51.3879},{\"name\":\"Croydon\",\"cx\":-0.0872,\"cy\":51.3553},{\"name\":\"Bromley\",\"cx\":0.0515,\"cy\":51.372},{\"name\":\"Hounslow\",\"cx\":-0.3672,\"cy\":51.4684},{\"name\":\"Ealing\",\"cx\":-0.331,\"cy\":51.5225},{\"name\":\"Havering\",\"cx\":0.2211,\"cy\":51.5644}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.28691465719243003,\"cy\":51.387893353778395},{\"name\":\"Croydon\",\"cx\":-0.08716546101532906,\"cy\":51.355317416374},{\"name\":\"Bromley\",\"cx\":0.051536586180461884,\"cy\":51.37198402033694},{\"name\":\"Hounslow\",\"cx\":-0.3671516396902454,\"cy\":51.46838045919461},{\"name\":\"Ealing\",\"cx\":-0.331019323573572,\"cy\":51.52247610268018},{\"name\":\"Havering\",\"cx\":0.22111695897456907,\"cy\":51.564368109593914},{\"name\":\"Hillingdon\",\"cx\":-0.4456619192134244,\"cy\":51.54147118065276},{\"name\":\"Harrow\",\"cx\":-0.34127462993183943,\"cy\":51.59771852185307},{\"name\":\"Brent\",\"cx\":-0.2678117446868589,\"cy\":51.558554439571225},{\"name\":\"Barnet\",\"cx\":-0.2100178905687616,\"cy\":51.61601840050092},{\"name\":\"Lambeth\",\"cx\":-0.11827879184555543,\"cy\":51.45307915598091},{\"name\":\"Southwark\",\"cx\":-0.07460248417459615,\"cy\":51.47313736252929},{\"name\":\"Lewisham\",\"cx\":-0.020251210147097444,\"cy\":51.44808622366465},{\"name\":\"Greenwich\",\"cx\":0.05623854022441538,\"cy\":51.47280349330009},{\"name\":\"Bexley\",\"cx\":0.14034521936844538,\"cy\":51.45881060129503},{\"name\":\"Enfield\",\"cx\":-0.08726531756552813,\"cy\":51.650991897325454},{\"name\":\"Waltham Forest\",\"cx\":-0.012645389036967391,\"cy\":51.59402179942259},{\"name\":\"Redbridge\",\"cx\":0.07586498666349965,\"cy\":51.58566980239283},{\"name\":\"Sutton\",\"cx\":-0.1775706458949663,\"cy\":51.36208881322784},{\"name\":\"Richmond upon Thames\",\"cx\":-0.312989912939369,\"cy\":51.44217087768007},{\"name\":\"Merton\",\"cx\":-0.19724686451592524,\"cy\":51.40994982121643},{\"name\":\"Wandsworth\",\"cx\":-0.18644255213923716,\"cy\":51.45135372974042},{\"name\":\"Hammersmith and Fulham\",\"cx\":-0.22312501860130696,\"cy\":51.49760349773975},{\"name\":\"Kensington and Chelsea\",\"cx\":-0.1926146417708775,\"cy\":51.50326858912867},{\"name\":\"Westminster\",\"cx\":-0.16129707300361068,\"cy\":51.513897745031734},{\"name\":\"Camden\",\"cx\":-0.15741523389534484,\"cy\":51.54639253962996},{\"name\":\"Tower Hamlets\",\"cx\":-0.03246795051939853,\"cy\":51.515056063777294},{\"name\":\"Islington\",\"cx\":-0.10744657464865907,\"cy\":51.54550386068218},{\"name\":\"Hackney\",\"cx\":-0.06564515736890775,\"cy\":51.54976532427057},{\"name\":\"Haringey\",\"cx\":-0.10747319126297968,\"cy\":51.59037386425316},{\"name\":\"Newham\",\"cx\":0.036385305135703754,\"cy\":51.52834280272405},{\"name\":\"Barking and Dagenham\",\"cx\":0.13352186486629006,\"cy\":51.545272267046116},{\"name\":\"City of London\",\"cx\":-0.09232371387227843,\"cy\":51.51529009582889}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"可视化{\"data\":[{\"Region\":\"California\",\"output\":423967,\"longitude\":-119.4179,\"latitude\":36.7783},{\"Region\":\"Texas\",\"output\":695662,\"longitude\":-99.9018,\"latitude\":31.9686},{\"Region\":\"Alaska\",\"output\":1717850,\"longitude\":-149.4937,\"latitude\":64.2008}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Region\"],\"color\":[\"output\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Landmark\":\"Eiffel Tower\",\"visitors_per_year\":7000000,\"longitude\":2.2945,\"latitude\":48.8584},{\"Landmark\":\"Colosseum\",\"visitors_per_year\":5500000,\"longitude\":12.4924,\"latitude\":41.8902},{\"Landmark\":\"Statue of Liberty\",\"visitors_per_year\":4300000,\"longitude\":-74.0445,\"latitude\":40.6892}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Landmark\"],\"color\":[\"visitors_per_year\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"国家\":\"中国\",\"GDP\":14300000000000,\"longitude\":104.1954,\"latitude\":35.8617},{\"国家\":\"美国\",\"GDP\":21430000000000,\"longitude\":-95.7129,\"latitude\":37.0902},{\"国家\":\"日本\",\"GDP\":5080000000000,\"longitude\":138.2529,\"latitude\":36.2048}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"国家\"],\"color\":[\"GDP\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.2869,\"cy\":51.3879},{\"name\":\"Croydon\",\"cx\":-0.0872,\"cy\":51.3553},{\"name\":\"Bromley\",\"cx\":0.0515,\"cy\":51.372},{\"name\":\"Hounslow\",\"cx\":-0.3672,\"cy\":51.4684},{\"name\":\"Ealing\",\"cx\":-0.331,\"cy\":51.5225},{\"name\":\"Havering\",\"cx\":0.2211,\"cy\":51.5644}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.28691465719243003,\"cy\":51.387893353778395},{\"name\":\"Croydon\",\"cx\":-0.08716546101532906,\"cy\":51.355317416374},{\"name\":\"Bromley\",\"cx\":0.051536586180461884,\"cy\":51.37198402033694},{\"name\":\"Hounslow\",\"cx\":-0.3671516396902454,\"cy\":51.46838045919461},{\"name\":\"Ealing\",\"cx\":-0.331019323573572,\"cy\":51.52247610268018},{\"name\":\"Havering\",\"cx\":0.22111695897456907,\"cy\":51.564368109593914},{\"name\":\"Hillingdon\",\"cx\":-0.4456619192134244,\"cy\":51.54147118065276},{\"name\":\"Harrow\",\"cx\":-0.34127462993183943,\"cy\":51.59771852185307},{\"name\":\"Brent\",\"cx\":-0.2678117446868589,\"cy\":51.558554439571225},{\"name\":\"Barnet\",\"cx\":-0.2100178905687616,\"cy\":51.61601840050092},{\"name\":\"Lambeth\",\"cx\":-0.11827879184555543,\"cy\":51.45307915598091},{\"name\":\"Southwark\",\"cx\":-0.07460248417459615,\"cy\":51.47313736252929},{\"name\":\"Lewisham\",\"cx\":-0.020251210147097444,\"cy\":51.44808622366465},{\"name\":\"Greenwich\",\"cx\":0.05623854022441538,\"cy\":51.47280349330009},{\"name\":\"Bexley\",\"cx\":0.14034521936844538,\"cy\":51.45881060129503},{\"name\":\"Enfield\",\"cx\":-0.08726531756552813,\"cy\":51.650991897325454},{\"name\":\"Waltham Forest\",\"cx\":-0.012645389036967391,\"cy\":51.59402179942259},{\"name\":\"Redbridge\",\"cx\":0.07586498666349965,\"cy\":51.58566980239283},{\"name\":\"Sutton\",\"cx\":-0.1775706458949663,\"cy\":51.36208881322784},{\"name\":\"Richmond upon Thames\",\"cx\":-0.312989912939369,\"cy\":51.44217087768007},{\"name\":\"Merton\",\"cx\":-0.19724686451592524,\"cy\":51.40994982121643},{\"name\":\"Wandsworth\",\"cx\":-0.18644255213923716,\"cy\":51.45135372974042},{\"name\":\"Hammersmith and Fulham\",\"cx\":-0.22312501860130696,\"cy\":51.49760349773975},{\"name\":\"Kensington and Chelsea\",\"cx\":-0.1926146417708775,\"cy\":51.50326858912867},{\"name\":\"Westminster\",\"cx\":-0.16129707300361068,\"cy\":51.513897745031734},{\"name\":\"Camden\",\"cx\":-0.15741523389534484,\"cy\":51.54639253962996},{\"name\":\"Tower Hamlets\",\"cx\":-0.03246795051939853,\"cy\":51.515056063777294},{\"name\":\"Islington\",\"cx\":-0.10744657464865907,\"cy\":51.54550386068218},{\"name\":\"Hackney\",\"cx\":-0.06564515736890775,\"cy\":51.54976532427057},{\"name\":\"Haringey\",\"cx\":-0.10747319126297968,\"cy\":51.59037386425316},{\"name\":\"Newham\",\"cx\":0.036385305135703754,\"cy\":51.52834280272405},{\"name\":\"Barking and Dagenham\",\"cx\":0.13352186486629006,\"cy\":51.545272267046116},{\"name\":\"City of London\",\"cx\":-0.09232371387227843,\"cy\":51.51529009582889}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Region\":\"California\",\"output\":423967,\"longitude\":-119.4179,\"latitude\":36.7783},{\"Region\":\"Texas\",\"output\":695662,\"longitude\":-99.9018,\"latitude\":31.9686},{\"Region\":\"Alaska\",\"output\":1717850,\"longitude\":-149.4937,\"latitude\":64.2008}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Region\"],\"color\":[\"output\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Landmark\":\"Eiffel Tower\",\"visitors_per_year\":7000000,\"longitude\":2.2945,\"latitude\":48.8584},{\"Landmark\":\"Colosseum\",\"visitors_per_year\":5500000,\"longitude\":12.4924,\"latitude\":41.8902},{\"Landmark\":\"Statue of Liberty\",\"visitors_per_year\":4300000,\"longitude\":-74.0445,\"latitude\":40.6892}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Landmark\"],\"color\":[\"visitors_per_year\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"国家\":\"中国\",\"GDP\":14300000000000,\"longitude\":104.1954,\"latitude\":35.8617},{\"国家\":\"美国\",\"GDP\":21430000000000,\"longitude\":-95.7129,\"latitude\":37.0902},{\"国家\":\"日本\",\"GDP\":5080000000000,\"longitude\":138.2529,\"latitude\":36.2048}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"国家\"],\"color\":[\"GDP\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.2869,\"cy\":51.3879},{\"name\":\"Croydon\",\"cx\":-0.0872,\"cy\":51.3553},{\"name\":\"Bromley\",\"cx\":0.0515,\"cy\":51.372},{\"name\":\"Hounslow\",\"cx\":-0.3672,\"cy\":51.4684},{\"name\":\"Ealing\",\"cx\":-0.331,\"cy\":51.5225},{\"name\":\"Havering\",\"cx\":0.2211,\"cy\":51.5644}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"可视化{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.28691465719243003,\"cy\":51.387893353778395},{\"name\":\"Croydon\",\"cx\":-0.08716546101532906,\"cy\":51.355317416374},{\"name\":\"Bromley\",\"cx\":0.051536586180461884,\"cy\":51.37198402033694},{\"name\":\"Hounslow\",\"cx\":-0.3671516396902454,\"cy\":51.46838045919461},{\"name\":\"Ealing\",\"cx\":-0.331019323573572,\"cy\":51.52247610268018},{\"name\":\"Havering\",\"cx\":0.22111695897456907,\"cy\":51.564368109593914},{\"name\":\"Hillingdon\",\"cx\":-0.4456619192134244,\"cy\":51.54147118065276},{\"name\":\"Harrow\",\"cx\":-0.34127462993183943,\"cy\":51.59771852185307},{\"name\":\"Brent\",\"cx\":-0.2678117446868589,\"cy\":51.558554439571225},{\"name\":\"Barnet\",\"cx\":-0.2100178905687616,\"cy\":51.61601840050092},{\"name\":\"Lambeth\",\"cx\":-0.11827879184555543,\"cy\":51.45307915598091},{\"name\":\"Southwark\",\"cx\":-0.07460248417459615,\"cy\":51.47313736252929},{\"name\":\"Lewisham\",\"cx\":-0.020251210147097444,\"cy\":51.44808622366465},{\"name\":\"Greenwich\",\"cx\":0.05623854022441538,\"cy\":51.47280349330009},{\"name\":\"Bexley\",\"cx\":0.14034521936844538,\"cy\":51.45881060129503},{\"name\":\"Enfield\",\"cx\":-0.08726531756552813,\"cy\":51.650991897325454},{\"name\":\"Waltham Forest\",\"cx\":-0.012645389036967391,\"cy\":51.59402179942259},{\"name\":\"Redbridge\",\"cx\":0.07586498666349965,\"cy\":51.58566980239283},{\"name\":\"Sutton\",\"cx\":-0.1775706458949663,\"cy\":51.36208881322784},{\"name\":\"Richmond upon Thames\",\"cx\":-0.312989912939369,\"cy\":51.44217087768007},{\"name\":\"Merton\",\"cx\":-0.19724686451592524,\"cy\":51.40994982121643},{\"name\":\"Wandsworth\",\"cx\":-0.18644255213923716,\"cy\":51.45135372974042},{\"name\":\"Hammersmith and Fulham\",\"cx\":-0.22312501860130696,\"cy\":51.49760349773975},{\"name\":\"Kensington and Chelsea\",\"cx\":-0.1926146417708775,\"cy\":51.50326858912867},{\"name\":\"Westminster\",\"cx\":-0.16129707300361068,\"cy\":51.513897745031734},{\"name\":\"Camden\",\"cx\":-0.15741523389534484,\"cy\":51.54639253962996},{\"name\":\"Tower Hamlets\",\"cx\":-0.03246795051939853,\"cy\":51.515056063777294},{\"name\":\"Islington\",\"cx\":-0.10744657464865907,\"cy\":51.54550386068218},{\"name\":\"Hackney\",\"cx\":-0.06564515736890775,\"cy\":51.54976532427057},{\"name\":\"Haringey\",\"cx\":-0.10747319126297968,\"cy\":51.59037386425316},{\"name\":\"Newham\",\"cx\":0.036385305135703754,\"cy\":51.52834280272405},{\"name\":\"Barking and Dagenham\",\"cx\":0.13352186486629006,\"cy\":51.545272267046116},{\"name\":\"City of London\",\"cx\":-0.09232371387227843,\"cy\":51.51529009582889}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"展示{\"data\":[{\"Region\":\"California\",\"output\":423967,\"longitude\":-119.4179,\"latitude\":36.7783},{\"Region\":\"Texas\",\"output\":695662,\"longitude\":-99.9018,\"latitude\":31.9686},{\"Region\":\"Alaska\",\"output\":1717850,\"longitude\":-149.4937,\"latitude\":64.2008}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Region\"],\"color\":[\"output\"]}}]"} +{"prompt":"{\"data\":[{\"Landmark\":\"Eiffel Tower\",\"visitors_per_year\":7000000,\"longitude\":2.2945,\"latitude\":48.8584},{\"Landmark\":\"Colosseum\",\"visitors_per_year\":5500000,\"longitude\":12.4924,\"latitude\":41.8902},{\"Landmark\":\"Statue of Liberty\",\"visitors_per_year\":4300000,\"longitude\":-74.0445,\"latitude\":40.6892}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Landmark\"],\"color\":[\"visitors_per_year\"]}}]"} +{"prompt":"{\"data\":[{\"国家\":\"中国\",\"GDP\":14300000000000,\"longitude\":104.1954,\"latitude\":35.8617},{\"国家\":\"美国\",\"GDP\":21430000000000,\"longitude\":-95.7129,\"latitude\":37.0902},{\"国家\":\"日本\",\"GDP\":5080000000000,\"longitude\":138.2529,\"latitude\":36.2048}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"国家\"],\"color\":[\"GDP\"]}}]"} +{"prompt":"可视化{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.2869,\"cy\":51.3879},{\"name\":\"Croydon\",\"cx\":-0.0872,\"cy\":51.3553},{\"name\":\"Bromley\",\"cx\":0.0515,\"cy\":51.372},{\"name\":\"Hounslow\",\"cx\":-0.3672,\"cy\":51.4684},{\"name\":\"Ealing\",\"cx\":-0.331,\"cy\":51.5225},{\"name\":\"Havering\",\"cx\":0.2211,\"cy\":51.5644}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"展示{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.28691465719243003,\"cy\":51.387893353778395},{\"name\":\"Croydon\",\"cx\":-0.08716546101532906,\"cy\":51.355317416374},{\"name\":\"Bromley\",\"cx\":0.051536586180461884,\"cy\":51.37198402033694},{\"name\":\"Hounslow\",\"cx\":-0.3671516396902454,\"cy\":51.46838045919461},{\"name\":\"Ealing\",\"cx\":-0.331019323573572,\"cy\":51.52247610268018},{\"name\":\"Havering\",\"cx\":0.22111695897456907,\"cy\":51.564368109593914},{\"name\":\"Hillingdon\",\"cx\":-0.4456619192134244,\"cy\":51.54147118065276},{\"name\":\"Harrow\",\"cx\":-0.34127462993183943,\"cy\":51.59771852185307},{\"name\":\"Brent\",\"cx\":-0.2678117446868589,\"cy\":51.558554439571225},{\"name\":\"Barnet\",\"cx\":-0.2100178905687616,\"cy\":51.61601840050092},{\"name\":\"Lambeth\",\"cx\":-0.11827879184555543,\"cy\":51.45307915598091},{\"name\":\"Southwark\",\"cx\":-0.07460248417459615,\"cy\":51.47313736252929},{\"name\":\"Lewisham\",\"cx\":-0.020251210147097444,\"cy\":51.44808622366465},{\"name\":\"Greenwich\",\"cx\":0.05623854022441538,\"cy\":51.47280349330009},{\"name\":\"Bexley\",\"cx\":0.14034521936844538,\"cy\":51.45881060129503},{\"name\":\"Enfield\",\"cx\":-0.08726531756552813,\"cy\":51.650991897325454},{\"name\":\"Waltham Forest\",\"cx\":-0.012645389036967391,\"cy\":51.59402179942259},{\"name\":\"Redbridge\",\"cx\":0.07586498666349965,\"cy\":51.58566980239283},{\"name\":\"Sutton\",\"cx\":-0.1775706458949663,\"cy\":51.36208881322784},{\"name\":\"Richmond upon Thames\",\"cx\":-0.312989912939369,\"cy\":51.44217087768007},{\"name\":\"Merton\",\"cx\":-0.19724686451592524,\"cy\":51.40994982121643},{\"name\":\"Wandsworth\",\"cx\":-0.18644255213923716,\"cy\":51.45135372974042},{\"name\":\"Hammersmith and Fulham\",\"cx\":-0.22312501860130696,\"cy\":51.49760349773975},{\"name\":\"Kensington and Chelsea\",\"cx\":-0.1926146417708775,\"cy\":51.50326858912867},{\"name\":\"Westminster\",\"cx\":-0.16129707300361068,\"cy\":51.513897745031734},{\"name\":\"Camden\",\"cx\":-0.15741523389534484,\"cy\":51.54639253962996},{\"name\":\"Tower Hamlets\",\"cx\":-0.03246795051939853,\"cy\":51.515056063777294},{\"name\":\"Islington\",\"cx\":-0.10744657464865907,\"cy\":51.54550386068218},{\"name\":\"Hackney\",\"cx\":-0.06564515736890775,\"cy\":51.54976532427057},{\"name\":\"Haringey\",\"cx\":-0.10747319126297968,\"cy\":51.59037386425316},{\"name\":\"Newham\",\"cx\":0.036385305135703754,\"cy\":51.52834280272405},{\"name\":\"Barking and Dagenham\",\"cx\":0.13352186486629006,\"cy\":51.545272267046116},{\"name\":\"City of London\",\"cx\":-0.09232371387227843,\"cy\":51.51529009582889}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"可视化{\"data\":[{\"Region\":\"California\",\"output\":423967,\"longitude\":-119.4179,\"latitude\":36.7783},{\"Region\":\"Texas\",\"output\":695662,\"longitude\":-99.9018,\"latitude\":31.9686},{\"Region\":\"Alaska\",\"output\":1717850,\"longitude\":-149.4937,\"latitude\":64.2008}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Region\"],\"color\":[\"output\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Landmark\":\"Eiffel Tower\",\"visitors_per_year\":7000000,\"longitude\":2.2945,\"latitude\":48.8584},{\"Landmark\":\"Colosseum\",\"visitors_per_year\":5500000,\"longitude\":12.4924,\"latitude\":41.8902},{\"Landmark\":\"Statue of Liberty\",\"visitors_per_year\":4300000,\"longitude\":-74.0445,\"latitude\":40.6892}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Landmark\"],\"color\":[\"visitors_per_year\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"国家\":\"中国\",\"GDP\":14300000000000,\"longitude\":104.1954,\"latitude\":35.8617},{\"国家\":\"美国\",\"GDP\":21430000000000,\"longitude\":-95.7129,\"latitude\":37.0902},{\"国家\":\"日本\",\"GDP\":5080000000000,\"longitude\":138.2529,\"latitude\":36.2048}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"国家\"],\"color\":[\"GDP\"]}}]"} +{"prompt":"可视化{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.2869,\"cy\":51.3879},{\"name\":\"Croydon\",\"cx\":-0.0872,\"cy\":51.3553},{\"name\":\"Bromley\",\"cx\":0.0515,\"cy\":51.372},{\"name\":\"Hounslow\",\"cx\":-0.3672,\"cy\":51.4684},{\"name\":\"Ealing\",\"cx\":-0.331,\"cy\":51.5225},{\"name\":\"Havering\",\"cx\":0.2211,\"cy\":51.5644}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"展示{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.28691465719243003,\"cy\":51.387893353778395},{\"name\":\"Croydon\",\"cx\":-0.08716546101532906,\"cy\":51.355317416374},{\"name\":\"Bromley\",\"cx\":0.051536586180461884,\"cy\":51.37198402033694},{\"name\":\"Hounslow\",\"cx\":-0.3671516396902454,\"cy\":51.46838045919461},{\"name\":\"Ealing\",\"cx\":-0.331019323573572,\"cy\":51.52247610268018},{\"name\":\"Havering\",\"cx\":0.22111695897456907,\"cy\":51.564368109593914},{\"name\":\"Hillingdon\",\"cx\":-0.4456619192134244,\"cy\":51.54147118065276},{\"name\":\"Harrow\",\"cx\":-0.34127462993183943,\"cy\":51.59771852185307},{\"name\":\"Brent\",\"cx\":-0.2678117446868589,\"cy\":51.558554439571225},{\"name\":\"Barnet\",\"cx\":-0.2100178905687616,\"cy\":51.61601840050092},{\"name\":\"Lambeth\",\"cx\":-0.11827879184555543,\"cy\":51.45307915598091},{\"name\":\"Southwark\",\"cx\":-0.07460248417459615,\"cy\":51.47313736252929},{\"name\":\"Lewisham\",\"cx\":-0.020251210147097444,\"cy\":51.44808622366465},{\"name\":\"Greenwich\",\"cx\":0.05623854022441538,\"cy\":51.47280349330009},{\"name\":\"Bexley\",\"cx\":0.14034521936844538,\"cy\":51.45881060129503},{\"name\":\"Enfield\",\"cx\":-0.08726531756552813,\"cy\":51.650991897325454},{\"name\":\"Waltham Forest\",\"cx\":-0.012645389036967391,\"cy\":51.59402179942259},{\"name\":\"Redbridge\",\"cx\":0.07586498666349965,\"cy\":51.58566980239283},{\"name\":\"Sutton\",\"cx\":-0.1775706458949663,\"cy\":51.36208881322784},{\"name\":\"Richmond upon Thames\",\"cx\":-0.312989912939369,\"cy\":51.44217087768007},{\"name\":\"Merton\",\"cx\":-0.19724686451592524,\"cy\":51.40994982121643},{\"name\":\"Wandsworth\",\"cx\":-0.18644255213923716,\"cy\":51.45135372974042},{\"name\":\"Hammersmith and Fulham\",\"cx\":-0.22312501860130696,\"cy\":51.49760349773975},{\"name\":\"Kensington and Chelsea\",\"cx\":-0.1926146417708775,\"cy\":51.50326858912867},{\"name\":\"Westminster\",\"cx\":-0.16129707300361068,\"cy\":51.513897745031734},{\"name\":\"Camden\",\"cx\":-0.15741523389534484,\"cy\":51.54639253962996},{\"name\":\"Tower Hamlets\",\"cx\":-0.03246795051939853,\"cy\":51.515056063777294},{\"name\":\"Islington\",\"cx\":-0.10744657464865907,\"cy\":51.54550386068218},{\"name\":\"Hackney\",\"cx\":-0.06564515736890775,\"cy\":51.54976532427057},{\"name\":\"Haringey\",\"cx\":-0.10747319126297968,\"cy\":51.59037386425316},{\"name\":\"Newham\",\"cx\":0.036385305135703754,\"cy\":51.52834280272405},{\"name\":\"Barking and Dagenham\",\"cx\":0.13352186486629006,\"cy\":51.545272267046116},{\"name\":\"City of London\",\"cx\":-0.09232371387227843,\"cy\":51.51529009582889}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"展示{\"data\":[{\"Region\":\"California\",\"output\":423967,\"longitude\":-119.4179,\"latitude\":36.7783},{\"Region\":\"Texas\",\"output\":695662,\"longitude\":-99.9018,\"latitude\":31.9686},{\"Region\":\"Alaska\",\"output\":1717850,\"longitude\":-149.4937,\"latitude\":64.2008}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Region\"],\"color\":[\"output\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"Landmark\":\"Eiffel Tower\",\"visitors_per_year\":7000000,\"longitude\":2.2945,\"latitude\":48.8584},{\"Landmark\":\"Colosseum\",\"visitors_per_year\":5500000,\"longitude\":12.4924,\"latitude\":41.8902},{\"Landmark\":\"Statue of Liberty\",\"visitors_per_year\":4300000,\"longitude\":-74.0445,\"latitude\":40.6892}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Landmark\"],\"color\":[\"visitors_per_year\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"国家\":\"中国\",\"GDP\":14300000000000,\"longitude\":104.1954,\"latitude\":35.8617},{\"国家\":\"美国\",\"GDP\":21430000000000,\"longitude\":-95.7129,\"latitude\":37.0902},{\"国家\":\"日本\",\"GDP\":5080000000000,\"longitude\":138.2529,\"latitude\":36.2048}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"国家\"],\"color\":[\"GDP\"]}}]"} +{"prompt":"可视化{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.2869,\"cy\":51.3879},{\"name\":\"Croydon\",\"cx\":-0.0872,\"cy\":51.3553},{\"name\":\"Bromley\",\"cx\":0.0515,\"cy\":51.372},{\"name\":\"Hounslow\",\"cx\":-0.3672,\"cy\":51.4684},{\"name\":\"Ealing\",\"cx\":-0.331,\"cy\":51.5225},{\"name\":\"Havering\",\"cx\":0.2211,\"cy\":51.5644}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"展示{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.28691465719243003,\"cy\":51.387893353778395},{\"name\":\"Croydon\",\"cx\":-0.08716546101532906,\"cy\":51.355317416374},{\"name\":\"Bromley\",\"cx\":0.051536586180461884,\"cy\":51.37198402033694},{\"name\":\"Hounslow\",\"cx\":-0.3671516396902454,\"cy\":51.46838045919461},{\"name\":\"Ealing\",\"cx\":-0.331019323573572,\"cy\":51.52247610268018},{\"name\":\"Havering\",\"cx\":0.22111695897456907,\"cy\":51.564368109593914},{\"name\":\"Hillingdon\",\"cx\":-0.4456619192134244,\"cy\":51.54147118065276},{\"name\":\"Harrow\",\"cx\":-0.34127462993183943,\"cy\":51.59771852185307},{\"name\":\"Brent\",\"cx\":-0.2678117446868589,\"cy\":51.558554439571225},{\"name\":\"Barnet\",\"cx\":-0.2100178905687616,\"cy\":51.61601840050092},{\"name\":\"Lambeth\",\"cx\":-0.11827879184555543,\"cy\":51.45307915598091},{\"name\":\"Southwark\",\"cx\":-0.07460248417459615,\"cy\":51.47313736252929},{\"name\":\"Lewisham\",\"cx\":-0.020251210147097444,\"cy\":51.44808622366465},{\"name\":\"Greenwich\",\"cx\":0.05623854022441538,\"cy\":51.47280349330009},{\"name\":\"Bexley\",\"cx\":0.14034521936844538,\"cy\":51.45881060129503},{\"name\":\"Enfield\",\"cx\":-0.08726531756552813,\"cy\":51.650991897325454},{\"name\":\"Waltham Forest\",\"cx\":-0.012645389036967391,\"cy\":51.59402179942259},{\"name\":\"Redbridge\",\"cx\":0.07586498666349965,\"cy\":51.58566980239283},{\"name\":\"Sutton\",\"cx\":-0.1775706458949663,\"cy\":51.36208881322784},{\"name\":\"Richmond upon Thames\",\"cx\":-0.312989912939369,\"cy\":51.44217087768007},{\"name\":\"Merton\",\"cx\":-0.19724686451592524,\"cy\":51.40994982121643},{\"name\":\"Wandsworth\",\"cx\":-0.18644255213923716,\"cy\":51.45135372974042},{\"name\":\"Hammersmith and Fulham\",\"cx\":-0.22312501860130696,\"cy\":51.49760349773975},{\"name\":\"Kensington and Chelsea\",\"cx\":-0.1926146417708775,\"cy\":51.50326858912867},{\"name\":\"Westminster\",\"cx\":-0.16129707300361068,\"cy\":51.513897745031734},{\"name\":\"Camden\",\"cx\":-0.15741523389534484,\"cy\":51.54639253962996},{\"name\":\"Tower Hamlets\",\"cx\":-0.03246795051939853,\"cy\":51.515056063777294},{\"name\":\"Islington\",\"cx\":-0.10744657464865907,\"cy\":51.54550386068218},{\"name\":\"Hackney\",\"cx\":-0.06564515736890775,\"cy\":51.54976532427057},{\"name\":\"Haringey\",\"cx\":-0.10747319126297968,\"cy\":51.59037386425316},{\"name\":\"Newham\",\"cx\":0.036385305135703754,\"cy\":51.52834280272405},{\"name\":\"Barking and Dagenham\",\"cx\":0.13352186486629006,\"cy\":51.545272267046116},{\"name\":\"City of London\",\"cx\":-0.09232371387227843,\"cy\":51.51529009582889}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"{\"data\":[{\"Region\":\"California\",\"output\":423967,\"longitude\":-119.4179,\"latitude\":36.7783},{\"Region\":\"Texas\",\"output\":695662,\"longitude\":-99.9018,\"latitude\":31.9686},{\"Region\":\"Alaska\",\"output\":1717850,\"longitude\":-149.4937,\"latitude\":64.2008}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Region\"],\"color\":[\"output\"]}}]"} +{"prompt":"{\"data\":[{\"Landmark\":\"Eiffel Tower\",\"visitors_per_year\":7000000,\"longitude\":2.2945,\"latitude\":48.8584},{\"Landmark\":\"Colosseum\",\"visitors_per_year\":5500000,\"longitude\":12.4924,\"latitude\":41.8902},{\"Landmark\":\"Statue of Liberty\",\"visitors_per_year\":4300000,\"longitude\":-74.0445,\"latitude\":40.6892}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"Landmark\"],\"color\":[\"visitors_per_year\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"国家\":\"中国\",\"GDP\":14300000000000,\"longitude\":104.1954,\"latitude\":35.8617},{\"国家\":\"美国\",\"GDP\":21430000000000,\"longitude\":-95.7129,\"latitude\":37.0902},{\"国家\":\"日本\",\"GDP\":5080000000000,\"longitude\":138.2529,\"latitude\":36.2048}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"longitude\"],\"y\":[\"latitude\"],\"label\":[\"国家\"],\"color\":[\"GDP\"]}}]"} +{"prompt":"可视化{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.2869,\"cy\":51.3879},{\"name\":\"Croydon\",\"cx\":-0.0872,\"cy\":51.3553},{\"name\":\"Bromley\",\"cx\":0.0515,\"cy\":51.372},{\"name\":\"Hounslow\",\"cx\":-0.3672,\"cy\":51.4684},{\"name\":\"Ealing\",\"cx\":-0.331,\"cy\":51.5225},{\"name\":\"Havering\",\"cx\":0.2211,\"cy\":51.5644}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"{\"data\":[{\"name\":\"Kingston upon Thames\",\"cx\":-0.28691465719243003,\"cy\":51.387893353778395},{\"name\":\"Croydon\",\"cx\":-0.08716546101532906,\"cy\":51.355317416374},{\"name\":\"Bromley\",\"cx\":0.051536586180461884,\"cy\":51.37198402033694},{\"name\":\"Hounslow\",\"cx\":-0.3671516396902454,\"cy\":51.46838045919461},{\"name\":\"Ealing\",\"cx\":-0.331019323573572,\"cy\":51.52247610268018},{\"name\":\"Havering\",\"cx\":0.22111695897456907,\"cy\":51.564368109593914},{\"name\":\"Hillingdon\",\"cx\":-0.4456619192134244,\"cy\":51.54147118065276},{\"name\":\"Harrow\",\"cx\":-0.34127462993183943,\"cy\":51.59771852185307},{\"name\":\"Brent\",\"cx\":-0.2678117446868589,\"cy\":51.558554439571225},{\"name\":\"Barnet\",\"cx\":-0.2100178905687616,\"cy\":51.61601840050092},{\"name\":\"Lambeth\",\"cx\":-0.11827879184555543,\"cy\":51.45307915598091},{\"name\":\"Southwark\",\"cx\":-0.07460248417459615,\"cy\":51.47313736252929},{\"name\":\"Lewisham\",\"cx\":-0.020251210147097444,\"cy\":51.44808622366465},{\"name\":\"Greenwich\",\"cx\":0.05623854022441538,\"cy\":51.47280349330009},{\"name\":\"Bexley\",\"cx\":0.14034521936844538,\"cy\":51.45881060129503},{\"name\":\"Enfield\",\"cx\":-0.08726531756552813,\"cy\":51.650991897325454},{\"name\":\"Waltham Forest\",\"cx\":-0.012645389036967391,\"cy\":51.59402179942259},{\"name\":\"Redbridge\",\"cx\":0.07586498666349965,\"cy\":51.58566980239283},{\"name\":\"Sutton\",\"cx\":-0.1775706458949663,\"cy\":51.36208881322784},{\"name\":\"Richmond upon Thames\",\"cx\":-0.312989912939369,\"cy\":51.44217087768007},{\"name\":\"Merton\",\"cx\":-0.19724686451592524,\"cy\":51.40994982121643},{\"name\":\"Wandsworth\",\"cx\":-0.18644255213923716,\"cy\":51.45135372974042},{\"name\":\"Hammersmith and Fulham\",\"cx\":-0.22312501860130696,\"cy\":51.49760349773975},{\"name\":\"Kensington and Chelsea\",\"cx\":-0.1926146417708775,\"cy\":51.50326858912867},{\"name\":\"Westminster\",\"cx\":-0.16129707300361068,\"cy\":51.513897745031734},{\"name\":\"Camden\",\"cx\":-0.15741523389534484,\"cy\":51.54639253962996},{\"name\":\"Tower Hamlets\",\"cx\":-0.03246795051939853,\"cy\":51.515056063777294},{\"name\":\"Islington\",\"cx\":-0.10744657464865907,\"cy\":51.54550386068218},{\"name\":\"Hackney\",\"cx\":-0.06564515736890775,\"cy\":51.54976532427057},{\"name\":\"Haringey\",\"cx\":-0.10747319126297968,\"cy\":51.59037386425316},{\"name\":\"Newham\",\"cx\":0.036385305135703754,\"cy\":51.52834280272405},{\"name\":\"Barking and Dagenham\",\"cx\":0.13352186486629006,\"cy\":51.545272267046116},{\"name\":\"City of London\",\"cx\":-0.09232371387227843,\"cy\":51.51529009582889}]}","answer":"[{\"type\":\"map\",\"encode\":{\"x\":[\"cx\"],\"y\":[\"cy\"],\"label\":[\"name\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"学期\",\"dataType\":\"string\"},{\"name\":\"学员人数\",\"dataType\":\"number\"}],\"data\":[{\"学期\":\"秋季\",\"学员人数\":300},{\"学期\":\"冬季\",\"学员人数\":280},{\"学期\":\"春季\",\"学员人数\":320},{\"学期\":\"夏季\",\"学员人数\":350}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"学期\"],\"y\":[\"学员人数\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"月份\",\"dataType\":\"string\"},{\"name\":\"降雨量\",\"dataType\":\"number\"}],\"data\":[{\"月份\":\"一月\",\"降雨量\":30},{\"月份\":\"二月\",\"降雨量\":28},{\"月份\":\"三月\",\"降雨量\":45},{\"月份\":\"四月\",\"降雨量\":60},{\"月份\":\"五月\",\"降雨量\":75},{\"月份\":\"六月\",\"降雨量\":90}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"月份\"],\"y\":[\"降雨量\"]}}]"} +{"prompt":"展示{\"data\":[{\"公司\":\"TechCorp\",\"月度\":\"2021-07\",\"盈利\":450},{\"公司\":\"TechCorp\",\"月度\":\"2021-08\",\"盈利\":520},{\"公司\":\"TechCorp\",\"月度\":\"2021-09\",\"盈利\":480},{\"公司\":\"TechCorp\",\"月度\":\"2021-10\",\"盈利\":530},{\"公司\":\"TechCorp\",\"月度\":\"2021-11\",\"盈利\":600}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"月度\"],\"y\":[\"盈利\"],\"s\":[\"公司\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"月度\"],\"y\":[\"盈利\"],\"s\":[\"公司\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"时间\":\"2023-07-15T08:00:00\",\"流量\":120},{\"时间\":\"2023-07-15T09:00:00\",\"流量\":132},{\"时间\":\"2023-07-15T10:00:00\",\"流量\":128},{\"时间\":\"2023-07-15T11:00:00\",\"流量\":150},{\"时间\":\"2023-07-15T12:00:00\",\"流量\":170}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"时间\"],\"y\":[\"流量\"]}}]"} +{"prompt":"{\"data\":[{\"日期\":\"01/06/2023\",\"温度\":22,\"湿度\":68},{\"日期\":\"02/06/2023\",\"温度\":24,\"湿度\":70},{\"日期\":\"03/06/2023\",\"温度\":26,\"湿度\":74},{\"日期\":\"04/06/2023\",\"温度\":27,\"湿度\":72},{\"日期\":\"05/06/2023\",\"温度\":25,\"湿度\":69}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"日期\"],\"y\":[\"温度\",\"湿度\"]}}]"} +{"prompt":"{\"data\":[{\"day\":\"01-Apr-2023\",\"temperature\":25,\"humidity\":80},{\"day\":\"02-Apr-2023\",\"temperature\":27,\"humidity\":82},{\"day\":\"03-Apr-2023\",\"temperature\":26,\"humidity\":79},{\"day\":\"04-Apr-2023\",\"temperature\":28,\"humidity\":84},{\"day\":\"05-Apr-2023\",\"temperature\":30,\"humidity\":85}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"day\"],\"y\":[\"temperature\",\"humidity\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"dateCollected\":\"2023-03-16\",\"temperature\":22.5,\"humidity\":60.5},{\"dateCollected\":\"2023-03-17\",\"temperature\":25.1,\"humidity\":55.2},{\"dateCollected\":\"2023-03-18\",\"temperature\":18.3,\"humidity\":65.7},{\"dateCollected\":\"2023-03-19\",\"temperature\":20.7,\"humidity\":70.3},{\"dateCollected\":\"2023-03-20\",\"temperature\":24.8,\"humidity\":50.1}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"dateCollected\"],\"y\":[\"temperature\",\"humidity\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"date\":\"2023-06-15\",\"views\":2500,\"clicks\":150},{\"date\":\"2023-06-16\",\"views\":2700,\"clicks\":180},{\"date\":\"2023-06-17\",\"views\":3000,\"clicks\":210},{\"date\":\"2023-06-18\",\"views\":3200,\"clicks\":230},{\"date\":\"2023-06-19\",\"views\":3100,\"clicks\":220}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"date\"],\"y\":[\"views\",\"clicks\"]}}]"} +{"prompt":"{\"data\":[{\"date\":\"2023.11.01\",\"score_math\":80,\"score_english\":85,\"score_music\":80,\"score_writing\":85},{\"date\":\"2023.11.02\",\"score_math\":78,\"score_english\":90,\"score_music\":80,\"score_writing\":85},{\"date\":\"2023.11.03\",\"score_math\":85,\"score_english\":87,\"score_music\":80,\"score_writing\":85},{\"date\":\"2023.11.04\",\"score_math\":90,\"score_english\":82,\"score_music\":80,\"score_writing\":85},{\"date\":\"2023.11.05\",\"score_math\":88,\"score_english\":89,\"score_music\":80,\"score_writing\":85}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"date\"],\"y\":[\"score_math\",\"score_english\",\"score_music\",\"score_writing\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"region\":\"North\",\"year\":\"2020\",\"sales\":7000},{\"region\":\"North\",\"year\":\"2021\",\"sales\":8500},{\"region\":\"North\",\"year\":\"2022\",\"sales\":9200}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"year\"],\"y\":[\"sales\"],\"s\":[\"region\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"year\"],\"y\":[\"sales\"],\"s\":[\"region\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"季度\",\"dataType\":\"string\"},{\"name\":\"销售额\",\"dataType\":\"number\"}],\"data\":[{\"季度\":\"Q1\",\"销售额\":20000},{\"季度\":\"Q2\",\"销售额\":25000},{\"季度\":\"Q3\",\"销售额\":30000},{\"季度\":\"Q4\",\"销售额\":35000}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"季度\"],\"y\":[\"销售额\"]}}]"} +{"prompt":"展示{\"data\":[{\"category\":\"A\",\"quarter\":\"Q1 2021\",\"profit\":3000},{\"category\":\"A\",\"quarter\":\"Q2 2021\",\"profit\":4500},{\"category\":\"A\",\"quarter\":\"Q3 2021\",\"profit\":5000},{\"category\":\"A\",\"quarter\":\"Q4 2021\",\"profit\":4800}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"quarter\"],\"y\":[\"profit\"],\"s\":[\"category\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"quarter\"],\"y\":[\"profit\"],\"s\":[\"category\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"时段\":\"早上\",\"顾客\":50},{\"时段\":\"中午\",\"顾客\":80},{\"时段\":\"下午\",\"顾客\":70},{\"时段\":\"晚上\",\"顾客\":90}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"时段\"],\"y\":[\"顾客\"]}}]"} +{"prompt":"{\"data\":[{\"timestamp\":\"2023-11-01\",\"视图\":100},{\"timestamp\":\"2023-11-02\",\"视图\":110},{\"timestamp\":\"2023-11-03\",\"视图\":105},{\"timestamp\":\"2023-11-04\",\"视图\":120},{\"timestamp\":\"2023-11-05\",\"视图\":130}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"timestamp\"],\"y\":[\"视图\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"城市\":\"上海\",\"时间\":\"Jan 2021\",\"游客数\":120},{\"城市\":\"上海\",\"时间\":\"Feb 2021\",\"游客数\":110},{\"城市\":\"上海\",\"时间\":\"Mar 2021\",\"游客数\":130},{\"城市\":\"上海\",\"时间\":\"Apr 2021\",\"游客数\":150}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"时间\"],\"y\":[\"游客数\"],\"s\":[\"城市\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"时间\"],\"y\":[\"游客数\"],\"s\":[\"城市\"]}}]"} +{"prompt":"展示{\"data\":[{\"类别\":\"电子产品\",\"月份\":\"2022-01\",\"库存量\":600},{\"类别\":\"电子产品\",\"月份\":\"2022-02\",\"库存量\":580},{\"类别\":\"电子产品\",\"月份\":\"2022-03\",\"库存量\":620},{\"类别\":\"电子产品\",\"月份\":\"2022-04\",\"库存量\":610}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"月份\"],\"y\":[\"库存量\"],\"s\":[\"类别\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"月份\"],\"y\":[\"库存量\"],\"s\":[\"类别\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"地区\":\"南方\",\"季度\":\"2020-Q1\",\"税收\":5000},{\"地区\":\"南方\",\"季度\":\"2020-Q2\",\"税收\":5300},{\"地区\":\"南方\",\"季度\":\"2020-Q3\",\"税收\":5800},{\"地区\":\"南方\",\"季度\":\"2020-Q4\",\"税收\":5600}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"季度\"],\"y\":[\"税收\"],\"s\":[\"地区\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"季度\"],\"y\":[\"税收\"],\"s\":[\"地区\"]}}]"} +{"prompt":"展示{\"data\":[{\"Survey Date\":\"2023/08/01\",\"Satisfaction\":4.5,\"Recommend\":3.8},{\"Survey Date\":\"2023/08/02\",\"Satisfaction\":4.7,\"Recommend\":4},{\"Survey Date\":\"2023/08/03\",\"Satisfaction\":4.6,\"Recommend\":3.9},{\"Survey Date\":\"2023/08/04\",\"Satisfaction\":4.8,\"Recommend\":4.1}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"Survey Date\"],\"y\":[\"Satisfaction\",\"Recommend\"]}}]"} +{"prompt":"{\"data\":[{\"time\":\"2015/05/28 16:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/28 19:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/29 04:00:00\",\"count\":\"3\"},{\"time\":\"2015/05/29 08:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/29 09:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/29 13:00:00\",\"count\":\"3\"},{\"time\":\"2015/05/29 17:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/29 19:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/30 00:00:00\",\"count\":\"10\"},{\"time\":\"2015/05/30 09:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/30 11:00:00\",\"count\":\"2\"}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"time\"],\"y\":[\"count\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"月份\",\"dataType\":\"string\"},{\"name\":\"电量消耗\",\"dataType\":\"number\"}],\"data\":[{\"月份\":\"一月\",\"电量消耗\":150},{\"月份\":\"二月\",\"电量消耗\":140},{\"月份\":\"三月\",\"电量消耗\":145},{\"月份\":\"四月\",\"电量消耗\":155},{\"月份\":\"五月\",\"电量消耗\":165}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"月份\"],\"y\":[\"电量消耗\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"学期\",\"dataType\":\"string\"},{\"name\":\"学员人数\",\"dataType\":\"number\"}],\"data\":[{\"学期\":\"秋季\",\"学员人数\":300},{\"学期\":\"冬季\",\"学员人数\":280},{\"学期\":\"春季\",\"学员人数\":320},{\"学期\":\"夏季\",\"学员人数\":350}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"学期\"],\"y\":[\"学员人数\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"月份\",\"dataType\":\"string\"},{\"name\":\"降雨量\",\"dataType\":\"number\"}],\"data\":[{\"月份\":\"一月\",\"降雨量\":30},{\"月份\":\"二月\",\"降雨量\":28},{\"月份\":\"三月\",\"降雨量\":45},{\"月份\":\"四月\",\"降雨量\":60},{\"月份\":\"五月\",\"降雨量\":75},{\"月份\":\"六月\",\"降雨量\":90}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"月份\"],\"y\":[\"降雨量\"]}}]"} +{"prompt":"展示{\"data\":[{\"公司\":\"TechCorp\",\"月度\":\"2021-07\",\"盈利\":450},{\"公司\":\"TechCorp\",\"月度\":\"2021-08\",\"盈利\":520},{\"公司\":\"TechCorp\",\"月度\":\"2021-09\",\"盈利\":480},{\"公司\":\"TechCorp\",\"月度\":\"2021-10\",\"盈利\":530},{\"公司\":\"TechCorp\",\"月度\":\"2021-11\",\"盈利\":600}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"月度\"],\"y\":[\"盈利\"],\"s\":[\"公司\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"月度\"],\"y\":[\"盈利\"],\"s\":[\"公司\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"时间\":\"2023-07-15T08:00:00\",\"流量\":120},{\"时间\":\"2023-07-15T09:00:00\",\"流量\":132},{\"时间\":\"2023-07-15T10:00:00\",\"流量\":128},{\"时间\":\"2023-07-15T11:00:00\",\"流量\":150},{\"时间\":\"2023-07-15T12:00:00\",\"流量\":170}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"时间\"],\"y\":[\"流量\"]}}]"} +{"prompt":"展示{\"data\":[{\"日期\":\"01/06/2023\",\"温度\":22,\"湿度\":68},{\"日期\":\"02/06/2023\",\"温度\":24,\"湿度\":70},{\"日期\":\"03/06/2023\",\"温度\":26,\"湿度\":74},{\"日期\":\"04/06/2023\",\"温度\":27,\"湿度\":72},{\"日期\":\"05/06/2023\",\"温度\":25,\"湿度\":69}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"日期\"],\"y\":[\"温度\",\"湿度\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"day\":\"01-Apr-2023\",\"temperature\":25,\"humidity\":80},{\"day\":\"02-Apr-2023\",\"temperature\":27,\"humidity\":82},{\"day\":\"03-Apr-2023\",\"temperature\":26,\"humidity\":79},{\"day\":\"04-Apr-2023\",\"temperature\":28,\"humidity\":84},{\"day\":\"05-Apr-2023\",\"temperature\":30,\"humidity\":85}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"day\"],\"y\":[\"temperature\",\"humidity\"]}}]"} +{"prompt":"展示{\"data\":[{\"dateCollected\":\"2023-03-16\",\"temperature\":22.5,\"humidity\":60.5},{\"dateCollected\":\"2023-03-17\",\"temperature\":25.1,\"humidity\":55.2},{\"dateCollected\":\"2023-03-18\",\"temperature\":18.3,\"humidity\":65.7},{\"dateCollected\":\"2023-03-19\",\"temperature\":20.7,\"humidity\":70.3},{\"dateCollected\":\"2023-03-20\",\"temperature\":24.8,\"humidity\":50.1}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"dateCollected\"],\"y\":[\"temperature\",\"humidity\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"date\":\"2023-06-15\",\"views\":2500,\"clicks\":150},{\"date\":\"2023-06-16\",\"views\":2700,\"clicks\":180},{\"date\":\"2023-06-17\",\"views\":3000,\"clicks\":210},{\"date\":\"2023-06-18\",\"views\":3200,\"clicks\":230},{\"date\":\"2023-06-19\",\"views\":3100,\"clicks\":220}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"date\"],\"y\":[\"views\",\"clicks\"]}}]"} +{"prompt":"可视化{\"data\":[{\"date\":\"2023.11.01\",\"score_math\":80,\"score_english\":85,\"score_music\":80,\"score_writing\":85},{\"date\":\"2023.11.02\",\"score_math\":78,\"score_english\":90,\"score_music\":80,\"score_writing\":85},{\"date\":\"2023.11.03\",\"score_math\":85,\"score_english\":87,\"score_music\":80,\"score_writing\":85},{\"date\":\"2023.11.04\",\"score_math\":90,\"score_english\":82,\"score_music\":80,\"score_writing\":85},{\"date\":\"2023.11.05\",\"score_math\":88,\"score_english\":89,\"score_music\":80,\"score_writing\":85}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"date\"],\"y\":[\"score_math\",\"score_english\",\"score_music\",\"score_writing\"]}}]"} +{"prompt":"展示{\"data\":[{\"region\":\"North\",\"year\":\"2020\",\"sales\":7000},{\"region\":\"North\",\"year\":\"2021\",\"sales\":8500},{\"region\":\"North\",\"year\":\"2022\",\"sales\":9200}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"year\"],\"y\":[\"sales\"],\"s\":[\"region\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"year\"],\"y\":[\"sales\"],\"s\":[\"region\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"季度\",\"dataType\":\"string\"},{\"name\":\"销售额\",\"dataType\":\"number\"}],\"data\":[{\"季度\":\"Q1\",\"销售额\":20000},{\"季度\":\"Q2\",\"销售额\":25000},{\"季度\":\"Q3\",\"销售额\":30000},{\"季度\":\"Q4\",\"销售额\":35000}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"季度\"],\"y\":[\"销售额\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"category\":\"A\",\"quarter\":\"Q1 2021\",\"profit\":3000},{\"category\":\"A\",\"quarter\":\"Q2 2021\",\"profit\":4500},{\"category\":\"A\",\"quarter\":\"Q3 2021\",\"profit\":5000},{\"category\":\"A\",\"quarter\":\"Q4 2021\",\"profit\":4800}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"quarter\"],\"y\":[\"profit\"],\"s\":[\"category\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"quarter\"],\"y\":[\"profit\"],\"s\":[\"category\"]}}]"} +{"prompt":"可视化{\"data\":[{\"时段\":\"早上\",\"顾客\":50},{\"时段\":\"中午\",\"顾客\":80},{\"时段\":\"下午\",\"顾客\":70},{\"时段\":\"晚上\",\"顾客\":90}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"时段\"],\"y\":[\"顾客\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"timestamp\":\"2023-11-01\",\"视图\":100},{\"timestamp\":\"2023-11-02\",\"视图\":110},{\"timestamp\":\"2023-11-03\",\"视图\":105},{\"timestamp\":\"2023-11-04\",\"视图\":120},{\"timestamp\":\"2023-11-05\",\"视图\":130}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"timestamp\"],\"y\":[\"视图\"]}}]"} +{"prompt":"{\"data\":[{\"城市\":\"上海\",\"时间\":\"Jan 2021\",\"游客数\":120},{\"城市\":\"上海\",\"时间\":\"Feb 2021\",\"游客数\":110},{\"城市\":\"上海\",\"时间\":\"Mar 2021\",\"游客数\":130},{\"城市\":\"上海\",\"时间\":\"Apr 2021\",\"游客数\":150}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"时间\"],\"y\":[\"游客数\"],\"s\":[\"城市\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"时间\"],\"y\":[\"游客数\"],\"s\":[\"城市\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"类别\":\"电子产品\",\"月份\":\"2022-01\",\"库存量\":600},{\"类别\":\"电子产品\",\"月份\":\"2022-02\",\"库存量\":580},{\"类别\":\"电子产品\",\"月份\":\"2022-03\",\"库存量\":620},{\"类别\":\"电子产品\",\"月份\":\"2022-04\",\"库存量\":610}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"月份\"],\"y\":[\"库存量\"],\"s\":[\"类别\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"月份\"],\"y\":[\"库存量\"],\"s\":[\"类别\"]}}]"} +{"prompt":"{\"data\":[{\"地区\":\"南方\",\"季度\":\"2020-Q1\",\"税收\":5000},{\"地区\":\"南方\",\"季度\":\"2020-Q2\",\"税收\":5300},{\"地区\":\"南方\",\"季度\":\"2020-Q3\",\"税收\":5800},{\"地区\":\"南方\",\"季度\":\"2020-Q4\",\"税收\":5600}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"季度\"],\"y\":[\"税收\"],\"s\":[\"地区\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"季度\"],\"y\":[\"税收\"],\"s\":[\"地区\"]}}]"} +{"prompt":"{\"data\":[{\"Survey Date\":\"2023/08/01\",\"Satisfaction\":4.5,\"Recommend\":3.8},{\"Survey Date\":\"2023/08/02\",\"Satisfaction\":4.7,\"Recommend\":4},{\"Survey Date\":\"2023/08/03\",\"Satisfaction\":4.6,\"Recommend\":3.9},{\"Survey Date\":\"2023/08/04\",\"Satisfaction\":4.8,\"Recommend\":4.1}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"Survey Date\"],\"y\":[\"Satisfaction\",\"Recommend\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"time\":\"2015/05/28 16:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/28 19:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/29 04:00:00\",\"count\":\"3\"},{\"time\":\"2015/05/29 08:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/29 09:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/29 13:00:00\",\"count\":\"3\"},{\"time\":\"2015/05/29 17:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/29 19:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/30 00:00:00\",\"count\":\"10\"},{\"time\":\"2015/05/30 09:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/30 11:00:00\",\"count\":\"2\"}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"time\"],\"y\":[\"count\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"月份\",\"dataType\":\"string\"},{\"name\":\"电量消耗\",\"dataType\":\"number\"}],\"data\":[{\"月份\":\"一月\",\"电量消耗\":150},{\"月份\":\"二月\",\"电量消耗\":140},{\"月份\":\"三月\",\"电量消耗\":145},{\"月份\":\"四月\",\"电量消耗\":155},{\"月份\":\"五月\",\"电量消耗\":165}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"月份\"],\"y\":[\"电量消耗\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"学期\",\"dataType\":\"string\"},{\"name\":\"学员人数\",\"dataType\":\"number\"}],\"data\":[{\"学期\":\"秋季\",\"学员人数\":300},{\"学期\":\"冬季\",\"学员人数\":280},{\"学期\":\"春季\",\"学员人数\":320},{\"学期\":\"夏季\",\"学员人数\":350}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"学期\"],\"y\":[\"学员人数\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"月份\",\"dataType\":\"string\"},{\"name\":\"降雨量\",\"dataType\":\"number\"}],\"data\":[{\"月份\":\"一月\",\"降雨量\":30},{\"月份\":\"二月\",\"降雨量\":28},{\"月份\":\"三月\",\"降雨量\":45},{\"月份\":\"四月\",\"降雨量\":60},{\"月份\":\"五月\",\"降雨量\":75},{\"月份\":\"六月\",\"降雨量\":90}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"月份\"],\"y\":[\"降雨量\"]}}]"} +{"prompt":"可视化{\"data\":[{\"公司\":\"TechCorp\",\"月度\":\"2021-07\",\"盈利\":450},{\"公司\":\"TechCorp\",\"月度\":\"2021-08\",\"盈利\":520},{\"公司\":\"TechCorp\",\"月度\":\"2021-09\",\"盈利\":480},{\"公司\":\"TechCorp\",\"月度\":\"2021-10\",\"盈利\":530},{\"公司\":\"TechCorp\",\"月度\":\"2021-11\",\"盈利\":600}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"月度\"],\"y\":[\"盈利\"],\"s\":[\"公司\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"月度\"],\"y\":[\"盈利\"],\"s\":[\"公司\"]}}]"} +{"prompt":"{\"data\":[{\"时间\":\"2023-07-15T08:00:00\",\"流量\":120},{\"时间\":\"2023-07-15T09:00:00\",\"流量\":132},{\"时间\":\"2023-07-15T10:00:00\",\"流量\":128},{\"时间\":\"2023-07-15T11:00:00\",\"流量\":150},{\"时间\":\"2023-07-15T12:00:00\",\"流量\":170}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"时间\"],\"y\":[\"流量\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"日期\":\"01/06/2023\",\"温度\":22,\"湿度\":68},{\"日期\":\"02/06/2023\",\"温度\":24,\"湿度\":70},{\"日期\":\"03/06/2023\",\"温度\":26,\"湿度\":74},{\"日期\":\"04/06/2023\",\"温度\":27,\"湿度\":72},{\"日期\":\"05/06/2023\",\"温度\":25,\"湿度\":69}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"日期\"],\"y\":[\"温度\",\"湿度\"]}}]"} +{"prompt":"可视化{\"data\":[{\"day\":\"01-Apr-2023\",\"temperature\":25,\"humidity\":80},{\"day\":\"02-Apr-2023\",\"temperature\":27,\"humidity\":82},{\"day\":\"03-Apr-2023\",\"temperature\":26,\"humidity\":79},{\"day\":\"04-Apr-2023\",\"temperature\":28,\"humidity\":84},{\"day\":\"05-Apr-2023\",\"temperature\":30,\"humidity\":85}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"day\"],\"y\":[\"temperature\",\"humidity\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"dateCollected\":\"2023-03-16\",\"temperature\":22.5,\"humidity\":60.5},{\"dateCollected\":\"2023-03-17\",\"temperature\":25.1,\"humidity\":55.2},{\"dateCollected\":\"2023-03-18\",\"temperature\":18.3,\"humidity\":65.7},{\"dateCollected\":\"2023-03-19\",\"temperature\":20.7,\"humidity\":70.3},{\"dateCollected\":\"2023-03-20\",\"temperature\":24.8,\"humidity\":50.1}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"dateCollected\"],\"y\":[\"temperature\",\"humidity\"]}}]"} +{"prompt":"展示{\"data\":[{\"date\":\"2023-06-15\",\"views\":2500,\"clicks\":150},{\"date\":\"2023-06-16\",\"views\":2700,\"clicks\":180},{\"date\":\"2023-06-17\",\"views\":3000,\"clicks\":210},{\"date\":\"2023-06-18\",\"views\":3200,\"clicks\":230},{\"date\":\"2023-06-19\",\"views\":3100,\"clicks\":220}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"date\"],\"y\":[\"views\",\"clicks\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"date\":\"2023.11.01\",\"score_math\":80,\"score_english\":85,\"score_music\":80,\"score_writing\":85},{\"date\":\"2023.11.02\",\"score_math\":78,\"score_english\":90,\"score_music\":80,\"score_writing\":85},{\"date\":\"2023.11.03\",\"score_math\":85,\"score_english\":87,\"score_music\":80,\"score_writing\":85},{\"date\":\"2023.11.04\",\"score_math\":90,\"score_english\":82,\"score_music\":80,\"score_writing\":85},{\"date\":\"2023.11.05\",\"score_math\":88,\"score_english\":89,\"score_music\":80,\"score_writing\":85}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"date\"],\"y\":[\"score_math\",\"score_english\",\"score_music\",\"score_writing\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"region\":\"North\",\"year\":\"2020\",\"sales\":7000},{\"region\":\"North\",\"year\":\"2021\",\"sales\":8500},{\"region\":\"North\",\"year\":\"2022\",\"sales\":9200}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"year\"],\"y\":[\"sales\"],\"s\":[\"region\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"year\"],\"y\":[\"sales\"],\"s\":[\"region\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"季度\",\"dataType\":\"string\"},{\"name\":\"销售额\",\"dataType\":\"number\"}],\"data\":[{\"季度\":\"Q1\",\"销售额\":20000},{\"季度\":\"Q2\",\"销售额\":25000},{\"季度\":\"Q3\",\"销售额\":30000},{\"季度\":\"Q4\",\"销售额\":35000}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"季度\"],\"y\":[\"销售额\"]}}]"} +{"prompt":"可视化{\"data\":[{\"category\":\"A\",\"quarter\":\"Q1 2021\",\"profit\":3000},{\"category\":\"A\",\"quarter\":\"Q2 2021\",\"profit\":4500},{\"category\":\"A\",\"quarter\":\"Q3 2021\",\"profit\":5000},{\"category\":\"A\",\"quarter\":\"Q4 2021\",\"profit\":4800}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"quarter\"],\"y\":[\"profit\"],\"s\":[\"category\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"quarter\"],\"y\":[\"profit\"],\"s\":[\"category\"]}}]"} +{"prompt":"可视化{\"data\":[{\"时段\":\"早上\",\"顾客\":50},{\"时段\":\"中午\",\"顾客\":80},{\"时段\":\"下午\",\"顾客\":70},{\"时段\":\"晚上\",\"顾客\":90}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"时段\"],\"y\":[\"顾客\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"timestamp\":\"2023-11-01\",\"视图\":100},{\"timestamp\":\"2023-11-02\",\"视图\":110},{\"timestamp\":\"2023-11-03\",\"视图\":105},{\"timestamp\":\"2023-11-04\",\"视图\":120},{\"timestamp\":\"2023-11-05\",\"视图\":130}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"timestamp\"],\"y\":[\"视图\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"城市\":\"上海\",\"时间\":\"Jan 2021\",\"游客数\":120},{\"城市\":\"上海\",\"时间\":\"Feb 2021\",\"游客数\":110},{\"城市\":\"上海\",\"时间\":\"Mar 2021\",\"游客数\":130},{\"城市\":\"上海\",\"时间\":\"Apr 2021\",\"游客数\":150}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"时间\"],\"y\":[\"游客数\"],\"s\":[\"城市\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"时间\"],\"y\":[\"游客数\"],\"s\":[\"城市\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"类别\":\"电子产品\",\"月份\":\"2022-01\",\"库存量\":600},{\"类别\":\"电子产品\",\"月份\":\"2022-02\",\"库存量\":580},{\"类别\":\"电子产品\",\"月份\":\"2022-03\",\"库存量\":620},{\"类别\":\"电子产品\",\"月份\":\"2022-04\",\"库存量\":610}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"月份\"],\"y\":[\"库存量\"],\"s\":[\"类别\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"月份\"],\"y\":[\"库存量\"],\"s\":[\"类别\"]}}]"} +{"prompt":"展示{\"data\":[{\"地区\":\"南方\",\"季度\":\"2020-Q1\",\"税收\":5000},{\"地区\":\"南方\",\"季度\":\"2020-Q2\",\"税收\":5300},{\"地区\":\"南方\",\"季度\":\"2020-Q3\",\"税收\":5800},{\"地区\":\"南方\",\"季度\":\"2020-Q4\",\"税收\":5600}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"季度\"],\"y\":[\"税收\"],\"s\":[\"地区\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"季度\"],\"y\":[\"税收\"],\"s\":[\"地区\"]}}]"} +{"prompt":"展示{\"data\":[{\"Survey Date\":\"2023/08/01\",\"Satisfaction\":4.5,\"Recommend\":3.8},{\"Survey Date\":\"2023/08/02\",\"Satisfaction\":4.7,\"Recommend\":4},{\"Survey Date\":\"2023/08/03\",\"Satisfaction\":4.6,\"Recommend\":3.9},{\"Survey Date\":\"2023/08/04\",\"Satisfaction\":4.8,\"Recommend\":4.1}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"Survey Date\"],\"y\":[\"Satisfaction\",\"Recommend\"]}}]"} +{"prompt":"可视化{\"data\":[{\"time\":\"2015/05/28 16:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/28 19:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/29 04:00:00\",\"count\":\"3\"},{\"time\":\"2015/05/29 08:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/29 09:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/29 13:00:00\",\"count\":\"3\"},{\"time\":\"2015/05/29 17:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/29 19:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/30 00:00:00\",\"count\":\"10\"},{\"time\":\"2015/05/30 09:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/30 11:00:00\",\"count\":\"2\"}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"time\"],\"y\":[\"count\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"月份\",\"dataType\":\"string\"},{\"name\":\"电量消耗\",\"dataType\":\"number\"}],\"data\":[{\"月份\":\"一月\",\"电量消耗\":150},{\"月份\":\"二月\",\"电量消耗\":140},{\"月份\":\"三月\",\"电量消耗\":145},{\"月份\":\"四月\",\"电量消耗\":155},{\"月份\":\"五月\",\"电量消耗\":165}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"月份\"],\"y\":[\"电量消耗\"]}}]"} +{"prompt":"可视化下列数据{\"metas\":[{\"name\":\"学期\",\"dataType\":\"string\"},{\"name\":\"学员人数\",\"dataType\":\"number\"}],\"data\":[{\"学期\":\"秋季\",\"学员人数\":300},{\"学期\":\"冬季\",\"学员人数\":280},{\"学期\":\"春季\",\"学员人数\":320},{\"学期\":\"夏季\",\"学员人数\":350}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"学期\"],\"y\":[\"学员人数\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"月份\",\"dataType\":\"string\"},{\"name\":\"降雨量\",\"dataType\":\"number\"}],\"data\":[{\"月份\":\"一月\",\"降雨量\":30},{\"月份\":\"二月\",\"降雨量\":28},{\"月份\":\"三月\",\"降雨量\":45},{\"月份\":\"四月\",\"降雨量\":60},{\"月份\":\"五月\",\"降雨量\":75},{\"月份\":\"六月\",\"降雨量\":90}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"月份\"],\"y\":[\"降雨量\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"公司\":\"TechCorp\",\"月度\":\"2021-07\",\"盈利\":450},{\"公司\":\"TechCorp\",\"月度\":\"2021-08\",\"盈利\":520},{\"公司\":\"TechCorp\",\"月度\":\"2021-09\",\"盈利\":480},{\"公司\":\"TechCorp\",\"月度\":\"2021-10\",\"盈利\":530},{\"公司\":\"TechCorp\",\"月度\":\"2021-11\",\"盈利\":600}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"月度\"],\"y\":[\"盈利\"],\"s\":[\"公司\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"月度\"],\"y\":[\"盈利\"],\"s\":[\"公司\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"时间\":\"2023-07-15T08:00:00\",\"流量\":120},{\"时间\":\"2023-07-15T09:00:00\",\"流量\":132},{\"时间\":\"2023-07-15T10:00:00\",\"流量\":128},{\"时间\":\"2023-07-15T11:00:00\",\"流量\":150},{\"时间\":\"2023-07-15T12:00:00\",\"流量\":170}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"时间\"],\"y\":[\"流量\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"日期\":\"01/06/2023\",\"温度\":22,\"湿度\":68},{\"日期\":\"02/06/2023\",\"温度\":24,\"湿度\":70},{\"日期\":\"03/06/2023\",\"温度\":26,\"湿度\":74},{\"日期\":\"04/06/2023\",\"温度\":27,\"湿度\":72},{\"日期\":\"05/06/2023\",\"温度\":25,\"湿度\":69}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"日期\"],\"y\":[\"温度\",\"湿度\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"day\":\"01-Apr-2023\",\"temperature\":25,\"humidity\":80},{\"day\":\"02-Apr-2023\",\"temperature\":27,\"humidity\":82},{\"day\":\"03-Apr-2023\",\"temperature\":26,\"humidity\":79},{\"day\":\"04-Apr-2023\",\"temperature\":28,\"humidity\":84},{\"day\":\"05-Apr-2023\",\"temperature\":30,\"humidity\":85}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"day\"],\"y\":[\"temperature\",\"humidity\"]}}]"} +{"prompt":"展示{\"data\":[{\"dateCollected\":\"2023-03-16\",\"temperature\":22.5,\"humidity\":60.5},{\"dateCollected\":\"2023-03-17\",\"temperature\":25.1,\"humidity\":55.2},{\"dateCollected\":\"2023-03-18\",\"temperature\":18.3,\"humidity\":65.7},{\"dateCollected\":\"2023-03-19\",\"temperature\":20.7,\"humidity\":70.3},{\"dateCollected\":\"2023-03-20\",\"temperature\":24.8,\"humidity\":50.1}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"dateCollected\"],\"y\":[\"temperature\",\"humidity\"]}}]"} +{"prompt":"展示{\"data\":[{\"date\":\"2023-06-15\",\"views\":2500,\"clicks\":150},{\"date\":\"2023-06-16\",\"views\":2700,\"clicks\":180},{\"date\":\"2023-06-17\",\"views\":3000,\"clicks\":210},{\"date\":\"2023-06-18\",\"views\":3200,\"clicks\":230},{\"date\":\"2023-06-19\",\"views\":3100,\"clicks\":220}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"date\"],\"y\":[\"views\",\"clicks\"]}}]"} +{"prompt":"{\"data\":[{\"date\":\"2023.11.01\",\"score_math\":80,\"score_english\":85,\"score_music\":80,\"score_writing\":85},{\"date\":\"2023.11.02\",\"score_math\":78,\"score_english\":90,\"score_music\":80,\"score_writing\":85},{\"date\":\"2023.11.03\",\"score_math\":85,\"score_english\":87,\"score_music\":80,\"score_writing\":85},{\"date\":\"2023.11.04\",\"score_math\":90,\"score_english\":82,\"score_music\":80,\"score_writing\":85},{\"date\":\"2023.11.05\",\"score_math\":88,\"score_english\":89,\"score_music\":80,\"score_writing\":85}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"date\"],\"y\":[\"score_math\",\"score_english\",\"score_music\",\"score_writing\"]}}]"} +{"prompt":"展示{\"data\":[{\"region\":\"North\",\"year\":\"2020\",\"sales\":7000},{\"region\":\"North\",\"year\":\"2021\",\"sales\":8500},{\"region\":\"North\",\"year\":\"2022\",\"sales\":9200}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"year\"],\"y\":[\"sales\"],\"s\":[\"region\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"year\"],\"y\":[\"sales\"],\"s\":[\"region\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"季度\",\"dataType\":\"string\"},{\"name\":\"销售额\",\"dataType\":\"number\"}],\"data\":[{\"季度\":\"Q1\",\"销售额\":20000},{\"季度\":\"Q2\",\"销售额\":25000},{\"季度\":\"Q3\",\"销售额\":30000},{\"季度\":\"Q4\",\"销售额\":35000}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"季度\"],\"y\":[\"销售额\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"category\":\"A\",\"quarter\":\"Q1 2021\",\"profit\":3000},{\"category\":\"A\",\"quarter\":\"Q2 2021\",\"profit\":4500},{\"category\":\"A\",\"quarter\":\"Q3 2021\",\"profit\":5000},{\"category\":\"A\",\"quarter\":\"Q4 2021\",\"profit\":4800}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"quarter\"],\"y\":[\"profit\"],\"s\":[\"category\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"quarter\"],\"y\":[\"profit\"],\"s\":[\"category\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"时段\":\"早上\",\"顾客\":50},{\"时段\":\"中午\",\"顾客\":80},{\"时段\":\"下午\",\"顾客\":70},{\"时段\":\"晚上\",\"顾客\":90}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"时段\"],\"y\":[\"顾客\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"timestamp\":\"2023-11-01\",\"视图\":100},{\"timestamp\":\"2023-11-02\",\"视图\":110},{\"timestamp\":\"2023-11-03\",\"视图\":105},{\"timestamp\":\"2023-11-04\",\"视图\":120},{\"timestamp\":\"2023-11-05\",\"视图\":130}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"timestamp\"],\"y\":[\"视图\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"城市\":\"上海\",\"时间\":\"Jan 2021\",\"游客数\":120},{\"城市\":\"上海\",\"时间\":\"Feb 2021\",\"游客数\":110},{\"城市\":\"上海\",\"时间\":\"Mar 2021\",\"游客数\":130},{\"城市\":\"上海\",\"时间\":\"Apr 2021\",\"游客数\":150}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"时间\"],\"y\":[\"游客数\"],\"s\":[\"城市\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"时间\"],\"y\":[\"游客数\"],\"s\":[\"城市\"]}}]"} +{"prompt":"展示{\"data\":[{\"类别\":\"电子产品\",\"月份\":\"2022-01\",\"库存量\":600},{\"类别\":\"电子产品\",\"月份\":\"2022-02\",\"库存量\":580},{\"类别\":\"电子产品\",\"月份\":\"2022-03\",\"库存量\":620},{\"类别\":\"电子产品\",\"月份\":\"2022-04\",\"库存量\":610}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"月份\"],\"y\":[\"库存量\"],\"s\":[\"类别\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"月份\"],\"y\":[\"库存量\"],\"s\":[\"类别\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"地区\":\"南方\",\"季度\":\"2020-Q1\",\"税收\":5000},{\"地区\":\"南方\",\"季度\":\"2020-Q2\",\"税收\":5300},{\"地区\":\"南方\",\"季度\":\"2020-Q3\",\"税收\":5800},{\"地区\":\"南方\",\"季度\":\"2020-Q4\",\"税收\":5600}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"季度\"],\"y\":[\"税收\"],\"s\":[\"地区\"]}},{\"type\":\"area\",\"encode\":{\"x\":[\"季度\"],\"y\":[\"税收\"],\"s\":[\"地区\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Survey Date\":\"2023/08/01\",\"Satisfaction\":4.5,\"Recommend\":3.8},{\"Survey Date\":\"2023/08/02\",\"Satisfaction\":4.7,\"Recommend\":4},{\"Survey Date\":\"2023/08/03\",\"Satisfaction\":4.6,\"Recommend\":3.9},{\"Survey Date\":\"2023/08/04\",\"Satisfaction\":4.8,\"Recommend\":4.1}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"Survey Date\"],\"y\":[\"Satisfaction\",\"Recommend\"]}}]"} +{"prompt":"展示{\"data\":[{\"time\":\"2015/05/28 16:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/28 19:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/29 04:00:00\",\"count\":\"3\"},{\"time\":\"2015/05/29 08:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/29 09:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/29 13:00:00\",\"count\":\"3\"},{\"time\":\"2015/05/29 17:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/29 19:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/30 00:00:00\",\"count\":\"10\"},{\"time\":\"2015/05/30 09:00:00\",\"count\":\"1\"},{\"time\":\"2015/05/30 11:00:00\",\"count\":\"2\"}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"time\"],\"y\":[\"count\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"月份\",\"dataType\":\"string\"},{\"name\":\"电量消耗\",\"dataType\":\"number\"}],\"data\":[{\"月份\":\"一月\",\"电量消耗\":150},{\"月份\":\"二月\",\"电量消耗\":140},{\"月份\":\"三月\",\"电量消耗\":145},{\"月份\":\"四月\",\"电量消耗\":155},{\"月份\":\"五月\",\"电量消耗\":165}]}","answer":"[{\"type\":\"line\",\"encode\":{\"x\":[\"月份\"],\"y\":[\"电量消耗\"]}}]"} +{"prompt":"可视化{\"data\":[{\"水费\":48},{\"水费\":50},{\"水费\":45},{\"水费\":52},{\"水费\":47}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"水费\"]}}]"} +{"prompt":"可视化{\"data\":[{\"distance\":5},{\"distance\":7.2},{\"distance\":8.1},{\"distance\":6.4},{\"distance\":5.6}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"distance\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"temperature\":15.6},{\"temperature\":18.2},{\"temperature\":17.8},{\"temperature\":20.1},{\"temperature\":16.4}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"temperature\"]}}]"} +{"prompt":"展示{\"data\":[{\"speed\":50},{\"speed\":55},{\"speed\":52},{\"speed\":56},{\"speed\":54}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"speed\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"age\":23},{\"age\":20},{\"age\":25},{\"age\":30},{\"age\":27},{\"age\":35}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"age\"]}}]"} +{"prompt":"展示{\"data\":[{\"生产率\":98},{\"生产率\":95},{\"生产率\":100},{\"生产率\":93},{\"生产率\":97}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"生产率\"]}}]"} +{"prompt":"{\"data\":[{\"speed\":120},{\"speed\":135},{\"speed\":110},{\"speed\":125},{\"speed\":140}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"speed\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"水费\":48},{\"水费\":50},{\"水费\":45},{\"水费\":52},{\"水费\":47}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"水费\"]}}]"} +{"prompt":"{\"data\":[{\"distance\":5},{\"distance\":7.2},{\"distance\":8.1},{\"distance\":6.4},{\"distance\":5.6}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"distance\"]}}]"} +{"prompt":"展示{\"data\":[{\"temperature\":15.6},{\"temperature\":18.2},{\"temperature\":17.8},{\"temperature\":20.1},{\"temperature\":16.4}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"temperature\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"speed\":50},{\"speed\":55},{\"speed\":52},{\"speed\":56},{\"speed\":54}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"speed\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"age\":23},{\"age\":20},{\"age\":25},{\"age\":30},{\"age\":27},{\"age\":35}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"age\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"生产率\":98},{\"生产率\":95},{\"生产率\":100},{\"生产率\":93},{\"生产率\":97}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"生产率\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"speed\":120},{\"speed\":135},{\"speed\":110},{\"speed\":125},{\"speed\":140}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"speed\"]}}]"} +{"prompt":"可视化{\"data\":[{\"水费\":48},{\"水费\":50},{\"水费\":45},{\"水费\":52},{\"水费\":47}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"水费\"]}}]"} +{"prompt":"展示{\"data\":[{\"distance\":5},{\"distance\":7.2},{\"distance\":8.1},{\"distance\":6.4},{\"distance\":5.6}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"distance\"]}}]"} +{"prompt":"{\"data\":[{\"temperature\":15.6},{\"temperature\":18.2},{\"temperature\":17.8},{\"temperature\":20.1},{\"temperature\":16.4}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"temperature\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"speed\":50},{\"speed\":55},{\"speed\":52},{\"speed\":56},{\"speed\":54}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"speed\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"age\":23},{\"age\":20},{\"age\":25},{\"age\":30},{\"age\":27},{\"age\":35}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"age\"]}}]"} +{"prompt":"{\"data\":[{\"生产率\":98},{\"生产率\":95},{\"生产率\":100},{\"生产率\":93},{\"生产率\":97}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"生产率\"]}}]"} +{"prompt":"可视化{\"data\":[{\"speed\":120},{\"speed\":135},{\"speed\":110},{\"speed\":125},{\"speed\":140}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"speed\"]}}]"} +{"prompt":"{\"data\":[{\"水费\":48},{\"水费\":50},{\"水费\":45},{\"水费\":52},{\"水费\":47}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"水费\"]}}]"} +{"prompt":"可视化{\"data\":[{\"distance\":5},{\"distance\":7.2},{\"distance\":8.1},{\"distance\":6.4},{\"distance\":5.6}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"distance\"]}}]"} +{"prompt":"{\"data\":[{\"temperature\":15.6},{\"temperature\":18.2},{\"temperature\":17.8},{\"temperature\":20.1},{\"temperature\":16.4}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"temperature\"]}}]"} +{"prompt":"{\"data\":[{\"speed\":50},{\"speed\":55},{\"speed\":52},{\"speed\":56},{\"speed\":54}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"speed\"]}}]"} +{"prompt":"{\"data\":[{\"age\":23},{\"age\":20},{\"age\":25},{\"age\":30},{\"age\":27},{\"age\":35}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"age\"]}}]"} +{"prompt":"{\"data\":[{\"生产率\":98},{\"生产率\":95},{\"生产率\":100},{\"生产率\":93},{\"生产率\":97}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"生产率\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"speed\":120},{\"speed\":135},{\"speed\":110},{\"speed\":125},{\"speed\":140}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"speed\"]}}]"} +{"prompt":"展示{\"data\":[{\"水费\":48},{\"水费\":50},{\"水费\":45},{\"水费\":52},{\"水费\":47}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"水费\"]}}]"} +{"prompt":"可视化{\"data\":[{\"distance\":5},{\"distance\":7.2},{\"distance\":8.1},{\"distance\":6.4},{\"distance\":5.6}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"distance\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"temperature\":15.6},{\"temperature\":18.2},{\"temperature\":17.8},{\"temperature\":20.1},{\"temperature\":16.4}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"temperature\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"speed\":50},{\"speed\":55},{\"speed\":52},{\"speed\":56},{\"speed\":54}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"speed\"]}}]"} +{"prompt":"可视化{\"data\":[{\"age\":23},{\"age\":20},{\"age\":25},{\"age\":30},{\"age\":27},{\"age\":35}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"age\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"生产率\":98},{\"生产率\":95},{\"生产率\":100},{\"生产率\":93},{\"生产率\":97}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"生产率\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"speed\":120},{\"speed\":135},{\"speed\":110},{\"speed\":125},{\"speed\":140}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"speed\"]}}]"} +{"prompt":"{\"data\":[{\"水费\":48},{\"水费\":50},{\"水费\":45},{\"水费\":52},{\"水费\":47}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"水费\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"distance\":5},{\"distance\":7.2},{\"distance\":8.1},{\"distance\":6.4},{\"distance\":5.6}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"distance\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"temperature\":15.6},{\"temperature\":18.2},{\"temperature\":17.8},{\"temperature\":20.1},{\"temperature\":16.4}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"temperature\"]}}]"} +{"prompt":"展示{\"data\":[{\"speed\":50},{\"speed\":55},{\"speed\":52},{\"speed\":56},{\"speed\":54}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"speed\"]}}]"} +{"prompt":"可视化{\"data\":[{\"age\":23},{\"age\":20},{\"age\":25},{\"age\":30},{\"age\":27},{\"age\":35}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"age\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"生产率\":98},{\"生产率\":95},{\"生产率\":100},{\"生产率\":93},{\"生产率\":97}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"生产率\"]}}]"} +{"prompt":"展示{\"data\":[{\"speed\":120},{\"speed\":135},{\"speed\":110},{\"speed\":125},{\"speed\":140}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"speed\"]}}]"} +{"prompt":"可视化{\"data\":[{\"水费\":48},{\"水费\":50},{\"水费\":45},{\"水费\":52},{\"水费\":47}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"水费\"]}}]"} +{"prompt":"展示{\"data\":[{\"distance\":5},{\"distance\":7.2},{\"distance\":8.1},{\"distance\":6.4},{\"distance\":5.6}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"distance\"]}}]"} +{"prompt":"{\"data\":[{\"temperature\":15.6},{\"temperature\":18.2},{\"temperature\":17.8},{\"temperature\":20.1},{\"temperature\":16.4}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"temperature\"]}}]"} +{"prompt":"{\"data\":[{\"speed\":50},{\"speed\":55},{\"speed\":52},{\"speed\":56},{\"speed\":54}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"speed\"]}}]"} +{"prompt":"展示{\"data\":[{\"age\":23},{\"age\":20},{\"age\":25},{\"age\":30},{\"age\":27},{\"age\":35}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"age\"]}}]"} +{"prompt":"可视化{\"data\":[{\"生产率\":98},{\"生产率\":95},{\"生产率\":100},{\"生产率\":93},{\"生产率\":97}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"生产率\"]}}]"} +{"prompt":"可视化{\"data\":[{\"speed\":120},{\"speed\":135},{\"speed\":110},{\"speed\":125},{\"speed\":140}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"speed\"]}}]"} +{"prompt":"{\"data\":[{\"水费\":48},{\"水费\":50},{\"水费\":45},{\"水费\":52},{\"水费\":47}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"水费\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"distance\":5},{\"distance\":7.2},{\"distance\":8.1},{\"distance\":6.4},{\"distance\":5.6}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"distance\"]}}]"} +{"prompt":"展示{\"data\":[{\"temperature\":15.6},{\"temperature\":18.2},{\"temperature\":17.8},{\"temperature\":20.1},{\"temperature\":16.4}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"temperature\"]}}]"} +{"prompt":"{\"data\":[{\"speed\":50},{\"speed\":55},{\"speed\":52},{\"speed\":56},{\"speed\":54}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"speed\"]}}]"} +{"prompt":"可视化{\"data\":[{\"age\":23},{\"age\":20},{\"age\":25},{\"age\":30},{\"age\":27},{\"age\":35}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"age\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"生产率\":98},{\"生产率\":95},{\"生产率\":100},{\"生产率\":93},{\"生产率\":97}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"生产率\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"speed\":120},{\"speed\":135},{\"speed\":110},{\"speed\":125},{\"speed\":140}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"speed\"]}}]"} +{"prompt":"{\"data\":[{\"水费\":48},{\"水费\":50},{\"水费\":45},{\"水费\":52},{\"水费\":47}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"水费\"]}}]"} +{"prompt":"展示{\"data\":[{\"distance\":5},{\"distance\":7.2},{\"distance\":8.1},{\"distance\":6.4},{\"distance\":5.6}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"distance\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"temperature\":15.6},{\"temperature\":18.2},{\"temperature\":17.8},{\"temperature\":20.1},{\"temperature\":16.4}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"temperature\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"speed\":50},{\"speed\":55},{\"speed\":52},{\"speed\":56},{\"speed\":54}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"speed\"]}}]"} +{"prompt":"{\"data\":[{\"age\":23},{\"age\":20},{\"age\":25},{\"age\":30},{\"age\":27},{\"age\":35}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"age\"]}}]"} +{"prompt":"展示{\"data\":[{\"生产率\":98},{\"生产率\":95},{\"生产率\":100},{\"生产率\":93},{\"生产率\":97}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"生产率\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"speed\":120},{\"speed\":135},{\"speed\":110},{\"speed\":125},{\"speed\":140}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"speed\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"水费\":48},{\"水费\":50},{\"水费\":45},{\"水费\":52},{\"水费\":47}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"水费\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"distance\":5},{\"distance\":7.2},{\"distance\":8.1},{\"distance\":6.4},{\"distance\":5.6}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"distance\"]}}]"} +{"prompt":"可视化{\"data\":[{\"temperature\":15.6},{\"temperature\":18.2},{\"temperature\":17.8},{\"temperature\":20.1},{\"temperature\":16.4}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"temperature\"]}}]"} +{"prompt":"展示{\"data\":[{\"speed\":50},{\"speed\":55},{\"speed\":52},{\"speed\":56},{\"speed\":54}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"speed\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"age\":23},{\"age\":20},{\"age\":25},{\"age\":30},{\"age\":27},{\"age\":35}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"age\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"生产率\":98},{\"生产率\":95},{\"生产率\":100},{\"生产率\":93},{\"生产率\":97}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"生产率\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"speed\":120},{\"speed\":135},{\"speed\":110},{\"speed\":125},{\"speed\":140}]}","answer":"[{\"type\":\"histogram\",\"encode\":{\"y\":[\"speed\"]}}]"} +{"prompt":"{\"data\":[{\"category\":\"北京\",\"percentage\":30},{\"category\":\"上海\",\"percentage\":25},{\"category\":\"广州\",\"percentage\":20},{\"category\":\"深圳\",\"percentage\":15},{\"category\":\"其他\",\"percentage\":10}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"category\"],\"y\":[\"percentage\"]}}]"} +{"prompt":"{\"data\":[{\"产品类别\":\"电子产品\",\"销售额\":500000},{\"产品类别\":\"家具\",\"销售额\":150000},{\"产品类别\":\"服饰\",\"销售额\":100000},{\"产品类别\":\"食品\",\"销售额\":250000},{\"产品类别\":\"书籍\",\"销售额\":50000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"产品类别\"],\"y\":[\"销售额\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"水果\":\"苹果\",\"数量\":30000},{\"水果\":\"香蕉\",\"数量\":25000},{\"水果\":\"橙子\",\"数量\":20000},{\"水果\":\"葡萄\",\"数量\":15000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"水果\"],\"y\":[\"数量\"]}}]"} +{"prompt":"{\"data\":[{\"sector\":\"Healthcare\",\"fraction\":12.5},{\"sector\":\"Technology\",\"fraction\":20},{\"sector\":\"Finance\",\"fraction\":15},{\"sector\":\"Energy\",\"fraction\":10},{\"sector\":\"Consumer Goods\",\"fraction\":42.5}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"sector\"],\"y\":[\"fraction\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Cuisine Type\":\"Italian\",\"Number of Restaurants\":120},{\"Cuisine Type\":\"Chinese\",\"Number of Restaurants\":300},{\"Cuisine Type\":\"Mexican\",\"Number of Restaurants\":150},{\"Cuisine Type\":\"Indian\",\"Number of Restaurants\":100}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"Cuisine Type\"],\"y\":[\"Number of Restaurants\"]}}]"} +{"prompt":"{\"data\":[{\"Payment Method\":\"Credit Card\",\"Amount\":75000},{\"Payment Method\":\"Cash\",\"Amount\":125000},{\"Payment Method\":\"Digital Wallet\",\"Amount\":52000},{\"Payment Method\":\"Bank Transfer\",\"Amount\":43000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"Payment Method\"],\"y\":[\"Amount\"]}}]"} +{"prompt":"展示{\"data\":[{\"Beverage\":\"Coffee\",\"Volume\":120000},{\"Beverage\":\"Tea\",\"Volume\":80000},{\"Beverage\":\"Juice\",\"Volume\":40000},{\"Beverage\":\"Soda\",\"Volume\":30000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"Beverage\"],\"y\":[\"Volume\"]}}]"} +{"prompt":"可视化{\"data\":[{\"product\":\"Laptop\",\"market_share\":45},{\"product\":\"Tablet\",\"market_share\":20},{\"product\":\"Smartphone\",\"market_share\":25},{\"product\":\"Desktop\",\"market_share\":10}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"product\"],\"y\":[\"market_share\"]}}]"} +{"prompt":"可视化{\"data\":[{\"genre\":\"Fiction\",\"sales\":40},{\"genre\":\"Non-Fiction\",\"sales\":30},{\"genre\":\"Comics\",\"sales\":10},{\"genre\":\"Science\",\"sales\":20}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"genre\"],\"y\":[\"sales\"]}}]"} +{"prompt":"可视化{\"data\":[{\"continent\":\"Asia\",\"proportion\":60},{\"continent\":\"Africa\",\"proportion\":15},{\"continent\":\"Europe\",\"proportion\":10},{\"continent\":\"America\",\"proportion\":10},{\"continent\":\"Oceania\",\"proportion\":5}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"continent\"],\"y\":[\"proportion\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"category\":\"北京\",\"percentage\":30},{\"category\":\"上海\",\"percentage\":25},{\"category\":\"广州\",\"percentage\":20},{\"category\":\"深圳\",\"percentage\":15},{\"category\":\"其他\",\"percentage\":10}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"category\"],\"y\":[\"percentage\"]}}]"} +{"prompt":"{\"data\":[{\"产品类别\":\"电子产品\",\"销售额\":500000},{\"产品类别\":\"家具\",\"销售额\":150000},{\"产品类别\":\"服饰\",\"销售额\":100000},{\"产品类别\":\"食品\",\"销售额\":250000},{\"产品类别\":\"书籍\",\"销售额\":50000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"产品类别\"],\"y\":[\"销售额\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"水果\":\"苹果\",\"数量\":30000},{\"水果\":\"香蕉\",\"数量\":25000},{\"水果\":\"橙子\",\"数量\":20000},{\"水果\":\"葡萄\",\"数量\":15000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"水果\"],\"y\":[\"数量\"]}}]"} +{"prompt":"可视化{\"data\":[{\"sector\":\"Healthcare\",\"fraction\":12.5},{\"sector\":\"Technology\",\"fraction\":20},{\"sector\":\"Finance\",\"fraction\":15},{\"sector\":\"Energy\",\"fraction\":10},{\"sector\":\"Consumer Goods\",\"fraction\":42.5}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"sector\"],\"y\":[\"fraction\"]}}]"} +{"prompt":"展示{\"data\":[{\"Cuisine Type\":\"Italian\",\"Number of Restaurants\":120},{\"Cuisine Type\":\"Chinese\",\"Number of Restaurants\":300},{\"Cuisine Type\":\"Mexican\",\"Number of Restaurants\":150},{\"Cuisine Type\":\"Indian\",\"Number of Restaurants\":100}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"Cuisine Type\"],\"y\":[\"Number of Restaurants\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Payment Method\":\"Credit Card\",\"Amount\":75000},{\"Payment Method\":\"Cash\",\"Amount\":125000},{\"Payment Method\":\"Digital Wallet\",\"Amount\":52000},{\"Payment Method\":\"Bank Transfer\",\"Amount\":43000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"Payment Method\"],\"y\":[\"Amount\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Beverage\":\"Coffee\",\"Volume\":120000},{\"Beverage\":\"Tea\",\"Volume\":80000},{\"Beverage\":\"Juice\",\"Volume\":40000},{\"Beverage\":\"Soda\",\"Volume\":30000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"Beverage\"],\"y\":[\"Volume\"]}}]"} +{"prompt":"{\"data\":[{\"product\":\"Laptop\",\"market_share\":45},{\"product\":\"Tablet\",\"market_share\":20},{\"product\":\"Smartphone\",\"market_share\":25},{\"product\":\"Desktop\",\"market_share\":10}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"product\"],\"y\":[\"market_share\"]}}]"} +{"prompt":"可视化{\"data\":[{\"genre\":\"Fiction\",\"sales\":40},{\"genre\":\"Non-Fiction\",\"sales\":30},{\"genre\":\"Comics\",\"sales\":10},{\"genre\":\"Science\",\"sales\":20}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"genre\"],\"y\":[\"sales\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"continent\":\"Asia\",\"proportion\":60},{\"continent\":\"Africa\",\"proportion\":15},{\"continent\":\"Europe\",\"proportion\":10},{\"continent\":\"America\",\"proportion\":10},{\"continent\":\"Oceania\",\"proportion\":5}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"continent\"],\"y\":[\"proportion\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"category\":\"北京\",\"percentage\":30},{\"category\":\"上海\",\"percentage\":25},{\"category\":\"广州\",\"percentage\":20},{\"category\":\"深圳\",\"percentage\":15},{\"category\":\"其他\",\"percentage\":10}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"category\"],\"y\":[\"percentage\"]}}]"} +{"prompt":"展示{\"data\":[{\"产品类别\":\"电子产品\",\"销售额\":500000},{\"产品类别\":\"家具\",\"销售额\":150000},{\"产品类别\":\"服饰\",\"销售额\":100000},{\"产品类别\":\"食品\",\"销售额\":250000},{\"产品类别\":\"书籍\",\"销售额\":50000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"产品类别\"],\"y\":[\"销售额\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"水果\":\"苹果\",\"数量\":30000},{\"水果\":\"香蕉\",\"数量\":25000},{\"水果\":\"橙子\",\"数量\":20000},{\"水果\":\"葡萄\",\"数量\":15000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"水果\"],\"y\":[\"数量\"]}}]"} +{"prompt":"{\"data\":[{\"sector\":\"Healthcare\",\"fraction\":12.5},{\"sector\":\"Technology\",\"fraction\":20},{\"sector\":\"Finance\",\"fraction\":15},{\"sector\":\"Energy\",\"fraction\":10},{\"sector\":\"Consumer Goods\",\"fraction\":42.5}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"sector\"],\"y\":[\"fraction\"]}}]"} +{"prompt":"{\"data\":[{\"Cuisine Type\":\"Italian\",\"Number of Restaurants\":120},{\"Cuisine Type\":\"Chinese\",\"Number of Restaurants\":300},{\"Cuisine Type\":\"Mexican\",\"Number of Restaurants\":150},{\"Cuisine Type\":\"Indian\",\"Number of Restaurants\":100}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"Cuisine Type\"],\"y\":[\"Number of Restaurants\"]}}]"} +{"prompt":"展示{\"data\":[{\"Payment Method\":\"Credit Card\",\"Amount\":75000},{\"Payment Method\":\"Cash\",\"Amount\":125000},{\"Payment Method\":\"Digital Wallet\",\"Amount\":52000},{\"Payment Method\":\"Bank Transfer\",\"Amount\":43000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"Payment Method\"],\"y\":[\"Amount\"]}}]"} +{"prompt":"可视化{\"data\":[{\"Beverage\":\"Coffee\",\"Volume\":120000},{\"Beverage\":\"Tea\",\"Volume\":80000},{\"Beverage\":\"Juice\",\"Volume\":40000},{\"Beverage\":\"Soda\",\"Volume\":30000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"Beverage\"],\"y\":[\"Volume\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"product\":\"Laptop\",\"market_share\":45},{\"product\":\"Tablet\",\"market_share\":20},{\"product\":\"Smartphone\",\"market_share\":25},{\"product\":\"Desktop\",\"market_share\":10}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"product\"],\"y\":[\"market_share\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"genre\":\"Fiction\",\"sales\":40},{\"genre\":\"Non-Fiction\",\"sales\":30},{\"genre\":\"Comics\",\"sales\":10},{\"genre\":\"Science\",\"sales\":20}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"genre\"],\"y\":[\"sales\"]}}]"} +{"prompt":"{\"data\":[{\"continent\":\"Asia\",\"proportion\":60},{\"continent\":\"Africa\",\"proportion\":15},{\"continent\":\"Europe\",\"proportion\":10},{\"continent\":\"America\",\"proportion\":10},{\"continent\":\"Oceania\",\"proportion\":5}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"continent\"],\"y\":[\"proportion\"]}}]"} +{"prompt":"可视化{\"data\":[{\"category\":\"北京\",\"percentage\":30},{\"category\":\"上海\",\"percentage\":25},{\"category\":\"广州\",\"percentage\":20},{\"category\":\"深圳\",\"percentage\":15},{\"category\":\"其他\",\"percentage\":10}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"category\"],\"y\":[\"percentage\"]}}]"} +{"prompt":"展示{\"data\":[{\"产品类别\":\"电子产品\",\"销售额\":500000},{\"产品类别\":\"家具\",\"销售额\":150000},{\"产品类别\":\"服饰\",\"销售额\":100000},{\"产品类别\":\"食品\",\"销售额\":250000},{\"产品类别\":\"书籍\",\"销售额\":50000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"产品类别\"],\"y\":[\"销售额\"]}}]"} +{"prompt":"可视化{\"data\":[{\"水果\":\"苹果\",\"数量\":30000},{\"水果\":\"香蕉\",\"数量\":25000},{\"水果\":\"橙子\",\"数量\":20000},{\"水果\":\"葡萄\",\"数量\":15000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"水果\"],\"y\":[\"数量\"]}}]"} +{"prompt":"可视化{\"data\":[{\"sector\":\"Healthcare\",\"fraction\":12.5},{\"sector\":\"Technology\",\"fraction\":20},{\"sector\":\"Finance\",\"fraction\":15},{\"sector\":\"Energy\",\"fraction\":10},{\"sector\":\"Consumer Goods\",\"fraction\":42.5}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"sector\"],\"y\":[\"fraction\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Cuisine Type\":\"Italian\",\"Number of Restaurants\":120},{\"Cuisine Type\":\"Chinese\",\"Number of Restaurants\":300},{\"Cuisine Type\":\"Mexican\",\"Number of Restaurants\":150},{\"Cuisine Type\":\"Indian\",\"Number of Restaurants\":100}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"Cuisine Type\"],\"y\":[\"Number of Restaurants\"]}}]"} +{"prompt":"{\"data\":[{\"Payment Method\":\"Credit Card\",\"Amount\":75000},{\"Payment Method\":\"Cash\",\"Amount\":125000},{\"Payment Method\":\"Digital Wallet\",\"Amount\":52000},{\"Payment Method\":\"Bank Transfer\",\"Amount\":43000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"Payment Method\"],\"y\":[\"Amount\"]}}]"} +{"prompt":"可视化{\"data\":[{\"Beverage\":\"Coffee\",\"Volume\":120000},{\"Beverage\":\"Tea\",\"Volume\":80000},{\"Beverage\":\"Juice\",\"Volume\":40000},{\"Beverage\":\"Soda\",\"Volume\":30000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"Beverage\"],\"y\":[\"Volume\"]}}]"} +{"prompt":"可视化{\"data\":[{\"product\":\"Laptop\",\"market_share\":45},{\"product\":\"Tablet\",\"market_share\":20},{\"product\":\"Smartphone\",\"market_share\":25},{\"product\":\"Desktop\",\"market_share\":10}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"product\"],\"y\":[\"market_share\"]}}]"} +{"prompt":"可视化{\"data\":[{\"genre\":\"Fiction\",\"sales\":40},{\"genre\":\"Non-Fiction\",\"sales\":30},{\"genre\":\"Comics\",\"sales\":10},{\"genre\":\"Science\",\"sales\":20}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"genre\"],\"y\":[\"sales\"]}}]"} +{"prompt":"{\"data\":[{\"continent\":\"Asia\",\"proportion\":60},{\"continent\":\"Africa\",\"proportion\":15},{\"continent\":\"Europe\",\"proportion\":10},{\"continent\":\"America\",\"proportion\":10},{\"continent\":\"Oceania\",\"proportion\":5}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"continent\"],\"y\":[\"proportion\"]}}]"} +{"prompt":"{\"data\":[{\"category\":\"北京\",\"percentage\":30},{\"category\":\"上海\",\"percentage\":25},{\"category\":\"广州\",\"percentage\":20},{\"category\":\"深圳\",\"percentage\":15},{\"category\":\"其他\",\"percentage\":10}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"category\"],\"y\":[\"percentage\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"产品类别\":\"电子产品\",\"销售额\":500000},{\"产品类别\":\"家具\",\"销售额\":150000},{\"产品类别\":\"服饰\",\"销售额\":100000},{\"产品类别\":\"食品\",\"销售额\":250000},{\"产品类别\":\"书籍\",\"销售额\":50000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"产品类别\"],\"y\":[\"销售额\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"水果\":\"苹果\",\"数量\":30000},{\"水果\":\"香蕉\",\"数量\":25000},{\"水果\":\"橙子\",\"数量\":20000},{\"水果\":\"葡萄\",\"数量\":15000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"水果\"],\"y\":[\"数量\"]}}]"} +{"prompt":"{\"data\":[{\"sector\":\"Healthcare\",\"fraction\":12.5},{\"sector\":\"Technology\",\"fraction\":20},{\"sector\":\"Finance\",\"fraction\":15},{\"sector\":\"Energy\",\"fraction\":10},{\"sector\":\"Consumer Goods\",\"fraction\":42.5}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"sector\"],\"y\":[\"fraction\"]}}]"} +{"prompt":"展示{\"data\":[{\"Cuisine Type\":\"Italian\",\"Number of Restaurants\":120},{\"Cuisine Type\":\"Chinese\",\"Number of Restaurants\":300},{\"Cuisine Type\":\"Mexican\",\"Number of Restaurants\":150},{\"Cuisine Type\":\"Indian\",\"Number of Restaurants\":100}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"Cuisine Type\"],\"y\":[\"Number of Restaurants\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Payment Method\":\"Credit Card\",\"Amount\":75000},{\"Payment Method\":\"Cash\",\"Amount\":125000},{\"Payment Method\":\"Digital Wallet\",\"Amount\":52000},{\"Payment Method\":\"Bank Transfer\",\"Amount\":43000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"Payment Method\"],\"y\":[\"Amount\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Beverage\":\"Coffee\",\"Volume\":120000},{\"Beverage\":\"Tea\",\"Volume\":80000},{\"Beverage\":\"Juice\",\"Volume\":40000},{\"Beverage\":\"Soda\",\"Volume\":30000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"Beverage\"],\"y\":[\"Volume\"]}}]"} +{"prompt":"可视化{\"data\":[{\"product\":\"Laptop\",\"market_share\":45},{\"product\":\"Tablet\",\"market_share\":20},{\"product\":\"Smartphone\",\"market_share\":25},{\"product\":\"Desktop\",\"market_share\":10}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"product\"],\"y\":[\"market_share\"]}}]"} +{"prompt":"展示{\"data\":[{\"genre\":\"Fiction\",\"sales\":40},{\"genre\":\"Non-Fiction\",\"sales\":30},{\"genre\":\"Comics\",\"sales\":10},{\"genre\":\"Science\",\"sales\":20}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"genre\"],\"y\":[\"sales\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"continent\":\"Asia\",\"proportion\":60},{\"continent\":\"Africa\",\"proportion\":15},{\"continent\":\"Europe\",\"proportion\":10},{\"continent\":\"America\",\"proportion\":10},{\"continent\":\"Oceania\",\"proportion\":5}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"continent\"],\"y\":[\"proportion\"]}}]"} +{"prompt":"{\"data\":[{\"category\":\"北京\",\"percentage\":30},{\"category\":\"上海\",\"percentage\":25},{\"category\":\"广州\",\"percentage\":20},{\"category\":\"深圳\",\"percentage\":15},{\"category\":\"其他\",\"percentage\":10}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"category\"],\"y\":[\"percentage\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"产品类别\":\"电子产品\",\"销售额\":500000},{\"产品类别\":\"家具\",\"销售额\":150000},{\"产品类别\":\"服饰\",\"销售额\":100000},{\"产品类别\":\"食品\",\"销售额\":250000},{\"产品类别\":\"书籍\",\"销售额\":50000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"产品类别\"],\"y\":[\"销售额\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"水果\":\"苹果\",\"数量\":30000},{\"水果\":\"香蕉\",\"数量\":25000},{\"水果\":\"橙子\",\"数量\":20000},{\"水果\":\"葡萄\",\"数量\":15000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"水果\"],\"y\":[\"数量\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"sector\":\"Healthcare\",\"fraction\":12.5},{\"sector\":\"Technology\",\"fraction\":20},{\"sector\":\"Finance\",\"fraction\":15},{\"sector\":\"Energy\",\"fraction\":10},{\"sector\":\"Consumer Goods\",\"fraction\":42.5}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"sector\"],\"y\":[\"fraction\"]}}]"} +{"prompt":"展示{\"data\":[{\"Cuisine Type\":\"Italian\",\"Number of Restaurants\":120},{\"Cuisine Type\":\"Chinese\",\"Number of Restaurants\":300},{\"Cuisine Type\":\"Mexican\",\"Number of Restaurants\":150},{\"Cuisine Type\":\"Indian\",\"Number of Restaurants\":100}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"Cuisine Type\"],\"y\":[\"Number of Restaurants\"]}}]"} +{"prompt":"{\"data\":[{\"Payment Method\":\"Credit Card\",\"Amount\":75000},{\"Payment Method\":\"Cash\",\"Amount\":125000},{\"Payment Method\":\"Digital Wallet\",\"Amount\":52000},{\"Payment Method\":\"Bank Transfer\",\"Amount\":43000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"Payment Method\"],\"y\":[\"Amount\"]}}]"} +{"prompt":"展示{\"data\":[{\"Beverage\":\"Coffee\",\"Volume\":120000},{\"Beverage\":\"Tea\",\"Volume\":80000},{\"Beverage\":\"Juice\",\"Volume\":40000},{\"Beverage\":\"Soda\",\"Volume\":30000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"Beverage\"],\"y\":[\"Volume\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"product\":\"Laptop\",\"market_share\":45},{\"product\":\"Tablet\",\"market_share\":20},{\"product\":\"Smartphone\",\"market_share\":25},{\"product\":\"Desktop\",\"market_share\":10}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"product\"],\"y\":[\"market_share\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"genre\":\"Fiction\",\"sales\":40},{\"genre\":\"Non-Fiction\",\"sales\":30},{\"genre\":\"Comics\",\"sales\":10},{\"genre\":\"Science\",\"sales\":20}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"genre\"],\"y\":[\"sales\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"continent\":\"Asia\",\"proportion\":60},{\"continent\":\"Africa\",\"proportion\":15},{\"continent\":\"Europe\",\"proportion\":10},{\"continent\":\"America\",\"proportion\":10},{\"continent\":\"Oceania\",\"proportion\":5}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"continent\"],\"y\":[\"proportion\"]}}]"} +{"prompt":"{\"data\":[{\"category\":\"北京\",\"percentage\":30},{\"category\":\"上海\",\"percentage\":25},{\"category\":\"广州\",\"percentage\":20},{\"category\":\"深圳\",\"percentage\":15},{\"category\":\"其他\",\"percentage\":10}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"category\"],\"y\":[\"percentage\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"产品类别\":\"电子产品\",\"销售额\":500000},{\"产品类别\":\"家具\",\"销售额\":150000},{\"产品类别\":\"服饰\",\"销售额\":100000},{\"产品类别\":\"食品\",\"销售额\":250000},{\"产品类别\":\"书籍\",\"销售额\":50000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"产品类别\"],\"y\":[\"销售额\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"水果\":\"苹果\",\"数量\":30000},{\"水果\":\"香蕉\",\"数量\":25000},{\"水果\":\"橙子\",\"数量\":20000},{\"水果\":\"葡萄\",\"数量\":15000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"水果\"],\"y\":[\"数量\"]}}]"} +{"prompt":"可视化{\"data\":[{\"sector\":\"Healthcare\",\"fraction\":12.5},{\"sector\":\"Technology\",\"fraction\":20},{\"sector\":\"Finance\",\"fraction\":15},{\"sector\":\"Energy\",\"fraction\":10},{\"sector\":\"Consumer Goods\",\"fraction\":42.5}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"sector\"],\"y\":[\"fraction\"]}}]"} +{"prompt":"{\"data\":[{\"Cuisine Type\":\"Italian\",\"Number of Restaurants\":120},{\"Cuisine Type\":\"Chinese\",\"Number of Restaurants\":300},{\"Cuisine Type\":\"Mexican\",\"Number of Restaurants\":150},{\"Cuisine Type\":\"Indian\",\"Number of Restaurants\":100}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"Cuisine Type\"],\"y\":[\"Number of Restaurants\"]}}]"} +{"prompt":"展示{\"data\":[{\"Payment Method\":\"Credit Card\",\"Amount\":75000},{\"Payment Method\":\"Cash\",\"Amount\":125000},{\"Payment Method\":\"Digital Wallet\",\"Amount\":52000},{\"Payment Method\":\"Bank Transfer\",\"Amount\":43000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"Payment Method\"],\"y\":[\"Amount\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Beverage\":\"Coffee\",\"Volume\":120000},{\"Beverage\":\"Tea\",\"Volume\":80000},{\"Beverage\":\"Juice\",\"Volume\":40000},{\"Beverage\":\"Soda\",\"Volume\":30000}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"Beverage\"],\"y\":[\"Volume\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"product\":\"Laptop\",\"market_share\":45},{\"product\":\"Tablet\",\"market_share\":20},{\"product\":\"Smartphone\",\"market_share\":25},{\"product\":\"Desktop\",\"market_share\":10}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"product\"],\"y\":[\"market_share\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"genre\":\"Fiction\",\"sales\":40},{\"genre\":\"Non-Fiction\",\"sales\":30},{\"genre\":\"Comics\",\"sales\":10},{\"genre\":\"Science\",\"sales\":20}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"genre\"],\"y\":[\"sales\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"continent\":\"Asia\",\"proportion\":60},{\"continent\":\"Africa\",\"proportion\":15},{\"continent\":\"Europe\",\"proportion\":10},{\"continent\":\"America\",\"proportion\":10},{\"continent\":\"Oceania\",\"proportion\":5}]}","answer":"[{\"type\":\"pie\",\"encode\":{\"x\":[\"continent\"],\"y\":[\"proportion\"]}}]"} +{"prompt":"{\"data\":[{\"category\":\"Finance\",\"subcategory\":\"Investment\"},{\"category\":\"Finance\",\"subcategory\":\"Insurance\"},{\"category\":\"Investment\",\"subcategory\":\"Stocks\"},{\"category\":\"Investment\",\"subcategory\":\"Bonds\"},{\"category\":\"Insurance\",\"subcategory\":\"Life Insurance\"},{\"category\":\"Insurance\",\"subcategory\":\"Health Insurance\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"{\"data\":[{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Machine Learning\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Natural Language Processing\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Robotics\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Supervised Learning\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Unsupervised Learning\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Sentiment Analysis\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Machine Translation\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"可视化{\"data\":[{\"topic\":\"Programming Languages\",\"subtopic\":\"Compiled Languages\"},{\"topic\":\"Programming Languages\",\"subtopic\":\"Interpreted Languages\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C++\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"Python\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"JavaScript\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"topic\",\"target\":\"subtopic\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"主题\":\"教育体系\",\"子主题\":\"小学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"中学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"高等教育\"},{\"子主题\":\"小学教育\",\"子子主题\":\"基础科目\"},{\"子主题\":\"小学教育\",\"子子主题\":\"课外活动\"},{\"子主题\":\"中学教育\",\"子子主题\":\"理科\"},{\"子主题\":\"中学教育\",\"子子主题\":\"文科\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"{\"data\":[{\"主题\":\"Modeling Methods\",\"子主题\":\"Classification\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Regression\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Consensus\"},{\"主题\":\"Classification\",\"子主题\":\"Logistic regression\"},{\"主题\":\"Classification\",\"子主题\":\"Linear discriminant analysis\"},{\"主题\":\"Classification\",\"子主题\":\"Rules\"},{\"主题\":\"Classification\",\"子主题\":\"Decision trees\"},{\"主题\":\"Classification\",\"子主题\":\"Naive Bayes\"},{\"主题\":\"Classification\",\"子主题\":\"K nearest neighbor\"},{\"主题\":\"Regression\",\"子主题\":\"Multiple linear regression\"},{\"主题\":\"Regression\",\"子主题\":\"Partial least squares\"},{\"主题\":\"Regression\",\"子主题\":\"Multi-layer feedforward neural network\"},{\"主题\":\"Regression\",\"子主题\":\"General regression neural network\"},{\"主题\":\"Consensus\",\"子主题\":\"Models diversity\"},{\"主题\":\"Consensus\",\"子主题\":\"Methods\"},{\"主题\":\"Consensus\",\"子主题\":\"Common\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different initializations\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different parameter choices\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different architectures\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different modeling methods\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier selection\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier fusion\"},{\"主题\":\"Common\",\"子主题\":\"Bagging\"},{\"主题\":\"Common\",\"子主题\":\"Boosting\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"展示{\"data\":[{\"category\":\"Finance\",\"subcategory\":\"Investment\"},{\"category\":\"Finance\",\"subcategory\":\"Insurance\"},{\"category\":\"Investment\",\"subcategory\":\"Stocks\"},{\"category\":\"Investment\",\"subcategory\":\"Bonds\"},{\"category\":\"Insurance\",\"subcategory\":\"Life Insurance\"},{\"category\":\"Insurance\",\"subcategory\":\"Health Insurance\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"可视化{\"data\":[{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Machine Learning\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Natural Language Processing\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Robotics\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Supervised Learning\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Unsupervised Learning\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Sentiment Analysis\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Machine Translation\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"{\"data\":[{\"topic\":\"Programming Languages\",\"subtopic\":\"Compiled Languages\"},{\"topic\":\"Programming Languages\",\"subtopic\":\"Interpreted Languages\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C++\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"Python\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"JavaScript\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"topic\",\"target\":\"subtopic\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"主题\":\"教育体系\",\"子主题\":\"小学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"中学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"高等教育\"},{\"子主题\":\"小学教育\",\"子子主题\":\"基础科目\"},{\"子主题\":\"小学教育\",\"子子主题\":\"课外活动\"},{\"子主题\":\"中学教育\",\"子子主题\":\"理科\"},{\"子主题\":\"中学教育\",\"子子主题\":\"文科\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"主题\":\"Modeling Methods\",\"子主题\":\"Classification\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Regression\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Consensus\"},{\"主题\":\"Classification\",\"子主题\":\"Logistic regression\"},{\"主题\":\"Classification\",\"子主题\":\"Linear discriminant analysis\"},{\"主题\":\"Classification\",\"子主题\":\"Rules\"},{\"主题\":\"Classification\",\"子主题\":\"Decision trees\"},{\"主题\":\"Classification\",\"子主题\":\"Naive Bayes\"},{\"主题\":\"Classification\",\"子主题\":\"K nearest neighbor\"},{\"主题\":\"Regression\",\"子主题\":\"Multiple linear regression\"},{\"主题\":\"Regression\",\"子主题\":\"Partial least squares\"},{\"主题\":\"Regression\",\"子主题\":\"Multi-layer feedforward neural network\"},{\"主题\":\"Regression\",\"子主题\":\"General regression neural network\"},{\"主题\":\"Consensus\",\"子主题\":\"Models diversity\"},{\"主题\":\"Consensus\",\"子主题\":\"Methods\"},{\"主题\":\"Consensus\",\"子主题\":\"Common\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different initializations\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different parameter choices\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different architectures\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different modeling methods\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier selection\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier fusion\"},{\"主题\":\"Common\",\"子主题\":\"Bagging\"},{\"主题\":\"Common\",\"子主题\":\"Boosting\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"category\":\"Finance\",\"subcategory\":\"Investment\"},{\"category\":\"Finance\",\"subcategory\":\"Insurance\"},{\"category\":\"Investment\",\"subcategory\":\"Stocks\"},{\"category\":\"Investment\",\"subcategory\":\"Bonds\"},{\"category\":\"Insurance\",\"subcategory\":\"Life Insurance\"},{\"category\":\"Insurance\",\"subcategory\":\"Health Insurance\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Machine Learning\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Natural Language Processing\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Robotics\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Supervised Learning\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Unsupervised Learning\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Sentiment Analysis\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Machine Translation\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"展示{\"data\":[{\"topic\":\"Programming Languages\",\"subtopic\":\"Compiled Languages\"},{\"topic\":\"Programming Languages\",\"subtopic\":\"Interpreted Languages\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C++\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"Python\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"JavaScript\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"topic\",\"target\":\"subtopic\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"主题\":\"教育体系\",\"子主题\":\"小学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"中学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"高等教育\"},{\"子主题\":\"小学教育\",\"子子主题\":\"基础科目\"},{\"子主题\":\"小学教育\",\"子子主题\":\"课外活动\"},{\"子主题\":\"中学教育\",\"子子主题\":\"理科\"},{\"子主题\":\"中学教育\",\"子子主题\":\"文科\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"展示{\"data\":[{\"主题\":\"Modeling Methods\",\"子主题\":\"Classification\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Regression\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Consensus\"},{\"主题\":\"Classification\",\"子主题\":\"Logistic regression\"},{\"主题\":\"Classification\",\"子主题\":\"Linear discriminant analysis\"},{\"主题\":\"Classification\",\"子主题\":\"Rules\"},{\"主题\":\"Classification\",\"子主题\":\"Decision trees\"},{\"主题\":\"Classification\",\"子主题\":\"Naive Bayes\"},{\"主题\":\"Classification\",\"子主题\":\"K nearest neighbor\"},{\"主题\":\"Regression\",\"子主题\":\"Multiple linear regression\"},{\"主题\":\"Regression\",\"子主题\":\"Partial least squares\"},{\"主题\":\"Regression\",\"子主题\":\"Multi-layer feedforward neural network\"},{\"主题\":\"Regression\",\"子主题\":\"General regression neural network\"},{\"主题\":\"Consensus\",\"子主题\":\"Models diversity\"},{\"主题\":\"Consensus\",\"子主题\":\"Methods\"},{\"主题\":\"Consensus\",\"子主题\":\"Common\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different initializations\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different parameter choices\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different architectures\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different modeling methods\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier selection\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier fusion\"},{\"主题\":\"Common\",\"子主题\":\"Bagging\"},{\"主题\":\"Common\",\"子主题\":\"Boosting\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"category\":\"Finance\",\"subcategory\":\"Investment\"},{\"category\":\"Finance\",\"subcategory\":\"Insurance\"},{\"category\":\"Investment\",\"subcategory\":\"Stocks\"},{\"category\":\"Investment\",\"subcategory\":\"Bonds\"},{\"category\":\"Insurance\",\"subcategory\":\"Life Insurance\"},{\"category\":\"Insurance\",\"subcategory\":\"Health Insurance\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"{\"data\":[{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Machine Learning\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Natural Language Processing\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Robotics\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Supervised Learning\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Unsupervised Learning\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Sentiment Analysis\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Machine Translation\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"展示{\"data\":[{\"topic\":\"Programming Languages\",\"subtopic\":\"Compiled Languages\"},{\"topic\":\"Programming Languages\",\"subtopic\":\"Interpreted Languages\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C++\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"Python\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"JavaScript\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"topic\",\"target\":\"subtopic\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"主题\":\"教育体系\",\"子主题\":\"小学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"中学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"高等教育\"},{\"子主题\":\"小学教育\",\"子子主题\":\"基础科目\"},{\"子主题\":\"小学教育\",\"子子主题\":\"课外活动\"},{\"子主题\":\"中学教育\",\"子子主题\":\"理科\"},{\"子主题\":\"中学教育\",\"子子主题\":\"文科\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"主题\":\"Modeling Methods\",\"子主题\":\"Classification\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Regression\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Consensus\"},{\"主题\":\"Classification\",\"子主题\":\"Logistic regression\"},{\"主题\":\"Classification\",\"子主题\":\"Linear discriminant analysis\"},{\"主题\":\"Classification\",\"子主题\":\"Rules\"},{\"主题\":\"Classification\",\"子主题\":\"Decision trees\"},{\"主题\":\"Classification\",\"子主题\":\"Naive Bayes\"},{\"主题\":\"Classification\",\"子主题\":\"K nearest neighbor\"},{\"主题\":\"Regression\",\"子主题\":\"Multiple linear regression\"},{\"主题\":\"Regression\",\"子主题\":\"Partial least squares\"},{\"主题\":\"Regression\",\"子主题\":\"Multi-layer feedforward neural network\"},{\"主题\":\"Regression\",\"子主题\":\"General regression neural network\"},{\"主题\":\"Consensus\",\"子主题\":\"Models diversity\"},{\"主题\":\"Consensus\",\"子主题\":\"Methods\"},{\"主题\":\"Consensus\",\"子主题\":\"Common\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different initializations\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different parameter choices\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different architectures\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different modeling methods\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier selection\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier fusion\"},{\"主题\":\"Common\",\"子主题\":\"Bagging\"},{\"主题\":\"Common\",\"子主题\":\"Boosting\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"category\":\"Finance\",\"subcategory\":\"Investment\"},{\"category\":\"Finance\",\"subcategory\":\"Insurance\"},{\"category\":\"Investment\",\"subcategory\":\"Stocks\"},{\"category\":\"Investment\",\"subcategory\":\"Bonds\"},{\"category\":\"Insurance\",\"subcategory\":\"Life Insurance\"},{\"category\":\"Insurance\",\"subcategory\":\"Health Insurance\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"展示{\"data\":[{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Machine Learning\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Natural Language Processing\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Robotics\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Supervised Learning\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Unsupervised Learning\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Sentiment Analysis\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Machine Translation\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"{\"data\":[{\"topic\":\"Programming Languages\",\"subtopic\":\"Compiled Languages\"},{\"topic\":\"Programming Languages\",\"subtopic\":\"Interpreted Languages\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C++\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"Python\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"JavaScript\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"topic\",\"target\":\"subtopic\"}}]"} +{"prompt":"展示{\"data\":[{\"主题\":\"教育体系\",\"子主题\":\"小学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"中学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"高等教育\"},{\"子主题\":\"小学教育\",\"子子主题\":\"基础科目\"},{\"子主题\":\"小学教育\",\"子子主题\":\"课外活动\"},{\"子主题\":\"中学教育\",\"子子主题\":\"理科\"},{\"子主题\":\"中学教育\",\"子子主题\":\"文科\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"主题\":\"Modeling Methods\",\"子主题\":\"Classification\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Regression\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Consensus\"},{\"主题\":\"Classification\",\"子主题\":\"Logistic regression\"},{\"主题\":\"Classification\",\"子主题\":\"Linear discriminant analysis\"},{\"主题\":\"Classification\",\"子主题\":\"Rules\"},{\"主题\":\"Classification\",\"子主题\":\"Decision trees\"},{\"主题\":\"Classification\",\"子主题\":\"Naive Bayes\"},{\"主题\":\"Classification\",\"子主题\":\"K nearest neighbor\"},{\"主题\":\"Regression\",\"子主题\":\"Multiple linear regression\"},{\"主题\":\"Regression\",\"子主题\":\"Partial least squares\"},{\"主题\":\"Regression\",\"子主题\":\"Multi-layer feedforward neural network\"},{\"主题\":\"Regression\",\"子主题\":\"General regression neural network\"},{\"主题\":\"Consensus\",\"子主题\":\"Models diversity\"},{\"主题\":\"Consensus\",\"子主题\":\"Methods\"},{\"主题\":\"Consensus\",\"子主题\":\"Common\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different initializations\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different parameter choices\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different architectures\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different modeling methods\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier selection\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier fusion\"},{\"主题\":\"Common\",\"子主题\":\"Bagging\"},{\"主题\":\"Common\",\"子主题\":\"Boosting\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"category\":\"Finance\",\"subcategory\":\"Investment\"},{\"category\":\"Finance\",\"subcategory\":\"Insurance\"},{\"category\":\"Investment\",\"subcategory\":\"Stocks\"},{\"category\":\"Investment\",\"subcategory\":\"Bonds\"},{\"category\":\"Insurance\",\"subcategory\":\"Life Insurance\"},{\"category\":\"Insurance\",\"subcategory\":\"Health Insurance\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"{\"data\":[{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Machine Learning\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Natural Language Processing\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Robotics\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Supervised Learning\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Unsupervised Learning\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Sentiment Analysis\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Machine Translation\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"可视化{\"data\":[{\"topic\":\"Programming Languages\",\"subtopic\":\"Compiled Languages\"},{\"topic\":\"Programming Languages\",\"subtopic\":\"Interpreted Languages\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C++\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"Python\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"JavaScript\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"topic\",\"target\":\"subtopic\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"主题\":\"教育体系\",\"子主题\":\"小学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"中学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"高等教育\"},{\"子主题\":\"小学教育\",\"子子主题\":\"基础科目\"},{\"子主题\":\"小学教育\",\"子子主题\":\"课外活动\"},{\"子主题\":\"中学教育\",\"子子主题\":\"理科\"},{\"子主题\":\"中学教育\",\"子子主题\":\"文科\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"主题\":\"Modeling Methods\",\"子主题\":\"Classification\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Regression\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Consensus\"},{\"主题\":\"Classification\",\"子主题\":\"Logistic regression\"},{\"主题\":\"Classification\",\"子主题\":\"Linear discriminant analysis\"},{\"主题\":\"Classification\",\"子主题\":\"Rules\"},{\"主题\":\"Classification\",\"子主题\":\"Decision trees\"},{\"主题\":\"Classification\",\"子主题\":\"Naive Bayes\"},{\"主题\":\"Classification\",\"子主题\":\"K nearest neighbor\"},{\"主题\":\"Regression\",\"子主题\":\"Multiple linear regression\"},{\"主题\":\"Regression\",\"子主题\":\"Partial least squares\"},{\"主题\":\"Regression\",\"子主题\":\"Multi-layer feedforward neural network\"},{\"主题\":\"Regression\",\"子主题\":\"General regression neural network\"},{\"主题\":\"Consensus\",\"子主题\":\"Models diversity\"},{\"主题\":\"Consensus\",\"子主题\":\"Methods\"},{\"主题\":\"Consensus\",\"子主题\":\"Common\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different initializations\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different parameter choices\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different architectures\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different modeling methods\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier selection\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier fusion\"},{\"主题\":\"Common\",\"子主题\":\"Bagging\"},{\"主题\":\"Common\",\"子主题\":\"Boosting\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"{\"data\":[{\"category\":\"Finance\",\"subcategory\":\"Investment\"},{\"category\":\"Finance\",\"subcategory\":\"Insurance\"},{\"category\":\"Investment\",\"subcategory\":\"Stocks\"},{\"category\":\"Investment\",\"subcategory\":\"Bonds\"},{\"category\":\"Insurance\",\"subcategory\":\"Life Insurance\"},{\"category\":\"Insurance\",\"subcategory\":\"Health Insurance\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Machine Learning\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Natural Language Processing\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Robotics\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Supervised Learning\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Unsupervised Learning\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Sentiment Analysis\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Machine Translation\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"{\"data\":[{\"topic\":\"Programming Languages\",\"subtopic\":\"Compiled Languages\"},{\"topic\":\"Programming Languages\",\"subtopic\":\"Interpreted Languages\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C++\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"Python\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"JavaScript\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"topic\",\"target\":\"subtopic\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"主题\":\"教育体系\",\"子主题\":\"小学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"中学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"高等教育\"},{\"子主题\":\"小学教育\",\"子子主题\":\"基础科目\"},{\"子主题\":\"小学教育\",\"子子主题\":\"课外活动\"},{\"子主题\":\"中学教育\",\"子子主题\":\"理科\"},{\"子主题\":\"中学教育\",\"子子主题\":\"文科\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"主题\":\"Modeling Methods\",\"子主题\":\"Classification\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Regression\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Consensus\"},{\"主题\":\"Classification\",\"子主题\":\"Logistic regression\"},{\"主题\":\"Classification\",\"子主题\":\"Linear discriminant analysis\"},{\"主题\":\"Classification\",\"子主题\":\"Rules\"},{\"主题\":\"Classification\",\"子主题\":\"Decision trees\"},{\"主题\":\"Classification\",\"子主题\":\"Naive Bayes\"},{\"主题\":\"Classification\",\"子主题\":\"K nearest neighbor\"},{\"主题\":\"Regression\",\"子主题\":\"Multiple linear regression\"},{\"主题\":\"Regression\",\"子主题\":\"Partial least squares\"},{\"主题\":\"Regression\",\"子主题\":\"Multi-layer feedforward neural network\"},{\"主题\":\"Regression\",\"子主题\":\"General regression neural network\"},{\"主题\":\"Consensus\",\"子主题\":\"Models diversity\"},{\"主题\":\"Consensus\",\"子主题\":\"Methods\"},{\"主题\":\"Consensus\",\"子主题\":\"Common\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different initializations\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different parameter choices\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different architectures\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different modeling methods\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier selection\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier fusion\"},{\"主题\":\"Common\",\"子主题\":\"Bagging\"},{\"主题\":\"Common\",\"子主题\":\"Boosting\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"展示{\"data\":[{\"category\":\"Finance\",\"subcategory\":\"Investment\"},{\"category\":\"Finance\",\"subcategory\":\"Insurance\"},{\"category\":\"Investment\",\"subcategory\":\"Stocks\"},{\"category\":\"Investment\",\"subcategory\":\"Bonds\"},{\"category\":\"Insurance\",\"subcategory\":\"Life Insurance\"},{\"category\":\"Insurance\",\"subcategory\":\"Health Insurance\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Machine Learning\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Natural Language Processing\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Robotics\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Supervised Learning\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Unsupervised Learning\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Sentiment Analysis\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Machine Translation\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"topic\":\"Programming Languages\",\"subtopic\":\"Compiled Languages\"},{\"topic\":\"Programming Languages\",\"subtopic\":\"Interpreted Languages\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C++\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"Python\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"JavaScript\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"topic\",\"target\":\"subtopic\"}}]"} +{"prompt":"可视化{\"data\":[{\"主题\":\"教育体系\",\"子主题\":\"小学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"中学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"高等教育\"},{\"子主题\":\"小学教育\",\"子子主题\":\"基础科目\"},{\"子主题\":\"小学教育\",\"子子主题\":\"课外活动\"},{\"子主题\":\"中学教育\",\"子子主题\":\"理科\"},{\"子主题\":\"中学教育\",\"子子主题\":\"文科\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"主题\":\"Modeling Methods\",\"子主题\":\"Classification\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Regression\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Consensus\"},{\"主题\":\"Classification\",\"子主题\":\"Logistic regression\"},{\"主题\":\"Classification\",\"子主题\":\"Linear discriminant analysis\"},{\"主题\":\"Classification\",\"子主题\":\"Rules\"},{\"主题\":\"Classification\",\"子主题\":\"Decision trees\"},{\"主题\":\"Classification\",\"子主题\":\"Naive Bayes\"},{\"主题\":\"Classification\",\"子主题\":\"K nearest neighbor\"},{\"主题\":\"Regression\",\"子主题\":\"Multiple linear regression\"},{\"主题\":\"Regression\",\"子主题\":\"Partial least squares\"},{\"主题\":\"Regression\",\"子主题\":\"Multi-layer feedforward neural network\"},{\"主题\":\"Regression\",\"子主题\":\"General regression neural network\"},{\"主题\":\"Consensus\",\"子主题\":\"Models diversity\"},{\"主题\":\"Consensus\",\"子主题\":\"Methods\"},{\"主题\":\"Consensus\",\"子主题\":\"Common\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different initializations\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different parameter choices\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different architectures\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different modeling methods\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier selection\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier fusion\"},{\"主题\":\"Common\",\"子主题\":\"Bagging\"},{\"主题\":\"Common\",\"子主题\":\"Boosting\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"可视化{\"data\":[{\"category\":\"Finance\",\"subcategory\":\"Investment\"},{\"category\":\"Finance\",\"subcategory\":\"Insurance\"},{\"category\":\"Investment\",\"subcategory\":\"Stocks\"},{\"category\":\"Investment\",\"subcategory\":\"Bonds\"},{\"category\":\"Insurance\",\"subcategory\":\"Life Insurance\"},{\"category\":\"Insurance\",\"subcategory\":\"Health Insurance\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Machine Learning\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Natural Language Processing\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Robotics\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Supervised Learning\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Unsupervised Learning\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Sentiment Analysis\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Machine Translation\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"topic\":\"Programming Languages\",\"subtopic\":\"Compiled Languages\"},{\"topic\":\"Programming Languages\",\"subtopic\":\"Interpreted Languages\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C++\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"Python\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"JavaScript\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"topic\",\"target\":\"subtopic\"}}]"} +{"prompt":"可视化{\"data\":[{\"主题\":\"教育体系\",\"子主题\":\"小学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"中学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"高等教育\"},{\"子主题\":\"小学教育\",\"子子主题\":\"基础科目\"},{\"子主题\":\"小学教育\",\"子子主题\":\"课外活动\"},{\"子主题\":\"中学教育\",\"子子主题\":\"理科\"},{\"子主题\":\"中学教育\",\"子子主题\":\"文科\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"主题\":\"Modeling Methods\",\"子主题\":\"Classification\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Regression\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Consensus\"},{\"主题\":\"Classification\",\"子主题\":\"Logistic regression\"},{\"主题\":\"Classification\",\"子主题\":\"Linear discriminant analysis\"},{\"主题\":\"Classification\",\"子主题\":\"Rules\"},{\"主题\":\"Classification\",\"子主题\":\"Decision trees\"},{\"主题\":\"Classification\",\"子主题\":\"Naive Bayes\"},{\"主题\":\"Classification\",\"子主题\":\"K nearest neighbor\"},{\"主题\":\"Regression\",\"子主题\":\"Multiple linear regression\"},{\"主题\":\"Regression\",\"子主题\":\"Partial least squares\"},{\"主题\":\"Regression\",\"子主题\":\"Multi-layer feedforward neural network\"},{\"主题\":\"Regression\",\"子主题\":\"General regression neural network\"},{\"主题\":\"Consensus\",\"子主题\":\"Models diversity\"},{\"主题\":\"Consensus\",\"子主题\":\"Methods\"},{\"主题\":\"Consensus\",\"子主题\":\"Common\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different initializations\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different parameter choices\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different architectures\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different modeling methods\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier selection\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier fusion\"},{\"主题\":\"Common\",\"子主题\":\"Bagging\"},{\"主题\":\"Common\",\"子主题\":\"Boosting\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"category\":\"Finance\",\"subcategory\":\"Investment\"},{\"category\":\"Finance\",\"subcategory\":\"Insurance\"},{\"category\":\"Investment\",\"subcategory\":\"Stocks\"},{\"category\":\"Investment\",\"subcategory\":\"Bonds\"},{\"category\":\"Insurance\",\"subcategory\":\"Life Insurance\"},{\"category\":\"Insurance\",\"subcategory\":\"Health Insurance\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Machine Learning\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Natural Language Processing\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Robotics\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Supervised Learning\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Unsupervised Learning\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Sentiment Analysis\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Machine Translation\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"{\"data\":[{\"topic\":\"Programming Languages\",\"subtopic\":\"Compiled Languages\"},{\"topic\":\"Programming Languages\",\"subtopic\":\"Interpreted Languages\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C++\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"Python\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"JavaScript\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"topic\",\"target\":\"subtopic\"}}]"} +{"prompt":"可视化{\"data\":[{\"主题\":\"教育体系\",\"子主题\":\"小学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"中学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"高等教育\"},{\"子主题\":\"小学教育\",\"子子主题\":\"基础科目\"},{\"子主题\":\"小学教育\",\"子子主题\":\"课外活动\"},{\"子主题\":\"中学教育\",\"子子主题\":\"理科\"},{\"子主题\":\"中学教育\",\"子子主题\":\"文科\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"展示{\"data\":[{\"主题\":\"Modeling Methods\",\"子主题\":\"Classification\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Regression\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Consensus\"},{\"主题\":\"Classification\",\"子主题\":\"Logistic regression\"},{\"主题\":\"Classification\",\"子主题\":\"Linear discriminant analysis\"},{\"主题\":\"Classification\",\"子主题\":\"Rules\"},{\"主题\":\"Classification\",\"子主题\":\"Decision trees\"},{\"主题\":\"Classification\",\"子主题\":\"Naive Bayes\"},{\"主题\":\"Classification\",\"子主题\":\"K nearest neighbor\"},{\"主题\":\"Regression\",\"子主题\":\"Multiple linear regression\"},{\"主题\":\"Regression\",\"子主题\":\"Partial least squares\"},{\"主题\":\"Regression\",\"子主题\":\"Multi-layer feedforward neural network\"},{\"主题\":\"Regression\",\"子主题\":\"General regression neural network\"},{\"主题\":\"Consensus\",\"子主题\":\"Models diversity\"},{\"主题\":\"Consensus\",\"子主题\":\"Methods\"},{\"主题\":\"Consensus\",\"子主题\":\"Common\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different initializations\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different parameter choices\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different architectures\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different modeling methods\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier selection\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier fusion\"},{\"主题\":\"Common\",\"子主题\":\"Bagging\"},{\"主题\":\"Common\",\"子主题\":\"Boosting\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"展示{\"data\":[{\"category\":\"Finance\",\"subcategory\":\"Investment\"},{\"category\":\"Finance\",\"subcategory\":\"Insurance\"},{\"category\":\"Investment\",\"subcategory\":\"Stocks\"},{\"category\":\"Investment\",\"subcategory\":\"Bonds\"},{\"category\":\"Insurance\",\"subcategory\":\"Life Insurance\"},{\"category\":\"Insurance\",\"subcategory\":\"Health Insurance\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"展示{\"data\":[{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Machine Learning\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Natural Language Processing\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Robotics\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Supervised Learning\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Unsupervised Learning\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Sentiment Analysis\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Machine Translation\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"展示{\"data\":[{\"topic\":\"Programming Languages\",\"subtopic\":\"Compiled Languages\"},{\"topic\":\"Programming Languages\",\"subtopic\":\"Interpreted Languages\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C++\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"Python\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"JavaScript\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"topic\",\"target\":\"subtopic\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"主题\":\"教育体系\",\"子主题\":\"小学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"中学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"高等教育\"},{\"子主题\":\"小学教育\",\"子子主题\":\"基础科目\"},{\"子主题\":\"小学教育\",\"子子主题\":\"课外活动\"},{\"子主题\":\"中学教育\",\"子子主题\":\"理科\"},{\"子主题\":\"中学教育\",\"子子主题\":\"文科\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"{\"data\":[{\"主题\":\"Modeling Methods\",\"子主题\":\"Classification\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Regression\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Consensus\"},{\"主题\":\"Classification\",\"子主题\":\"Logistic regression\"},{\"主题\":\"Classification\",\"子主题\":\"Linear discriminant analysis\"},{\"主题\":\"Classification\",\"子主题\":\"Rules\"},{\"主题\":\"Classification\",\"子主题\":\"Decision trees\"},{\"主题\":\"Classification\",\"子主题\":\"Naive Bayes\"},{\"主题\":\"Classification\",\"子主题\":\"K nearest neighbor\"},{\"主题\":\"Regression\",\"子主题\":\"Multiple linear regression\"},{\"主题\":\"Regression\",\"子主题\":\"Partial least squares\"},{\"主题\":\"Regression\",\"子主题\":\"Multi-layer feedforward neural network\"},{\"主题\":\"Regression\",\"子主题\":\"General regression neural network\"},{\"主题\":\"Consensus\",\"子主题\":\"Models diversity\"},{\"主题\":\"Consensus\",\"子主题\":\"Methods\"},{\"主题\":\"Consensus\",\"子主题\":\"Common\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different initializations\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different parameter choices\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different architectures\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different modeling methods\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier selection\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier fusion\"},{\"主题\":\"Common\",\"子主题\":\"Bagging\"},{\"主题\":\"Common\",\"子主题\":\"Boosting\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"category\":\"Finance\",\"subcategory\":\"Investment\"},{\"category\":\"Finance\",\"subcategory\":\"Insurance\"},{\"category\":\"Investment\",\"subcategory\":\"Stocks\"},{\"category\":\"Investment\",\"subcategory\":\"Bonds\"},{\"category\":\"Insurance\",\"subcategory\":\"Life Insurance\"},{\"category\":\"Insurance\",\"subcategory\":\"Health Insurance\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"展示{\"data\":[{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Machine Learning\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Natural Language Processing\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Robotics\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Supervised Learning\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Unsupervised Learning\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Sentiment Analysis\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Machine Translation\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"可视化{\"data\":[{\"topic\":\"Programming Languages\",\"subtopic\":\"Compiled Languages\"},{\"topic\":\"Programming Languages\",\"subtopic\":\"Interpreted Languages\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C++\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"Python\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"JavaScript\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"topic\",\"target\":\"subtopic\"}}]"} +{"prompt":"{\"data\":[{\"主题\":\"教育体系\",\"子主题\":\"小学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"中学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"高等教育\"},{\"子主题\":\"小学教育\",\"子子主题\":\"基础科目\"},{\"子主题\":\"小学教育\",\"子子主题\":\"课外活动\"},{\"子主题\":\"中学教育\",\"子子主题\":\"理科\"},{\"子主题\":\"中学教育\",\"子子主题\":\"文科\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"可视化{\"data\":[{\"主题\":\"Modeling Methods\",\"子主题\":\"Classification\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Regression\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Consensus\"},{\"主题\":\"Classification\",\"子主题\":\"Logistic regression\"},{\"主题\":\"Classification\",\"子主题\":\"Linear discriminant analysis\"},{\"主题\":\"Classification\",\"子主题\":\"Rules\"},{\"主题\":\"Classification\",\"子主题\":\"Decision trees\"},{\"主题\":\"Classification\",\"子主题\":\"Naive Bayes\"},{\"主题\":\"Classification\",\"子主题\":\"K nearest neighbor\"},{\"主题\":\"Regression\",\"子主题\":\"Multiple linear regression\"},{\"主题\":\"Regression\",\"子主题\":\"Partial least squares\"},{\"主题\":\"Regression\",\"子主题\":\"Multi-layer feedforward neural network\"},{\"主题\":\"Regression\",\"子主题\":\"General regression neural network\"},{\"主题\":\"Consensus\",\"子主题\":\"Models diversity\"},{\"主题\":\"Consensus\",\"子主题\":\"Methods\"},{\"主题\":\"Consensus\",\"子主题\":\"Common\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different initializations\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different parameter choices\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different architectures\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different modeling methods\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier selection\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier fusion\"},{\"主题\":\"Common\",\"子主题\":\"Bagging\"},{\"主题\":\"Common\",\"子主题\":\"Boosting\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"{\"data\":[{\"category\":\"Finance\",\"subcategory\":\"Investment\"},{\"category\":\"Finance\",\"subcategory\":\"Insurance\"},{\"category\":\"Investment\",\"subcategory\":\"Stocks\"},{\"category\":\"Investment\",\"subcategory\":\"Bonds\"},{\"category\":\"Insurance\",\"subcategory\":\"Life Insurance\"},{\"category\":\"Insurance\",\"subcategory\":\"Health Insurance\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"展示{\"data\":[{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Machine Learning\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Natural Language Processing\"},{\"category\":\"Artificial Intelligence\",\"subcategory\":\"Robotics\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Supervised Learning\"},{\"category\":\"Machine Learning\",\"subcategory\":\"Unsupervised Learning\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Sentiment Analysis\"},{\"category\":\"Natural Language Processing\",\"subcategory\":\"Machine Translation\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"category\",\"target\":\"subcategory\"}}]"} +{"prompt":"展示{\"data\":[{\"topic\":\"Programming Languages\",\"subtopic\":\"Compiled Languages\"},{\"topic\":\"Programming Languages\",\"subtopic\":\"Interpreted Languages\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C\"},{\"topic\":\"Compiled Languages\",\"subtopic\":\"C++\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"Python\"},{\"topic\":\"Interpreted Languages\",\"subtopic\":\"JavaScript\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"topic\",\"target\":\"subtopic\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"主题\":\"教育体系\",\"子主题\":\"小学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"中学教育\"},{\"主题\":\"教育体系\",\"子主题\":\"高等教育\"},{\"子主题\":\"小学教育\",\"子子主题\":\"基础科目\"},{\"子主题\":\"小学教育\",\"子子主题\":\"课外活动\"},{\"子主题\":\"中学教育\",\"子子主题\":\"理科\"},{\"子主题\":\"中学教育\",\"子子主题\":\"文科\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"展示{\"data\":[{\"主题\":\"Modeling Methods\",\"子主题\":\"Classification\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Regression\"},{\"主题\":\"Modeling Methods\",\"子主题\":\"Consensus\"},{\"主题\":\"Classification\",\"子主题\":\"Logistic regression\"},{\"主题\":\"Classification\",\"子主题\":\"Linear discriminant analysis\"},{\"主题\":\"Classification\",\"子主题\":\"Rules\"},{\"主题\":\"Classification\",\"子主题\":\"Decision trees\"},{\"主题\":\"Classification\",\"子主题\":\"Naive Bayes\"},{\"主题\":\"Classification\",\"子主题\":\"K nearest neighbor\"},{\"主题\":\"Regression\",\"子主题\":\"Multiple linear regression\"},{\"主题\":\"Regression\",\"子主题\":\"Partial least squares\"},{\"主题\":\"Regression\",\"子主题\":\"Multi-layer feedforward neural network\"},{\"主题\":\"Regression\",\"子主题\":\"General regression neural network\"},{\"主题\":\"Consensus\",\"子主题\":\"Models diversity\"},{\"主题\":\"Consensus\",\"子主题\":\"Methods\"},{\"主题\":\"Consensus\",\"子主题\":\"Common\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different initializations\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different parameter choices\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different architectures\"},{\"主题\":\"Models diversity\",\"子主题\":\"Different modeling methods\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier selection\"},{\"主题\":\"Methods\",\"子主题\":\"Classifier fusion\"},{\"主题\":\"Common\",\"子主题\":\"Bagging\"},{\"主题\":\"Common\",\"子主题\":\"Boosting\"}]}","answer":"[{\"type\":\"mind_map\",\"encode\":{\"source\":\"主题\",\"target\":\"子主题\"}}]"} +{"prompt":"展示{\"data\":[{\"项目完成情况\":40,\"项目完成目标\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"项目完成情况\"],\"target\":[\"项目完成目标\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Daily Sales\":300,\"Sales Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Daily Sales\"],\"target\":[\"Sales Target\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Subscription Growth\":350,\"Growth Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Subscription Growth\"],\"target\":[\"Growth Target\"]}}]"} +{"prompt":"{\"data\":[{\"CPU使用率\":75,\"CPU使用率_上限\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"CPU使用率\"],\"target\":[\"CPU使用率_上限\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Project Completion Rate\":70,\"Target Completion Rate\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Project Completion Rate\"],\"target\":[\"Target Completion Rate\"]}}]"} +{"prompt":"{\"data\":[{\"项目完成情况\":40,\"项目完成目标\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"项目完成情况\"],\"target\":[\"项目完成目标\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"Daily Sales\":300,\"Sales Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Daily Sales\"],\"target\":[\"Sales Target\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Subscription Growth\":350,\"Growth Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Subscription Growth\"],\"target\":[\"Growth Target\"]}}]"} +{"prompt":"{\"data\":[{\"CPU使用率\":75,\"CPU使用率_上限\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"CPU使用率\"],\"target\":[\"CPU使用率_上限\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Project Completion Rate\":70,\"Target Completion Rate\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Project Completion Rate\"],\"target\":[\"Target Completion Rate\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"项目完成情况\":40,\"项目完成目标\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"项目完成情况\"],\"target\":[\"项目完成目标\"]}}]"} +{"prompt":"展示{\"data\":[{\"Daily Sales\":300,\"Sales Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Daily Sales\"],\"target\":[\"Sales Target\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Subscription Growth\":350,\"Growth Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Subscription Growth\"],\"target\":[\"Growth Target\"]}}]"} +{"prompt":"{\"data\":[{\"CPU使用率\":75,\"CPU使用率_上限\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"CPU使用率\"],\"target\":[\"CPU使用率_上限\"]}}]"} +{"prompt":"可视化{\"data\":[{\"Project Completion Rate\":70,\"Target Completion Rate\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Project Completion Rate\"],\"target\":[\"Target Completion Rate\"]}}]"} +{"prompt":"可视化{\"data\":[{\"项目完成情况\":40,\"项目完成目标\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"项目完成情况\"],\"target\":[\"项目完成目标\"]}}]"} +{"prompt":"可视化{\"data\":[{\"Daily Sales\":300,\"Sales Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Daily Sales\"],\"target\":[\"Sales Target\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Subscription Growth\":350,\"Growth Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Subscription Growth\"],\"target\":[\"Growth Target\"]}}]"} +{"prompt":"展示{\"data\":[{\"CPU使用率\":75,\"CPU使用率_上限\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"CPU使用率\"],\"target\":[\"CPU使用率_上限\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"Project Completion Rate\":70,\"Target Completion Rate\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Project Completion Rate\"],\"target\":[\"Target Completion Rate\"]}}]"} +{"prompt":"可视化{\"data\":[{\"项目完成情况\":40,\"项目完成目标\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"项目完成情况\"],\"target\":[\"项目完成目标\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Daily Sales\":300,\"Sales Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Daily Sales\"],\"target\":[\"Sales Target\"]}}]"} +{"prompt":"{\"data\":[{\"Subscription Growth\":350,\"Growth Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Subscription Growth\"],\"target\":[\"Growth Target\"]}}]"} +{"prompt":"展示{\"data\":[{\"CPU使用率\":75,\"CPU使用率_上限\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"CPU使用率\"],\"target\":[\"CPU使用率_上限\"]}}]"} +{"prompt":"可视化{\"data\":[{\"Project Completion Rate\":70,\"Target Completion Rate\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Project Completion Rate\"],\"target\":[\"Target Completion Rate\"]}}]"} +{"prompt":"可视化{\"data\":[{\"项目完成情况\":40,\"项目完成目标\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"项目完成情况\"],\"target\":[\"项目完成目标\"]}}]"} +{"prompt":"{\"data\":[{\"Daily Sales\":300,\"Sales Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Daily Sales\"],\"target\":[\"Sales Target\"]}}]"} +{"prompt":"可视化{\"data\":[{\"Subscription Growth\":350,\"Growth Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Subscription Growth\"],\"target\":[\"Growth Target\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"CPU使用率\":75,\"CPU使用率_上限\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"CPU使用率\"],\"target\":[\"CPU使用率_上限\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Project Completion Rate\":70,\"Target Completion Rate\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Project Completion Rate\"],\"target\":[\"Target Completion Rate\"]}}]"} +{"prompt":"{\"data\":[{\"项目完成情况\":40,\"项目完成目标\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"项目完成情况\"],\"target\":[\"项目完成目标\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Daily Sales\":300,\"Sales Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Daily Sales\"],\"target\":[\"Sales Target\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Subscription Growth\":350,\"Growth Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Subscription Growth\"],\"target\":[\"Growth Target\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"CPU使用率\":75,\"CPU使用率_上限\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"CPU使用率\"],\"target\":[\"CPU使用率_上限\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Project Completion Rate\":70,\"Target Completion Rate\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Project Completion Rate\"],\"target\":[\"Target Completion Rate\"]}}]"} +{"prompt":"{\"data\":[{\"项目完成情况\":40,\"项目完成目标\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"项目完成情况\"],\"target\":[\"项目完成目标\"]}}]"} +{"prompt":"展示{\"data\":[{\"Daily Sales\":300,\"Sales Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Daily Sales\"],\"target\":[\"Sales Target\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"Subscription Growth\":350,\"Growth Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Subscription Growth\"],\"target\":[\"Growth Target\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"CPU使用率\":75,\"CPU使用率_上限\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"CPU使用率\"],\"target\":[\"CPU使用率_上限\"]}}]"} +{"prompt":"{\"data\":[{\"Project Completion Rate\":70,\"Target Completion Rate\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Project Completion Rate\"],\"target\":[\"Target Completion Rate\"]}}]"} +{"prompt":"可视化{\"data\":[{\"项目完成情况\":40,\"项目完成目标\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"项目完成情况\"],\"target\":[\"项目完成目标\"]}}]"} +{"prompt":"展示{\"data\":[{\"Daily Sales\":300,\"Sales Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Daily Sales\"],\"target\":[\"Sales Target\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Subscription Growth\":350,\"Growth Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Subscription Growth\"],\"target\":[\"Growth Target\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"CPU使用率\":75,\"CPU使用率_上限\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"CPU使用率\"],\"target\":[\"CPU使用率_上限\"]}}]"} +{"prompt":"可视化{\"data\":[{\"Project Completion Rate\":70,\"Target Completion Rate\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Project Completion Rate\"],\"target\":[\"Target Completion Rate\"]}}]"} +{"prompt":"{\"data\":[{\"项目完成情况\":40,\"项目完成目标\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"项目完成情况\"],\"target\":[\"项目完成目标\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Daily Sales\":300,\"Sales Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Daily Sales\"],\"target\":[\"Sales Target\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Subscription Growth\":350,\"Growth Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Subscription Growth\"],\"target\":[\"Growth Target\"]}}]"} +{"prompt":"{\"data\":[{\"CPU使用率\":75,\"CPU使用率_上限\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"CPU使用率\"],\"target\":[\"CPU使用率_上限\"]}}]"} +{"prompt":"{\"data\":[{\"Project Completion Rate\":70,\"Target Completion Rate\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Project Completion Rate\"],\"target\":[\"Target Completion Rate\"]}}]"} +{"prompt":"可视化{\"data\":[{\"项目完成情况\":40,\"项目完成目标\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"项目完成情况\"],\"target\":[\"项目完成目标\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Daily Sales\":300,\"Sales Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Daily Sales\"],\"target\":[\"Sales Target\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"Subscription Growth\":350,\"Growth Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Subscription Growth\"],\"target\":[\"Growth Target\"]}}]"} +{"prompt":"展示{\"data\":[{\"CPU使用率\":75,\"CPU使用率_上限\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"CPU使用率\"],\"target\":[\"CPU使用率_上限\"]}}]"} +{"prompt":"{\"data\":[{\"Project Completion Rate\":70,\"Target Completion Rate\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Project Completion Rate\"],\"target\":[\"Target Completion Rate\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"项目完成情况\":40,\"项目完成目标\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"项目完成情况\"],\"target\":[\"项目完成目标\"]}}]"} +{"prompt":"展示{\"data\":[{\"Daily Sales\":300,\"Sales Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Daily Sales\"],\"target\":[\"Sales Target\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"Subscription Growth\":350,\"Growth Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Subscription Growth\"],\"target\":[\"Growth Target\"]}}]"} +{"prompt":"{\"data\":[{\"CPU使用率\":75,\"CPU使用率_上限\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"CPU使用率\"],\"target\":[\"CPU使用率_上限\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Project Completion Rate\":70,\"Target Completion Rate\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Project Completion Rate\"],\"target\":[\"Target Completion Rate\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"项目完成情况\":40,\"项目完成目标\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"项目完成情况\"],\"target\":[\"项目完成目标\"]}}]"} +{"prompt":"可视化{\"data\":[{\"Daily Sales\":300,\"Sales Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Daily Sales\"],\"target\":[\"Sales Target\"]}}]"} +{"prompt":"展示{\"data\":[{\"Subscription Growth\":350,\"Growth Target\":500}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Subscription Growth\"],\"target\":[\"Growth Target\"]}}]"} +{"prompt":"可视化{\"data\":[{\"CPU使用率\":75,\"CPU使用率_上限\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"CPU使用率\"],\"target\":[\"CPU使用率_上限\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"Project Completion Rate\":70,\"Target Completion Rate\":100}]}","answer":"[{\"type\":\"progress\",\"encode\":{\"y\":[\"Project Completion Rate\"],\"target\":[\"Target Completion Rate\"]}}]"} +{"prompt":"{\"data\":[{\"Data Analysis\":80,\"Public Relations\":85,\"Customer Retention\":90,\"Regulatory Compliance\":75,\"Inclusivity\":70,\"Tech Evolution\":95,\"Help Line\":70,\"Economics\":60,\"Creative Design\":85}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"Data Analysis\",\"Public Relations\",\"Customer Retention\",\"Regulatory Compliance\",\"Inclusivity\",\"Tech Evolution\",\"Help Line\",\"Economics\",\"Creative Design\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"factor\":\"Quality\",\"brand\":\"X\",\"score\":88},{\"factor\":\"Quality\",\"brand\":\"Y\",\"score\":86},{\"factor\":\"Design\",\"brand\":\"X\",\"score\":84},{\"factor\":\"Design\",\"brand\":\"Y\",\"score\":82},{\"factor\":\"Durability\",\"brand\":\"X\",\"score\":87},{\"factor\":\"Durability\",\"brand\":\"Y\",\"score\":85},{\"factor\":\"Ease of Use\",\"brand\":\"X\",\"score\":83},{\"factor\":\"Ease of Use\",\"brand\":\"Y\",\"score\":81},{\"factor\":\"Innovation\",\"brand\":\"X\",\"score\":90},{\"factor\":\"Innovation\",\"brand\":\"Y\",\"score\":89}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"factor\"],\"y\":[\"score\"],\"s\":[\"brand\"]}}]"} +{"prompt":"{\"data\":[{\"attribute\":\"Usability\",\"score\":87},{\"attribute\":\"Security\",\"score\":89},{\"attribute\":\"Flexibility\",\"score\":80},{\"attribute\":\"Scalability\",\"score\":82},{\"attribute\":\"Ease of Use\",\"score\":86}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"attribute\"],\"y\":[\"score\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"attribute\":\"Communication\",\"team\":\"Alpha\",\"score\":75},{\"attribute\":\"Communication\",\"team\":\"Beta\",\"score\":80},{\"attribute\":\"Teamwork\",\"team\":\"Alpha\",\"score\":82},{\"attribute\":\"Teamwork\",\"team\":\"Beta\",\"score\":78},{\"attribute\":\"Problem Solving\",\"team\":\"Alpha\",\"score\":88},{\"attribute\":\"Problem Solving\",\"team\":\"Beta\",\"score\":84},{\"attribute\":\"Project Management\",\"team\":\"Alpha\",\"score\":79},{\"attribute\":\"Project Management\",\"team\":\"Beta\",\"score\":77},{\"attribute\":\"Technical Skills\",\"team\":\"Alpha\",\"score\":85},{\"attribute\":\"Technical Skills\",\"team\":\"Beta\",\"score\":83}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"attribute\"],\"y\":[\"score\"],\"s\":[\"team\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"战略\":85,\"广告\":60,\"客户反馈\":70,\"质量控制\":90,\"多样性\":65,\"产品研发\":75,\"技术支持\":80,\"盈利\":60,\"界面设计\":85}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"战略\",\"广告\",\"客户反馈\",\"质量控制\",\"多样性\",\"产品研发\",\"技术支持\",\"盈利\",\"界面设计\"]}}]"} +{"prompt":"可视化{\"data\":[{\"属性\":\"服务质量\",\"类别\":\"一类\",\"得分\":78},{\"属性\":\"服务质量\",\"类别\":\"二类\",\"得分\":82},{\"属性\":\"价格优势\",\"类别\":\"一类\",\"得分\":80},{\"属性\":\"价格优势\",\"类别\":\"二类\",\"得分\":77},{\"属性\":\"市场反馈\",\"类别\":\"一类\",\"得分\":85},{\"属性\":\"市场反馈\",\"类别\":\"二类\",\"得分\":88},{\"属性\":\"售后服务\",\"类别\":\"一类\",\"得分\":79},{\"属性\":\"售后服务\",\"类别\":\"二类\",\"得分\":81},{\"属性\":\"品牌影响力\",\"类别\":\"一类\",\"得分\":84},{\"属性\":\"品牌影响力\",\"类别\":\"二类\",\"得分\":83}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"属性\"],\"y\":[\"得分\"],\"s\":[\"类别\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Development\":80,\"Marketing\":70,\"Customers\":60,\"Testing\":90,\"Communication\":75,\"Innovation\":85,\"Service\":55,\"Revenue\":65,\"Design\":80}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"Development\",\"Marketing\",\"Customers\",\"Testing\",\"Communication\",\"Innovation\",\"Service\",\"Revenue\",\"Design\"]}}]"} +{"prompt":"展示{\"data\":[{\"领导力\":85,\"社交推广\":75,\"用户基础\":65,\"风险控制\":70,\"道德标准\":90,\"创新策略\":80,\"客户援助\":70,\"盈利能力\":85,\"视觉功夫\":75}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"领导力\",\"社交推广\",\"用户基础\",\"风险控制\",\"道德标准\",\"创新策略\",\"客户援助\",\"盈利能力\",\"视觉功夫\"]}}]"} +{"prompt":"可视化{\"data\":[{\"维度\":\"性价比\",\"商品\":\"A\",\"评分\":90},{\"维度\":\"性价比\",\"商品\":\"B\",\"评分\":85},{\"维度\":\"外观设计\",\"商品\":\"A\",\"评分\":88},{\"维度\":\"外观设计\",\"商品\":\"B\",\"评分\":82},{\"维度\":\"功能性\",\"商品\":\"A\",\"评分\":84},{\"维度\":\"功能性\",\"商品\":\"B\",\"评分\":86},{\"维度\":\"耐用性\",\"商品\":\"A\",\"评分\":87},{\"维度\":\"耐用性\",\"商品\":\"B\",\"评分\":80},{\"维度\":\"环保性\",\"商品\":\"A\",\"评分\":82},{\"维度\":\"环保性\",\"商品\":\"B\",\"评分\":79}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"维度\"],\"y\":[\"评分\"],\"s\":[\"商品\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Leadership\":95,\"Digital Marketing\":85,\"User Base\":75,\"Risk Management\":90,\"Ethics\":80,\"Innovation Strategy\":85,\"Customer Assistance\":75,\"Profitability\":90,\"Visual Craft\":80}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"Leadership\",\"Digital Marketing\",\"User Base\",\"Risk Management\",\"Ethics\",\"Innovation Strategy\",\"Customer Assistance\",\"Profitability\",\"Visual Craft\"]}}]"} +{"prompt":"展示{\"data\":[{\"能力\":\"Learning Ability\",\"表现\":88},{\"能力\":\"Adaptability\",\"表现\":75},{\"能力\":\"Time Management\",\"表现\":82},{\"能力\":\"Crisis Management\",\"表现\":79},{\"能力\":\"Conflict Resolution\",\"表现\":84}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"能力\"],\"y\":[\"表现\"]}}]"} +{"prompt":"可视化{\"data\":[{\"skill\":\"沟通\",\"score\":75},{\"skill\":\"领导\",\"score\":88},{\"skill\":\"解决问题\",\"score\":65},{\"skill\":\"团队合作\",\"score\":92},{\"skill\":\"创新\",\"score\":78}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"skill\"],\"y\":[\"score\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"dimension\":\"Efficiency\",\"entity\":\"Unit1\",\"rating\":84},{\"dimension\":\"Efficiency\",\"entity\":\"Unit2\",\"rating\":81},{\"dimension\":\"Innovation\",\"entity\":\"Unit1\",\"rating\":86},{\"dimension\":\"Innovation\",\"entity\":\"Unit2\",\"rating\":85},{\"dimension\":\"Cost Control\",\"entity\":\"Unit1\",\"rating\":78},{\"dimension\":\"Cost Control\",\"entity\":\"Unit2\",\"rating\":80},{\"dimension\":\"Flexibility\",\"entity\":\"Unit1\",\"rating\":79},{\"dimension\":\"Flexibility\",\"entity\":\"Unit2\",\"rating\":77},{\"dimension\":\"Responsiveness\",\"entity\":\"Unit1\",\"rating\":83},{\"dimension\":\"Responsiveness\",\"entity\":\"Unit2\",\"rating\":82}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"dimension\"],\"y\":[\"rating\"],\"s\":[\"entity\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"特性\":\"可用性\",\"分数\":90},{\"特性\":\"安全性\",\"分数\":88},{\"特性\":\"灵活性\",\"分数\":76},{\"特性\":\"可扩展性\",\"分数\":83},{\"特性\":\"易用性\",\"分数\":85}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"特性\"],\"y\":[\"分数\"]}}]"} +{"prompt":"可视化{\"data\":[{\"skill\":\"Data Analysis\",\"score\":68},{\"skill\":\"Coding\",\"score\":72},{\"skill\":\"Project Management\",\"score\":90},{\"skill\":\"Market Research\",\"score\":65},{\"skill\":\"Financial Management\",\"score\":73}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"skill\"],\"y\":[\"score\"]}}]"} +{"prompt":"{\"data\":[{\"skill\":\"Communication\",\"score\":82},{\"skill\":\"Leadership\",\"score\":90},{\"skill\":\"Problem Solving\",\"score\":70},{\"skill\":\"Teamwork\",\"score\":85},{\"skill\":\"Creativity\",\"score\":80}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"skill\"],\"y\":[\"score\"]}}]"} +{"prompt":"可视化{\"data\":[{\"Data Analysis\":80,\"Public Relations\":85,\"Customer Retention\":90,\"Regulatory Compliance\":75,\"Inclusivity\":70,\"Tech Evolution\":95,\"Help Line\":70,\"Economics\":60,\"Creative Design\":85}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"Data Analysis\",\"Public Relations\",\"Customer Retention\",\"Regulatory Compliance\",\"Inclusivity\",\"Tech Evolution\",\"Help Line\",\"Economics\",\"Creative Design\"]}}]"} +{"prompt":"{\"data\":[{\"factor\":\"Quality\",\"brand\":\"X\",\"score\":88},{\"factor\":\"Quality\",\"brand\":\"Y\",\"score\":86},{\"factor\":\"Design\",\"brand\":\"X\",\"score\":84},{\"factor\":\"Design\",\"brand\":\"Y\",\"score\":82},{\"factor\":\"Durability\",\"brand\":\"X\",\"score\":87},{\"factor\":\"Durability\",\"brand\":\"Y\",\"score\":85},{\"factor\":\"Ease of Use\",\"brand\":\"X\",\"score\":83},{\"factor\":\"Ease of Use\",\"brand\":\"Y\",\"score\":81},{\"factor\":\"Innovation\",\"brand\":\"X\",\"score\":90},{\"factor\":\"Innovation\",\"brand\":\"Y\",\"score\":89}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"factor\"],\"y\":[\"score\"],\"s\":[\"brand\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"attribute\":\"Usability\",\"score\":87},{\"attribute\":\"Security\",\"score\":89},{\"attribute\":\"Flexibility\",\"score\":80},{\"attribute\":\"Scalability\",\"score\":82},{\"attribute\":\"Ease of Use\",\"score\":86}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"attribute\"],\"y\":[\"score\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"attribute\":\"Communication\",\"team\":\"Alpha\",\"score\":75},{\"attribute\":\"Communication\",\"team\":\"Beta\",\"score\":80},{\"attribute\":\"Teamwork\",\"team\":\"Alpha\",\"score\":82},{\"attribute\":\"Teamwork\",\"team\":\"Beta\",\"score\":78},{\"attribute\":\"Problem Solving\",\"team\":\"Alpha\",\"score\":88},{\"attribute\":\"Problem Solving\",\"team\":\"Beta\",\"score\":84},{\"attribute\":\"Project Management\",\"team\":\"Alpha\",\"score\":79},{\"attribute\":\"Project Management\",\"team\":\"Beta\",\"score\":77},{\"attribute\":\"Technical Skills\",\"team\":\"Alpha\",\"score\":85},{\"attribute\":\"Technical Skills\",\"team\":\"Beta\",\"score\":83}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"attribute\"],\"y\":[\"score\"],\"s\":[\"team\"]}}]"} +{"prompt":"展示{\"data\":[{\"战略\":85,\"广告\":60,\"客户反馈\":70,\"质量控制\":90,\"多样性\":65,\"产品研发\":75,\"技术支持\":80,\"盈利\":60,\"界面设计\":85}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"战略\",\"广告\",\"客户反馈\",\"质量控制\",\"多样性\",\"产品研发\",\"技术支持\",\"盈利\",\"界面设计\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"属性\":\"服务质量\",\"类别\":\"一类\",\"得分\":78},{\"属性\":\"服务质量\",\"类别\":\"二类\",\"得分\":82},{\"属性\":\"价格优势\",\"类别\":\"一类\",\"得分\":80},{\"属性\":\"价格优势\",\"类别\":\"二类\",\"得分\":77},{\"属性\":\"市场反馈\",\"类别\":\"一类\",\"得分\":85},{\"属性\":\"市场反馈\",\"类别\":\"二类\",\"得分\":88},{\"属性\":\"售后服务\",\"类别\":\"一类\",\"得分\":79},{\"属性\":\"售后服务\",\"类别\":\"二类\",\"得分\":81},{\"属性\":\"品牌影响力\",\"类别\":\"一类\",\"得分\":84},{\"属性\":\"品牌影响力\",\"类别\":\"二类\",\"得分\":83}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"属性\"],\"y\":[\"得分\"],\"s\":[\"类别\"]}}]"} +{"prompt":"{\"data\":[{\"Development\":80,\"Marketing\":70,\"Customers\":60,\"Testing\":90,\"Communication\":75,\"Innovation\":85,\"Service\":55,\"Revenue\":65,\"Design\":80}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"Development\",\"Marketing\",\"Customers\",\"Testing\",\"Communication\",\"Innovation\",\"Service\",\"Revenue\",\"Design\"]}}]"} +{"prompt":"可视化{\"data\":[{\"领导力\":85,\"社交推广\":75,\"用户基础\":65,\"风险控制\":70,\"道德标准\":90,\"创新策略\":80,\"客户援助\":70,\"盈利能力\":85,\"视觉功夫\":75}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"领导力\",\"社交推广\",\"用户基础\",\"风险控制\",\"道德标准\",\"创新策略\",\"客户援助\",\"盈利能力\",\"视觉功夫\"]}}]"} +{"prompt":"展示{\"data\":[{\"维度\":\"性价比\",\"商品\":\"A\",\"评分\":90},{\"维度\":\"性价比\",\"商品\":\"B\",\"评分\":85},{\"维度\":\"外观设计\",\"商品\":\"A\",\"评分\":88},{\"维度\":\"外观设计\",\"商品\":\"B\",\"评分\":82},{\"维度\":\"功能性\",\"商品\":\"A\",\"评分\":84},{\"维度\":\"功能性\",\"商品\":\"B\",\"评分\":86},{\"维度\":\"耐用性\",\"商品\":\"A\",\"评分\":87},{\"维度\":\"耐用性\",\"商品\":\"B\",\"评分\":80},{\"维度\":\"环保性\",\"商品\":\"A\",\"评分\":82},{\"维度\":\"环保性\",\"商品\":\"B\",\"评分\":79}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"维度\"],\"y\":[\"评分\"],\"s\":[\"商品\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Leadership\":95,\"Digital Marketing\":85,\"User Base\":75,\"Risk Management\":90,\"Ethics\":80,\"Innovation Strategy\":85,\"Customer Assistance\":75,\"Profitability\":90,\"Visual Craft\":80}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"Leadership\",\"Digital Marketing\",\"User Base\",\"Risk Management\",\"Ethics\",\"Innovation Strategy\",\"Customer Assistance\",\"Profitability\",\"Visual Craft\"]}}]"} +{"prompt":"可视化{\"data\":[{\"能力\":\"Learning Ability\",\"表现\":88},{\"能力\":\"Adaptability\",\"表现\":75},{\"能力\":\"Time Management\",\"表现\":82},{\"能力\":\"Crisis Management\",\"表现\":79},{\"能力\":\"Conflict Resolution\",\"表现\":84}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"能力\"],\"y\":[\"表现\"]}}]"} +{"prompt":"可视化{\"data\":[{\"skill\":\"沟通\",\"score\":75},{\"skill\":\"领导\",\"score\":88},{\"skill\":\"解决问题\",\"score\":65},{\"skill\":\"团队合作\",\"score\":92},{\"skill\":\"创新\",\"score\":78}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"skill\"],\"y\":[\"score\"]}}]"} +{"prompt":"展示{\"data\":[{\"dimension\":\"Efficiency\",\"entity\":\"Unit1\",\"rating\":84},{\"dimension\":\"Efficiency\",\"entity\":\"Unit2\",\"rating\":81},{\"dimension\":\"Innovation\",\"entity\":\"Unit1\",\"rating\":86},{\"dimension\":\"Innovation\",\"entity\":\"Unit2\",\"rating\":85},{\"dimension\":\"Cost Control\",\"entity\":\"Unit1\",\"rating\":78},{\"dimension\":\"Cost Control\",\"entity\":\"Unit2\",\"rating\":80},{\"dimension\":\"Flexibility\",\"entity\":\"Unit1\",\"rating\":79},{\"dimension\":\"Flexibility\",\"entity\":\"Unit2\",\"rating\":77},{\"dimension\":\"Responsiveness\",\"entity\":\"Unit1\",\"rating\":83},{\"dimension\":\"Responsiveness\",\"entity\":\"Unit2\",\"rating\":82}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"dimension\"],\"y\":[\"rating\"],\"s\":[\"entity\"]}}]"} +{"prompt":"{\"data\":[{\"特性\":\"可用性\",\"分数\":90},{\"特性\":\"安全性\",\"分数\":88},{\"特性\":\"灵活性\",\"分数\":76},{\"特性\":\"可扩展性\",\"分数\":83},{\"特性\":\"易用性\",\"分数\":85}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"特性\"],\"y\":[\"分数\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"skill\":\"Data Analysis\",\"score\":68},{\"skill\":\"Coding\",\"score\":72},{\"skill\":\"Project Management\",\"score\":90},{\"skill\":\"Market Research\",\"score\":65},{\"skill\":\"Financial Management\",\"score\":73}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"skill\"],\"y\":[\"score\"]}}]"} +{"prompt":"{\"data\":[{\"skill\":\"Communication\",\"score\":82},{\"skill\":\"Leadership\",\"score\":90},{\"skill\":\"Problem Solving\",\"score\":70},{\"skill\":\"Teamwork\",\"score\":85},{\"skill\":\"Creativity\",\"score\":80}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"skill\"],\"y\":[\"score\"]}}]"} +{"prompt":"{\"data\":[{\"Data Analysis\":80,\"Public Relations\":85,\"Customer Retention\":90,\"Regulatory Compliance\":75,\"Inclusivity\":70,\"Tech Evolution\":95,\"Help Line\":70,\"Economics\":60,\"Creative Design\":85}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"Data Analysis\",\"Public Relations\",\"Customer Retention\",\"Regulatory Compliance\",\"Inclusivity\",\"Tech Evolution\",\"Help Line\",\"Economics\",\"Creative Design\"]}}]"} +{"prompt":"展示{\"data\":[{\"factor\":\"Quality\",\"brand\":\"X\",\"score\":88},{\"factor\":\"Quality\",\"brand\":\"Y\",\"score\":86},{\"factor\":\"Design\",\"brand\":\"X\",\"score\":84},{\"factor\":\"Design\",\"brand\":\"Y\",\"score\":82},{\"factor\":\"Durability\",\"brand\":\"X\",\"score\":87},{\"factor\":\"Durability\",\"brand\":\"Y\",\"score\":85},{\"factor\":\"Ease of Use\",\"brand\":\"X\",\"score\":83},{\"factor\":\"Ease of Use\",\"brand\":\"Y\",\"score\":81},{\"factor\":\"Innovation\",\"brand\":\"X\",\"score\":90},{\"factor\":\"Innovation\",\"brand\":\"Y\",\"score\":89}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"factor\"],\"y\":[\"score\"],\"s\":[\"brand\"]}}]"} +{"prompt":"{\"data\":[{\"attribute\":\"Usability\",\"score\":87},{\"attribute\":\"Security\",\"score\":89},{\"attribute\":\"Flexibility\",\"score\":80},{\"attribute\":\"Scalability\",\"score\":82},{\"attribute\":\"Ease of Use\",\"score\":86}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"attribute\"],\"y\":[\"score\"]}}]"} +{"prompt":"可视化{\"data\":[{\"attribute\":\"Communication\",\"team\":\"Alpha\",\"score\":75},{\"attribute\":\"Communication\",\"team\":\"Beta\",\"score\":80},{\"attribute\":\"Teamwork\",\"team\":\"Alpha\",\"score\":82},{\"attribute\":\"Teamwork\",\"team\":\"Beta\",\"score\":78},{\"attribute\":\"Problem Solving\",\"team\":\"Alpha\",\"score\":88},{\"attribute\":\"Problem Solving\",\"team\":\"Beta\",\"score\":84},{\"attribute\":\"Project Management\",\"team\":\"Alpha\",\"score\":79},{\"attribute\":\"Project Management\",\"team\":\"Beta\",\"score\":77},{\"attribute\":\"Technical Skills\",\"team\":\"Alpha\",\"score\":85},{\"attribute\":\"Technical Skills\",\"team\":\"Beta\",\"score\":83}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"attribute\"],\"y\":[\"score\"],\"s\":[\"team\"]}}]"} +{"prompt":"可视化{\"data\":[{\"战略\":85,\"广告\":60,\"客户反馈\":70,\"质量控制\":90,\"多样性\":65,\"产品研发\":75,\"技术支持\":80,\"盈利\":60,\"界面设计\":85}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"战略\",\"广告\",\"客户反馈\",\"质量控制\",\"多样性\",\"产品研发\",\"技术支持\",\"盈利\",\"界面设计\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"属性\":\"服务质量\",\"类别\":\"一类\",\"得分\":78},{\"属性\":\"服务质量\",\"类别\":\"二类\",\"得分\":82},{\"属性\":\"价格优势\",\"类别\":\"一类\",\"得分\":80},{\"属性\":\"价格优势\",\"类别\":\"二类\",\"得分\":77},{\"属性\":\"市场反馈\",\"类别\":\"一类\",\"得分\":85},{\"属性\":\"市场反馈\",\"类别\":\"二类\",\"得分\":88},{\"属性\":\"售后服务\",\"类别\":\"一类\",\"得分\":79},{\"属性\":\"售后服务\",\"类别\":\"二类\",\"得分\":81},{\"属性\":\"品牌影响力\",\"类别\":\"一类\",\"得分\":84},{\"属性\":\"品牌影响力\",\"类别\":\"二类\",\"得分\":83}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"属性\"],\"y\":[\"得分\"],\"s\":[\"类别\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"Development\":80,\"Marketing\":70,\"Customers\":60,\"Testing\":90,\"Communication\":75,\"Innovation\":85,\"Service\":55,\"Revenue\":65,\"Design\":80}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"Development\",\"Marketing\",\"Customers\",\"Testing\",\"Communication\",\"Innovation\",\"Service\",\"Revenue\",\"Design\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"领导力\":85,\"社交推广\":75,\"用户基础\":65,\"风险控制\":70,\"道德标准\":90,\"创新策略\":80,\"客户援助\":70,\"盈利能力\":85,\"视觉功夫\":75}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"领导力\",\"社交推广\",\"用户基础\",\"风险控制\",\"道德标准\",\"创新策略\",\"客户援助\",\"盈利能力\",\"视觉功夫\"]}}]"} +{"prompt":"展示{\"data\":[{\"维度\":\"性价比\",\"商品\":\"A\",\"评分\":90},{\"维度\":\"性价比\",\"商品\":\"B\",\"评分\":85},{\"维度\":\"外观设计\",\"商品\":\"A\",\"评分\":88},{\"维度\":\"外观设计\",\"商品\":\"B\",\"评分\":82},{\"维度\":\"功能性\",\"商品\":\"A\",\"评分\":84},{\"维度\":\"功能性\",\"商品\":\"B\",\"评分\":86},{\"维度\":\"耐用性\",\"商品\":\"A\",\"评分\":87},{\"维度\":\"耐用性\",\"商品\":\"B\",\"评分\":80},{\"维度\":\"环保性\",\"商品\":\"A\",\"评分\":82},{\"维度\":\"环保性\",\"商品\":\"B\",\"评分\":79}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"维度\"],\"y\":[\"评分\"],\"s\":[\"商品\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Leadership\":95,\"Digital Marketing\":85,\"User Base\":75,\"Risk Management\":90,\"Ethics\":80,\"Innovation Strategy\":85,\"Customer Assistance\":75,\"Profitability\":90,\"Visual Craft\":80}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"Leadership\",\"Digital Marketing\",\"User Base\",\"Risk Management\",\"Ethics\",\"Innovation Strategy\",\"Customer Assistance\",\"Profitability\",\"Visual Craft\"]}}]"} +{"prompt":"可视化{\"data\":[{\"能力\":\"Learning Ability\",\"表现\":88},{\"能力\":\"Adaptability\",\"表现\":75},{\"能力\":\"Time Management\",\"表现\":82},{\"能力\":\"Crisis Management\",\"表现\":79},{\"能力\":\"Conflict Resolution\",\"表现\":84}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"能力\"],\"y\":[\"表现\"]}}]"} +{"prompt":"{\"data\":[{\"skill\":\"沟通\",\"score\":75},{\"skill\":\"领导\",\"score\":88},{\"skill\":\"解决问题\",\"score\":65},{\"skill\":\"团队合作\",\"score\":92},{\"skill\":\"创新\",\"score\":78}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"skill\"],\"y\":[\"score\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"dimension\":\"Efficiency\",\"entity\":\"Unit1\",\"rating\":84},{\"dimension\":\"Efficiency\",\"entity\":\"Unit2\",\"rating\":81},{\"dimension\":\"Innovation\",\"entity\":\"Unit1\",\"rating\":86},{\"dimension\":\"Innovation\",\"entity\":\"Unit2\",\"rating\":85},{\"dimension\":\"Cost Control\",\"entity\":\"Unit1\",\"rating\":78},{\"dimension\":\"Cost Control\",\"entity\":\"Unit2\",\"rating\":80},{\"dimension\":\"Flexibility\",\"entity\":\"Unit1\",\"rating\":79},{\"dimension\":\"Flexibility\",\"entity\":\"Unit2\",\"rating\":77},{\"dimension\":\"Responsiveness\",\"entity\":\"Unit1\",\"rating\":83},{\"dimension\":\"Responsiveness\",\"entity\":\"Unit2\",\"rating\":82}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"dimension\"],\"y\":[\"rating\"],\"s\":[\"entity\"]}}]"} +{"prompt":"{\"data\":[{\"特性\":\"可用性\",\"分数\":90},{\"特性\":\"安全性\",\"分数\":88},{\"特性\":\"灵活性\",\"分数\":76},{\"特性\":\"可扩展性\",\"分数\":83},{\"特性\":\"易用性\",\"分数\":85}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"特性\"],\"y\":[\"分数\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"skill\":\"Data Analysis\",\"score\":68},{\"skill\":\"Coding\",\"score\":72},{\"skill\":\"Project Management\",\"score\":90},{\"skill\":\"Market Research\",\"score\":65},{\"skill\":\"Financial Management\",\"score\":73}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"skill\"],\"y\":[\"score\"]}}]"} +{"prompt":"{\"data\":[{\"skill\":\"Communication\",\"score\":82},{\"skill\":\"Leadership\",\"score\":90},{\"skill\":\"Problem Solving\",\"score\":70},{\"skill\":\"Teamwork\",\"score\":85},{\"skill\":\"Creativity\",\"score\":80}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"skill\"],\"y\":[\"score\"]}}]"} +{"prompt":"{\"data\":[{\"Data Analysis\":80,\"Public Relations\":85,\"Customer Retention\":90,\"Regulatory Compliance\":75,\"Inclusivity\":70,\"Tech Evolution\":95,\"Help Line\":70,\"Economics\":60,\"Creative Design\":85}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"Data Analysis\",\"Public Relations\",\"Customer Retention\",\"Regulatory Compliance\",\"Inclusivity\",\"Tech Evolution\",\"Help Line\",\"Economics\",\"Creative Design\"]}}]"} +{"prompt":"可视化{\"data\":[{\"factor\":\"Quality\",\"brand\":\"X\",\"score\":88},{\"factor\":\"Quality\",\"brand\":\"Y\",\"score\":86},{\"factor\":\"Design\",\"brand\":\"X\",\"score\":84},{\"factor\":\"Design\",\"brand\":\"Y\",\"score\":82},{\"factor\":\"Durability\",\"brand\":\"X\",\"score\":87},{\"factor\":\"Durability\",\"brand\":\"Y\",\"score\":85},{\"factor\":\"Ease of Use\",\"brand\":\"X\",\"score\":83},{\"factor\":\"Ease of Use\",\"brand\":\"Y\",\"score\":81},{\"factor\":\"Innovation\",\"brand\":\"X\",\"score\":90},{\"factor\":\"Innovation\",\"brand\":\"Y\",\"score\":89}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"factor\"],\"y\":[\"score\"],\"s\":[\"brand\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"attribute\":\"Usability\",\"score\":87},{\"attribute\":\"Security\",\"score\":89},{\"attribute\":\"Flexibility\",\"score\":80},{\"attribute\":\"Scalability\",\"score\":82},{\"attribute\":\"Ease of Use\",\"score\":86}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"attribute\"],\"y\":[\"score\"]}}]"} +{"prompt":"可视化{\"data\":[{\"attribute\":\"Communication\",\"team\":\"Alpha\",\"score\":75},{\"attribute\":\"Communication\",\"team\":\"Beta\",\"score\":80},{\"attribute\":\"Teamwork\",\"team\":\"Alpha\",\"score\":82},{\"attribute\":\"Teamwork\",\"team\":\"Beta\",\"score\":78},{\"attribute\":\"Problem Solving\",\"team\":\"Alpha\",\"score\":88},{\"attribute\":\"Problem Solving\",\"team\":\"Beta\",\"score\":84},{\"attribute\":\"Project Management\",\"team\":\"Alpha\",\"score\":79},{\"attribute\":\"Project Management\",\"team\":\"Beta\",\"score\":77},{\"attribute\":\"Technical Skills\",\"team\":\"Alpha\",\"score\":85},{\"attribute\":\"Technical Skills\",\"team\":\"Beta\",\"score\":83}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"attribute\"],\"y\":[\"score\"],\"s\":[\"team\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"战略\":85,\"广告\":60,\"客户反馈\":70,\"质量控制\":90,\"多样性\":65,\"产品研发\":75,\"技术支持\":80,\"盈利\":60,\"界面设计\":85}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"战略\",\"广告\",\"客户反馈\",\"质量控制\",\"多样性\",\"产品研发\",\"技术支持\",\"盈利\",\"界面设计\"]}}]"} +{"prompt":"可视化{\"data\":[{\"属性\":\"服务质量\",\"类别\":\"一类\",\"得分\":78},{\"属性\":\"服务质量\",\"类别\":\"二类\",\"得分\":82},{\"属性\":\"价格优势\",\"类别\":\"一类\",\"得分\":80},{\"属性\":\"价格优势\",\"类别\":\"二类\",\"得分\":77},{\"属性\":\"市场反馈\",\"类别\":\"一类\",\"得分\":85},{\"属性\":\"市场反馈\",\"类别\":\"二类\",\"得分\":88},{\"属性\":\"售后服务\",\"类别\":\"一类\",\"得分\":79},{\"属性\":\"售后服务\",\"类别\":\"二类\",\"得分\":81},{\"属性\":\"品牌影响力\",\"类别\":\"一类\",\"得分\":84},{\"属性\":\"品牌影响力\",\"类别\":\"二类\",\"得分\":83}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"属性\"],\"y\":[\"得分\"],\"s\":[\"类别\"]}}]"} +{"prompt":"可视化{\"data\":[{\"Development\":80,\"Marketing\":70,\"Customers\":60,\"Testing\":90,\"Communication\":75,\"Innovation\":85,\"Service\":55,\"Revenue\":65,\"Design\":80}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"Development\",\"Marketing\",\"Customers\",\"Testing\",\"Communication\",\"Innovation\",\"Service\",\"Revenue\",\"Design\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"领导力\":85,\"社交推广\":75,\"用户基础\":65,\"风险控制\":70,\"道德标准\":90,\"创新策略\":80,\"客户援助\":70,\"盈利能力\":85,\"视觉功夫\":75}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"领导力\",\"社交推广\",\"用户基础\",\"风险控制\",\"道德标准\",\"创新策略\",\"客户援助\",\"盈利能力\",\"视觉功夫\"]}}]"} +{"prompt":"可视化{\"data\":[{\"维度\":\"性价比\",\"商品\":\"A\",\"评分\":90},{\"维度\":\"性价比\",\"商品\":\"B\",\"评分\":85},{\"维度\":\"外观设计\",\"商品\":\"A\",\"评分\":88},{\"维度\":\"外观设计\",\"商品\":\"B\",\"评分\":82},{\"维度\":\"功能性\",\"商品\":\"A\",\"评分\":84},{\"维度\":\"功能性\",\"商品\":\"B\",\"评分\":86},{\"维度\":\"耐用性\",\"商品\":\"A\",\"评分\":87},{\"维度\":\"耐用性\",\"商品\":\"B\",\"评分\":80},{\"维度\":\"环保性\",\"商品\":\"A\",\"评分\":82},{\"维度\":\"环保性\",\"商品\":\"B\",\"评分\":79}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"维度\"],\"y\":[\"评分\"],\"s\":[\"商品\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"Leadership\":95,\"Digital Marketing\":85,\"User Base\":75,\"Risk Management\":90,\"Ethics\":80,\"Innovation Strategy\":85,\"Customer Assistance\":75,\"Profitability\":90,\"Visual Craft\":80}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"Leadership\",\"Digital Marketing\",\"User Base\",\"Risk Management\",\"Ethics\",\"Innovation Strategy\",\"Customer Assistance\",\"Profitability\",\"Visual Craft\"]}}]"} +{"prompt":"可视化{\"data\":[{\"能力\":\"Learning Ability\",\"表现\":88},{\"能力\":\"Adaptability\",\"表现\":75},{\"能力\":\"Time Management\",\"表现\":82},{\"能力\":\"Crisis Management\",\"表现\":79},{\"能力\":\"Conflict Resolution\",\"表现\":84}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"能力\"],\"y\":[\"表现\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"skill\":\"沟通\",\"score\":75},{\"skill\":\"领导\",\"score\":88},{\"skill\":\"解决问题\",\"score\":65},{\"skill\":\"团队合作\",\"score\":92},{\"skill\":\"创新\",\"score\":78}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"skill\"],\"y\":[\"score\"]}}]"} +{"prompt":"{\"data\":[{\"dimension\":\"Efficiency\",\"entity\":\"Unit1\",\"rating\":84},{\"dimension\":\"Efficiency\",\"entity\":\"Unit2\",\"rating\":81},{\"dimension\":\"Innovation\",\"entity\":\"Unit1\",\"rating\":86},{\"dimension\":\"Innovation\",\"entity\":\"Unit2\",\"rating\":85},{\"dimension\":\"Cost Control\",\"entity\":\"Unit1\",\"rating\":78},{\"dimension\":\"Cost Control\",\"entity\":\"Unit2\",\"rating\":80},{\"dimension\":\"Flexibility\",\"entity\":\"Unit1\",\"rating\":79},{\"dimension\":\"Flexibility\",\"entity\":\"Unit2\",\"rating\":77},{\"dimension\":\"Responsiveness\",\"entity\":\"Unit1\",\"rating\":83},{\"dimension\":\"Responsiveness\",\"entity\":\"Unit2\",\"rating\":82}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"dimension\"],\"y\":[\"rating\"],\"s\":[\"entity\"]}}]"} +{"prompt":"{\"data\":[{\"特性\":\"可用性\",\"分数\":90},{\"特性\":\"安全性\",\"分数\":88},{\"特性\":\"灵活性\",\"分数\":76},{\"特性\":\"可扩展性\",\"分数\":83},{\"特性\":\"易用性\",\"分数\":85}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"特性\"],\"y\":[\"分数\"]}}]"} +{"prompt":"可视化{\"data\":[{\"skill\":\"Data Analysis\",\"score\":68},{\"skill\":\"Coding\",\"score\":72},{\"skill\":\"Project Management\",\"score\":90},{\"skill\":\"Market Research\",\"score\":65},{\"skill\":\"Financial Management\",\"score\":73}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"skill\"],\"y\":[\"score\"]}}]"} +{"prompt":"展示{\"data\":[{\"skill\":\"Communication\",\"score\":82},{\"skill\":\"Leadership\",\"score\":90},{\"skill\":\"Problem Solving\",\"score\":70},{\"skill\":\"Teamwork\",\"score\":85},{\"skill\":\"Creativity\",\"score\":80}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"skill\"],\"y\":[\"score\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Data Analysis\":80,\"Public Relations\":85,\"Customer Retention\":90,\"Regulatory Compliance\":75,\"Inclusivity\":70,\"Tech Evolution\":95,\"Help Line\":70,\"Economics\":60,\"Creative Design\":85}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"Data Analysis\",\"Public Relations\",\"Customer Retention\",\"Regulatory Compliance\",\"Inclusivity\",\"Tech Evolution\",\"Help Line\",\"Economics\",\"Creative Design\"]}}]"} +{"prompt":"展示{\"data\":[{\"factor\":\"Quality\",\"brand\":\"X\",\"score\":88},{\"factor\":\"Quality\",\"brand\":\"Y\",\"score\":86},{\"factor\":\"Design\",\"brand\":\"X\",\"score\":84},{\"factor\":\"Design\",\"brand\":\"Y\",\"score\":82},{\"factor\":\"Durability\",\"brand\":\"X\",\"score\":87},{\"factor\":\"Durability\",\"brand\":\"Y\",\"score\":85},{\"factor\":\"Ease of Use\",\"brand\":\"X\",\"score\":83},{\"factor\":\"Ease of Use\",\"brand\":\"Y\",\"score\":81},{\"factor\":\"Innovation\",\"brand\":\"X\",\"score\":90},{\"factor\":\"Innovation\",\"brand\":\"Y\",\"score\":89}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"factor\"],\"y\":[\"score\"],\"s\":[\"brand\"]}}]"} +{"prompt":"展示{\"data\":[{\"attribute\":\"Usability\",\"score\":87},{\"attribute\":\"Security\",\"score\":89},{\"attribute\":\"Flexibility\",\"score\":80},{\"attribute\":\"Scalability\",\"score\":82},{\"attribute\":\"Ease of Use\",\"score\":86}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"attribute\"],\"y\":[\"score\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"attribute\":\"Communication\",\"team\":\"Alpha\",\"score\":75},{\"attribute\":\"Communication\",\"team\":\"Beta\",\"score\":80},{\"attribute\":\"Teamwork\",\"team\":\"Alpha\",\"score\":82},{\"attribute\":\"Teamwork\",\"team\":\"Beta\",\"score\":78},{\"attribute\":\"Problem Solving\",\"team\":\"Alpha\",\"score\":88},{\"attribute\":\"Problem Solving\",\"team\":\"Beta\",\"score\":84},{\"attribute\":\"Project Management\",\"team\":\"Alpha\",\"score\":79},{\"attribute\":\"Project Management\",\"team\":\"Beta\",\"score\":77},{\"attribute\":\"Technical Skills\",\"team\":\"Alpha\",\"score\":85},{\"attribute\":\"Technical Skills\",\"team\":\"Beta\",\"score\":83}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"attribute\"],\"y\":[\"score\"],\"s\":[\"team\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"战略\":85,\"广告\":60,\"客户反馈\":70,\"质量控制\":90,\"多样性\":65,\"产品研发\":75,\"技术支持\":80,\"盈利\":60,\"界面设计\":85}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"战略\",\"广告\",\"客户反馈\",\"质量控制\",\"多样性\",\"产品研发\",\"技术支持\",\"盈利\",\"界面设计\"]}}]"} +{"prompt":"展示{\"data\":[{\"属性\":\"服务质量\",\"类别\":\"一类\",\"得分\":78},{\"属性\":\"服务质量\",\"类别\":\"二类\",\"得分\":82},{\"属性\":\"价格优势\",\"类别\":\"一类\",\"得分\":80},{\"属性\":\"价格优势\",\"类别\":\"二类\",\"得分\":77},{\"属性\":\"市场反馈\",\"类别\":\"一类\",\"得分\":85},{\"属性\":\"市场反馈\",\"类别\":\"二类\",\"得分\":88},{\"属性\":\"售后服务\",\"类别\":\"一类\",\"得分\":79},{\"属性\":\"售后服务\",\"类别\":\"二类\",\"得分\":81},{\"属性\":\"品牌影响力\",\"类别\":\"一类\",\"得分\":84},{\"属性\":\"品牌影响力\",\"类别\":\"二类\",\"得分\":83}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"属性\"],\"y\":[\"得分\"],\"s\":[\"类别\"]}}]"} +{"prompt":"可视化{\"data\":[{\"Development\":80,\"Marketing\":70,\"Customers\":60,\"Testing\":90,\"Communication\":75,\"Innovation\":85,\"Service\":55,\"Revenue\":65,\"Design\":80}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"Development\",\"Marketing\",\"Customers\",\"Testing\",\"Communication\",\"Innovation\",\"Service\",\"Revenue\",\"Design\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"领导力\":85,\"社交推广\":75,\"用户基础\":65,\"风险控制\":70,\"道德标准\":90,\"创新策略\":80,\"客户援助\":70,\"盈利能力\":85,\"视觉功夫\":75}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"领导力\",\"社交推广\",\"用户基础\",\"风险控制\",\"道德标准\",\"创新策略\",\"客户援助\",\"盈利能力\",\"视觉功夫\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"维度\":\"性价比\",\"商品\":\"A\",\"评分\":90},{\"维度\":\"性价比\",\"商品\":\"B\",\"评分\":85},{\"维度\":\"外观设计\",\"商品\":\"A\",\"评分\":88},{\"维度\":\"外观设计\",\"商品\":\"B\",\"评分\":82},{\"维度\":\"功能性\",\"商品\":\"A\",\"评分\":84},{\"维度\":\"功能性\",\"商品\":\"B\",\"评分\":86},{\"维度\":\"耐用性\",\"商品\":\"A\",\"评分\":87},{\"维度\":\"耐用性\",\"商品\":\"B\",\"评分\":80},{\"维度\":\"环保性\",\"商品\":\"A\",\"评分\":82},{\"维度\":\"环保性\",\"商品\":\"B\",\"评分\":79}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"维度\"],\"y\":[\"评分\"],\"s\":[\"商品\"]}}]"} +{"prompt":"{\"data\":[{\"Leadership\":95,\"Digital Marketing\":85,\"User Base\":75,\"Risk Management\":90,\"Ethics\":80,\"Innovation Strategy\":85,\"Customer Assistance\":75,\"Profitability\":90,\"Visual Craft\":80}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"y\":[\"Leadership\",\"Digital Marketing\",\"User Base\",\"Risk Management\",\"Ethics\",\"Innovation Strategy\",\"Customer Assistance\",\"Profitability\",\"Visual Craft\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"能力\":\"Learning Ability\",\"表现\":88},{\"能力\":\"Adaptability\",\"表现\":75},{\"能力\":\"Time Management\",\"表现\":82},{\"能力\":\"Crisis Management\",\"表现\":79},{\"能力\":\"Conflict Resolution\",\"表现\":84}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"能力\"],\"y\":[\"表现\"]}}]"} +{"prompt":"展示{\"data\":[{\"skill\":\"沟通\",\"score\":75},{\"skill\":\"领导\",\"score\":88},{\"skill\":\"解决问题\",\"score\":65},{\"skill\":\"团队合作\",\"score\":92},{\"skill\":\"创新\",\"score\":78}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"skill\"],\"y\":[\"score\"]}}]"} +{"prompt":"展示{\"data\":[{\"dimension\":\"Efficiency\",\"entity\":\"Unit1\",\"rating\":84},{\"dimension\":\"Efficiency\",\"entity\":\"Unit2\",\"rating\":81},{\"dimension\":\"Innovation\",\"entity\":\"Unit1\",\"rating\":86},{\"dimension\":\"Innovation\",\"entity\":\"Unit2\",\"rating\":85},{\"dimension\":\"Cost Control\",\"entity\":\"Unit1\",\"rating\":78},{\"dimension\":\"Cost Control\",\"entity\":\"Unit2\",\"rating\":80},{\"dimension\":\"Flexibility\",\"entity\":\"Unit1\",\"rating\":79},{\"dimension\":\"Flexibility\",\"entity\":\"Unit2\",\"rating\":77},{\"dimension\":\"Responsiveness\",\"entity\":\"Unit1\",\"rating\":83},{\"dimension\":\"Responsiveness\",\"entity\":\"Unit2\",\"rating\":82}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"dimension\"],\"y\":[\"rating\"],\"s\":[\"entity\"]}}]"} +{"prompt":"{\"data\":[{\"特性\":\"可用性\",\"分数\":90},{\"特性\":\"安全性\",\"分数\":88},{\"特性\":\"灵活性\",\"分数\":76},{\"特性\":\"可扩展性\",\"分数\":83},{\"特性\":\"易用性\",\"分数\":85}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"特性\"],\"y\":[\"分数\"]}}]"} +{"prompt":"{\"data\":[{\"skill\":\"Data Analysis\",\"score\":68},{\"skill\":\"Coding\",\"score\":72},{\"skill\":\"Project Management\",\"score\":90},{\"skill\":\"Market Research\",\"score\":65},{\"skill\":\"Financial Management\",\"score\":73}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"skill\"],\"y\":[\"score\"]}}]"} +{"prompt":"{\"data\":[{\"skill\":\"Communication\",\"score\":82},{\"skill\":\"Leadership\",\"score\":90},{\"skill\":\"Problem Solving\",\"score\":70},{\"skill\":\"Teamwork\",\"score\":85},{\"skill\":\"Creativity\",\"score\":80}]}","answer":"[{\"type\":\"radar\",\"encode\":{\"x\":[\"skill\"],\"y\":[\"score\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"行业\":\"科技\",\"投资金额\":200},{\"行业\":\"金融\",\"投资金额\":150},{\"行业\":\"教育\",\"投资金额\":50},{\"行业\":\"医疗\",\"投资金额\":100},{\"行业\":\"电子产品\",\"投资金额\":30},{\"行业\":\"家电\",\"投资金额\":20},{\"行业\":\"家具\",\"投资金额\":10},{\"行业\":\"服装\",\"投资金额\":40}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"{\"data\":[{\"Region\":\"USA-North\",\"GDP\":15000},{\"Region\":\"USA-South\",\"GDP\":12000},{\"Region\":\"USA-East\",\"GDP\":10000},{\"Region\":\"USA-West\",\"GDP\":14000},{\"Region\":\"Europe-Western\",\"GDP\":300},{\"Region\":\"Europe-Eastern\",\"GDP\":200},{\"Region\":\"Europe-Northern\",\"GDP\":100},{\"Region\":\"Europe-Southern\",\"GDP\":150},{\"Region\":\"Asia\",\"GDP\":85000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"展示{\"data\":[{\"Region\":\"Australia-New South Wales\",\"Tourism Revenue\":8000},{\"Region\":\"Australia-Victoria\",\"Tourism Revenue\":7500},{\"Region\":\"Australia-Queensland\",\"Tourism Revenue\":6800},{\"Region\":\"Australia-Western Australia\",\"Tourism Revenue\":4000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"{\"data\":[{\"Region\":\"Africa/Northern\",\"Population\":20000},{\"Region\":\"Africa/Western\",\"Population\":15000},{\"Region\":\"Africa/Eastern\",\"Population\":18000},{\"Region\":\"Africa/Southern\",\"Population\":10000},{\"Region\":\"Africa/Central\",\"Population\":12000},{\"Continent\":\"Asia\",\"Population\":4500},{\"Continent\":\"Africa\",\"Population\":1300},{\"Continent\":\"Europe\",\"Population\":750},{\"Continent\":\"America\",\"Population\":1000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"{\"data\":[{\"地区\":\"Europe-Germany\",\"科技支出\":700000},{\"地区\":\"Europe-France\",\"科技支出\":600000},{\"地区\":\"Europe-Italy\",\"科技支出\":500000},{\"地区\":\"Europe-UK\",\"科技支出\":550000},{\"地区\":\"北美-美国\",\"科技支出\":500000},{\"地区\":\"北美-加拿大\",\"科技支出\":80000},{\"地区\":\"北美-墨西哥\",\"科技支出\":20000},{\"地区\":\"Oceania-New Zealand\",\"科技支出\":10000},{\"地区\":\"Oceania-Fiji\",\"科技支出\":500},{\"地区\":\"Oceania-Samoa\",\"科技支出\":400}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"推荐图表{\"data\":[{\"行业\":\"科技\",\"投资金额\":200},{\"行业\":\"金融\",\"投资金额\":150},{\"行业\":\"教育\",\"投资金额\":50},{\"行业\":\"医疗\",\"投资金额\":100},{\"行业\":\"电子产品\",\"投资金额\":30},{\"行业\":\"家电\",\"投资金额\":20},{\"行业\":\"家具\",\"投资金额\":10},{\"行业\":\"服装\",\"投资金额\":40}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"{\"data\":[{\"Region\":\"USA-North\",\"GDP\":15000},{\"Region\":\"USA-South\",\"GDP\":12000},{\"Region\":\"USA-East\",\"GDP\":10000},{\"Region\":\"USA-West\",\"GDP\":14000},{\"Region\":\"Europe-Western\",\"GDP\":300},{\"Region\":\"Europe-Eastern\",\"GDP\":200},{\"Region\":\"Europe-Northern\",\"GDP\":100},{\"Region\":\"Europe-Southern\",\"GDP\":150},{\"Region\":\"Asia\",\"GDP\":85000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Region\":\"Australia-New South Wales\",\"Tourism Revenue\":8000},{\"Region\":\"Australia-Victoria\",\"Tourism Revenue\":7500},{\"Region\":\"Australia-Queensland\",\"Tourism Revenue\":6800},{\"Region\":\"Australia-Western Australia\",\"Tourism Revenue\":4000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Region\":\"Africa/Northern\",\"Population\":20000},{\"Region\":\"Africa/Western\",\"Population\":15000},{\"Region\":\"Africa/Eastern\",\"Population\":18000},{\"Region\":\"Africa/Southern\",\"Population\":10000},{\"Region\":\"Africa/Central\",\"Population\":12000},{\"Continent\":\"Asia\",\"Population\":4500},{\"Continent\":\"Africa\",\"Population\":1300},{\"Continent\":\"Europe\",\"Population\":750},{\"Continent\":\"America\",\"Population\":1000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"推荐图表{\"data\":[{\"地区\":\"Europe-Germany\",\"科技支出\":700000},{\"地区\":\"Europe-France\",\"科技支出\":600000},{\"地区\":\"Europe-Italy\",\"科技支出\":500000},{\"地区\":\"Europe-UK\",\"科技支出\":550000},{\"地区\":\"北美-美国\",\"科技支出\":500000},{\"地区\":\"北美-加拿大\",\"科技支出\":80000},{\"地区\":\"北美-墨西哥\",\"科技支出\":20000},{\"地区\":\"Oceania-New Zealand\",\"科技支出\":10000},{\"地区\":\"Oceania-Fiji\",\"科技支出\":500},{\"地区\":\"Oceania-Samoa\",\"科技支出\":400}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"{\"data\":[{\"行业\":\"科技\",\"投资金额\":200},{\"行业\":\"金融\",\"投资金额\":150},{\"行业\":\"教育\",\"投资金额\":50},{\"行业\":\"医疗\",\"投资金额\":100},{\"行业\":\"电子产品\",\"投资金额\":30},{\"行业\":\"家电\",\"投资金额\":20},{\"行业\":\"家具\",\"投资金额\":10},{\"行业\":\"服装\",\"投资金额\":40}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Region\":\"USA-North\",\"GDP\":15000},{\"Region\":\"USA-South\",\"GDP\":12000},{\"Region\":\"USA-East\",\"GDP\":10000},{\"Region\":\"USA-West\",\"GDP\":14000},{\"Region\":\"Europe-Western\",\"GDP\":300},{\"Region\":\"Europe-Eastern\",\"GDP\":200},{\"Region\":\"Europe-Northern\",\"GDP\":100},{\"Region\":\"Europe-Southern\",\"GDP\":150},{\"Region\":\"Asia\",\"GDP\":85000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Region\":\"Australia-New South Wales\",\"Tourism Revenue\":8000},{\"Region\":\"Australia-Victoria\",\"Tourism Revenue\":7500},{\"Region\":\"Australia-Queensland\",\"Tourism Revenue\":6800},{\"Region\":\"Australia-Western Australia\",\"Tourism Revenue\":4000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Region\":\"Africa/Northern\",\"Population\":20000},{\"Region\":\"Africa/Western\",\"Population\":15000},{\"Region\":\"Africa/Eastern\",\"Population\":18000},{\"Region\":\"Africa/Southern\",\"Population\":10000},{\"Region\":\"Africa/Central\",\"Population\":12000},{\"Continent\":\"Asia\",\"Population\":4500},{\"Continent\":\"Africa\",\"Population\":1300},{\"Continent\":\"Europe\",\"Population\":750},{\"Continent\":\"America\",\"Population\":1000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"地区\":\"Europe-Germany\",\"科技支出\":700000},{\"地区\":\"Europe-France\",\"科技支出\":600000},{\"地区\":\"Europe-Italy\",\"科技支出\":500000},{\"地区\":\"Europe-UK\",\"科技支出\":550000},{\"地区\":\"北美-美国\",\"科技支出\":500000},{\"地区\":\"北美-加拿大\",\"科技支出\":80000},{\"地区\":\"北美-墨西哥\",\"科技支出\":20000},{\"地区\":\"Oceania-New Zealand\",\"科技支出\":10000},{\"地区\":\"Oceania-Fiji\",\"科技支出\":500},{\"地区\":\"Oceania-Samoa\",\"科技支出\":400}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"推荐图表{\"data\":[{\"行业\":\"科技\",\"投资金额\":200},{\"行业\":\"金融\",\"投资金额\":150},{\"行业\":\"教育\",\"投资金额\":50},{\"行业\":\"医疗\",\"投资金额\":100},{\"行业\":\"电子产品\",\"投资金额\":30},{\"行业\":\"家电\",\"投资金额\":20},{\"行业\":\"家具\",\"投资金额\":10},{\"行业\":\"服装\",\"投资金额\":40}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"{\"data\":[{\"Region\":\"USA-North\",\"GDP\":15000},{\"Region\":\"USA-South\",\"GDP\":12000},{\"Region\":\"USA-East\",\"GDP\":10000},{\"Region\":\"USA-West\",\"GDP\":14000},{\"Region\":\"Europe-Western\",\"GDP\":300},{\"Region\":\"Europe-Eastern\",\"GDP\":200},{\"Region\":\"Europe-Northern\",\"GDP\":100},{\"Region\":\"Europe-Southern\",\"GDP\":150},{\"Region\":\"Asia\",\"GDP\":85000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"可视化{\"data\":[{\"Region\":\"Australia-New South Wales\",\"Tourism Revenue\":8000},{\"Region\":\"Australia-Victoria\",\"Tourism Revenue\":7500},{\"Region\":\"Australia-Queensland\",\"Tourism Revenue\":6800},{\"Region\":\"Australia-Western Australia\",\"Tourism Revenue\":4000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"展示{\"data\":[{\"Region\":\"Africa/Northern\",\"Population\":20000},{\"Region\":\"Africa/Western\",\"Population\":15000},{\"Region\":\"Africa/Eastern\",\"Population\":18000},{\"Region\":\"Africa/Southern\",\"Population\":10000},{\"Region\":\"Africa/Central\",\"Population\":12000},{\"Continent\":\"Asia\",\"Population\":4500},{\"Continent\":\"Africa\",\"Population\":1300},{\"Continent\":\"Europe\",\"Population\":750},{\"Continent\":\"America\",\"Population\":1000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"地区\":\"Europe-Germany\",\"科技支出\":700000},{\"地区\":\"Europe-France\",\"科技支出\":600000},{\"地区\":\"Europe-Italy\",\"科技支出\":500000},{\"地区\":\"Europe-UK\",\"科技支出\":550000},{\"地区\":\"北美-美国\",\"科技支出\":500000},{\"地区\":\"北美-加拿大\",\"科技支出\":80000},{\"地区\":\"北美-墨西哥\",\"科技支出\":20000},{\"地区\":\"Oceania-New Zealand\",\"科技支出\":10000},{\"地区\":\"Oceania-Fiji\",\"科技支出\":500},{\"地区\":\"Oceania-Samoa\",\"科技支出\":400}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"可视化{\"data\":[{\"行业\":\"科技\",\"投资金额\":200},{\"行业\":\"金融\",\"投资金额\":150},{\"行业\":\"教育\",\"投资金额\":50},{\"行业\":\"医疗\",\"投资金额\":100},{\"行业\":\"电子产品\",\"投资金额\":30},{\"行业\":\"家电\",\"投资金额\":20},{\"行业\":\"家具\",\"投资金额\":10},{\"行业\":\"服装\",\"投资金额\":40}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"可视化{\"data\":[{\"Region\":\"USA-North\",\"GDP\":15000},{\"Region\":\"USA-South\",\"GDP\":12000},{\"Region\":\"USA-East\",\"GDP\":10000},{\"Region\":\"USA-West\",\"GDP\":14000},{\"Region\":\"Europe-Western\",\"GDP\":300},{\"Region\":\"Europe-Eastern\",\"GDP\":200},{\"Region\":\"Europe-Northern\",\"GDP\":100},{\"Region\":\"Europe-Southern\",\"GDP\":150},{\"Region\":\"Asia\",\"GDP\":85000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Region\":\"Australia-New South Wales\",\"Tourism Revenue\":8000},{\"Region\":\"Australia-Victoria\",\"Tourism Revenue\":7500},{\"Region\":\"Australia-Queensland\",\"Tourism Revenue\":6800},{\"Region\":\"Australia-Western Australia\",\"Tourism Revenue\":4000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"推荐图表{\"data\":[{\"Region\":\"Africa/Northern\",\"Population\":20000},{\"Region\":\"Africa/Western\",\"Population\":15000},{\"Region\":\"Africa/Eastern\",\"Population\":18000},{\"Region\":\"Africa/Southern\",\"Population\":10000},{\"Region\":\"Africa/Central\",\"Population\":12000},{\"Continent\":\"Asia\",\"Population\":4500},{\"Continent\":\"Africa\",\"Population\":1300},{\"Continent\":\"Europe\",\"Population\":750},{\"Continent\":\"America\",\"Population\":1000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"可视化{\"data\":[{\"地区\":\"Europe-Germany\",\"科技支出\":700000},{\"地区\":\"Europe-France\",\"科技支出\":600000},{\"地区\":\"Europe-Italy\",\"科技支出\":500000},{\"地区\":\"Europe-UK\",\"科技支出\":550000},{\"地区\":\"北美-美国\",\"科技支出\":500000},{\"地区\":\"北美-加拿大\",\"科技支出\":80000},{\"地区\":\"北美-墨西哥\",\"科技支出\":20000},{\"地区\":\"Oceania-New Zealand\",\"科技支出\":10000},{\"地区\":\"Oceania-Fiji\",\"科技支出\":500},{\"地区\":\"Oceania-Samoa\",\"科技支出\":400}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"行业\":\"科技\",\"投资金额\":200},{\"行业\":\"金融\",\"投资金额\":150},{\"行业\":\"教育\",\"投资金额\":50},{\"行业\":\"医疗\",\"投资金额\":100},{\"行业\":\"电子产品\",\"投资金额\":30},{\"行业\":\"家电\",\"投资金额\":20},{\"行业\":\"家具\",\"投资金额\":10},{\"行业\":\"服装\",\"投资金额\":40}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Region\":\"USA-North\",\"GDP\":15000},{\"Region\":\"USA-South\",\"GDP\":12000},{\"Region\":\"USA-East\",\"GDP\":10000},{\"Region\":\"USA-West\",\"GDP\":14000},{\"Region\":\"Europe-Western\",\"GDP\":300},{\"Region\":\"Europe-Eastern\",\"GDP\":200},{\"Region\":\"Europe-Northern\",\"GDP\":100},{\"Region\":\"Europe-Southern\",\"GDP\":150},{\"Region\":\"Asia\",\"GDP\":85000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"展示{\"data\":[{\"Region\":\"Australia-New South Wales\",\"Tourism Revenue\":8000},{\"Region\":\"Australia-Victoria\",\"Tourism Revenue\":7500},{\"Region\":\"Australia-Queensland\",\"Tourism Revenue\":6800},{\"Region\":\"Australia-Western Australia\",\"Tourism Revenue\":4000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"展示{\"data\":[{\"Region\":\"Africa/Northern\",\"Population\":20000},{\"Region\":\"Africa/Western\",\"Population\":15000},{\"Region\":\"Africa/Eastern\",\"Population\":18000},{\"Region\":\"Africa/Southern\",\"Population\":10000},{\"Region\":\"Africa/Central\",\"Population\":12000},{\"Continent\":\"Asia\",\"Population\":4500},{\"Continent\":\"Africa\",\"Population\":1300},{\"Continent\":\"Europe\",\"Population\":750},{\"Continent\":\"America\",\"Population\":1000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"展示{\"data\":[{\"地区\":\"Europe-Germany\",\"科技支出\":700000},{\"地区\":\"Europe-France\",\"科技支出\":600000},{\"地区\":\"Europe-Italy\",\"科技支出\":500000},{\"地区\":\"Europe-UK\",\"科技支出\":550000},{\"地区\":\"北美-美国\",\"科技支出\":500000},{\"地区\":\"北美-加拿大\",\"科技支出\":80000},{\"地区\":\"北美-墨西哥\",\"科技支出\":20000},{\"地区\":\"Oceania-New Zealand\",\"科技支出\":10000},{\"地区\":\"Oceania-Fiji\",\"科技支出\":500},{\"地区\":\"Oceania-Samoa\",\"科技支出\":400}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"行业\":\"科技\",\"投资金额\":200},{\"行业\":\"金融\",\"投资金额\":150},{\"行业\":\"教育\",\"投资金额\":50},{\"行业\":\"医疗\",\"投资金额\":100},{\"行业\":\"电子产品\",\"投资金额\":30},{\"行业\":\"家电\",\"投资金额\":20},{\"行业\":\"家具\",\"投资金额\":10},{\"行业\":\"服装\",\"投资金额\":40}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Region\":\"USA-North\",\"GDP\":15000},{\"Region\":\"USA-South\",\"GDP\":12000},{\"Region\":\"USA-East\",\"GDP\":10000},{\"Region\":\"USA-West\",\"GDP\":14000},{\"Region\":\"Europe-Western\",\"GDP\":300},{\"Region\":\"Europe-Eastern\",\"GDP\":200},{\"Region\":\"Europe-Northern\",\"GDP\":100},{\"Region\":\"Europe-Southern\",\"GDP\":150},{\"Region\":\"Asia\",\"GDP\":85000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"{\"data\":[{\"Region\":\"Australia-New South Wales\",\"Tourism Revenue\":8000},{\"Region\":\"Australia-Victoria\",\"Tourism Revenue\":7500},{\"Region\":\"Australia-Queensland\",\"Tourism Revenue\":6800},{\"Region\":\"Australia-Western Australia\",\"Tourism Revenue\":4000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"{\"data\":[{\"Region\":\"Africa/Northern\",\"Population\":20000},{\"Region\":\"Africa/Western\",\"Population\":15000},{\"Region\":\"Africa/Eastern\",\"Population\":18000},{\"Region\":\"Africa/Southern\",\"Population\":10000},{\"Region\":\"Africa/Central\",\"Population\":12000},{\"Continent\":\"Asia\",\"Population\":4500},{\"Continent\":\"Africa\",\"Population\":1300},{\"Continent\":\"Europe\",\"Population\":750},{\"Continent\":\"America\",\"Population\":1000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"推荐图表{\"data\":[{\"地区\":\"Europe-Germany\",\"科技支出\":700000},{\"地区\":\"Europe-France\",\"科技支出\":600000},{\"地区\":\"Europe-Italy\",\"科技支出\":500000},{\"地区\":\"Europe-UK\",\"科技支出\":550000},{\"地区\":\"北美-美国\",\"科技支出\":500000},{\"地区\":\"北美-加拿大\",\"科技支出\":80000},{\"地区\":\"北美-墨西哥\",\"科技支出\":20000},{\"地区\":\"Oceania-New Zealand\",\"科技支出\":10000},{\"地区\":\"Oceania-Fiji\",\"科技支出\":500},{\"地区\":\"Oceania-Samoa\",\"科技支出\":400}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"行业\":\"科技\",\"投资金额\":200},{\"行业\":\"金融\",\"投资金额\":150},{\"行业\":\"教育\",\"投资金额\":50},{\"行业\":\"医疗\",\"投资金额\":100},{\"行业\":\"电子产品\",\"投资金额\":30},{\"行业\":\"家电\",\"投资金额\":20},{\"行业\":\"家具\",\"投资金额\":10},{\"行业\":\"服装\",\"投资金额\":40}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"{\"data\":[{\"Region\":\"USA-North\",\"GDP\":15000},{\"Region\":\"USA-South\",\"GDP\":12000},{\"Region\":\"USA-East\",\"GDP\":10000},{\"Region\":\"USA-West\",\"GDP\":14000},{\"Region\":\"Europe-Western\",\"GDP\":300},{\"Region\":\"Europe-Eastern\",\"GDP\":200},{\"Region\":\"Europe-Northern\",\"GDP\":100},{\"Region\":\"Europe-Southern\",\"GDP\":150},{\"Region\":\"Asia\",\"GDP\":85000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"展示{\"data\":[{\"Region\":\"Australia-New South Wales\",\"Tourism Revenue\":8000},{\"Region\":\"Australia-Victoria\",\"Tourism Revenue\":7500},{\"Region\":\"Australia-Queensland\",\"Tourism Revenue\":6800},{\"Region\":\"Australia-Western Australia\",\"Tourism Revenue\":4000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"推荐图表{\"data\":[{\"Region\":\"Africa/Northern\",\"Population\":20000},{\"Region\":\"Africa/Western\",\"Population\":15000},{\"Region\":\"Africa/Eastern\",\"Population\":18000},{\"Region\":\"Africa/Southern\",\"Population\":10000},{\"Region\":\"Africa/Central\",\"Population\":12000},{\"Continent\":\"Asia\",\"Population\":4500},{\"Continent\":\"Africa\",\"Population\":1300},{\"Continent\":\"Europe\",\"Population\":750},{\"Continent\":\"America\",\"Population\":1000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"地区\":\"Europe-Germany\",\"科技支出\":700000},{\"地区\":\"Europe-France\",\"科技支出\":600000},{\"地区\":\"Europe-Italy\",\"科技支出\":500000},{\"地区\":\"Europe-UK\",\"科技支出\":550000},{\"地区\":\"北美-美国\",\"科技支出\":500000},{\"地区\":\"北美-加拿大\",\"科技支出\":80000},{\"地区\":\"北美-墨西哥\",\"科技支出\":20000},{\"地区\":\"Oceania-New Zealand\",\"科技支出\":10000},{\"地区\":\"Oceania-Fiji\",\"科技支出\":500},{\"地区\":\"Oceania-Samoa\",\"科技支出\":400}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"{\"data\":[{\"行业\":\"科技\",\"投资金额\":200},{\"行业\":\"金融\",\"投资金额\":150},{\"行业\":\"教育\",\"投资金额\":50},{\"行业\":\"医疗\",\"投资金额\":100},{\"行业\":\"电子产品\",\"投资金额\":30},{\"行业\":\"家电\",\"投资金额\":20},{\"行业\":\"家具\",\"投资金额\":10},{\"行业\":\"服装\",\"投资金额\":40}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"展示{\"data\":[{\"Region\":\"USA-North\",\"GDP\":15000},{\"Region\":\"USA-South\",\"GDP\":12000},{\"Region\":\"USA-East\",\"GDP\":10000},{\"Region\":\"USA-West\",\"GDP\":14000},{\"Region\":\"Europe-Western\",\"GDP\":300},{\"Region\":\"Europe-Eastern\",\"GDP\":200},{\"Region\":\"Europe-Northern\",\"GDP\":100},{\"Region\":\"Europe-Southern\",\"GDP\":150},{\"Region\":\"Asia\",\"GDP\":85000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"可视化{\"data\":[{\"Region\":\"Australia-New South Wales\",\"Tourism Revenue\":8000},{\"Region\":\"Australia-Victoria\",\"Tourism Revenue\":7500},{\"Region\":\"Australia-Queensland\",\"Tourism Revenue\":6800},{\"Region\":\"Australia-Western Australia\",\"Tourism Revenue\":4000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Region\":\"Africa/Northern\",\"Population\":20000},{\"Region\":\"Africa/Western\",\"Population\":15000},{\"Region\":\"Africa/Eastern\",\"Population\":18000},{\"Region\":\"Africa/Southern\",\"Population\":10000},{\"Region\":\"Africa/Central\",\"Population\":12000},{\"Continent\":\"Asia\",\"Population\":4500},{\"Continent\":\"Africa\",\"Population\":1300},{\"Continent\":\"Europe\",\"Population\":750},{\"Continent\":\"America\",\"Population\":1000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"可视化{\"data\":[{\"地区\":\"Europe-Germany\",\"科技支出\":700000},{\"地区\":\"Europe-France\",\"科技支出\":600000},{\"地区\":\"Europe-Italy\",\"科技支出\":500000},{\"地区\":\"Europe-UK\",\"科技支出\":550000},{\"地区\":\"北美-美国\",\"科技支出\":500000},{\"地区\":\"北美-加拿大\",\"科技支出\":80000},{\"地区\":\"北美-墨西哥\",\"科技支出\":20000},{\"地区\":\"Oceania-New Zealand\",\"科技支出\":10000},{\"地区\":\"Oceania-Fiji\",\"科技支出\":500},{\"地区\":\"Oceania-Samoa\",\"科技支出\":400}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"推荐图表{\"data\":[{\"行业\":\"科技\",\"投资金额\":200},{\"行业\":\"金融\",\"投资金额\":150},{\"行业\":\"教育\",\"投资金额\":50},{\"行业\":\"医疗\",\"投资金额\":100},{\"行业\":\"电子产品\",\"投资金额\":30},{\"行业\":\"家电\",\"投资金额\":20},{\"行业\":\"家具\",\"投资金额\":10},{\"行业\":\"服装\",\"投资金额\":40}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Region\":\"USA-North\",\"GDP\":15000},{\"Region\":\"USA-South\",\"GDP\":12000},{\"Region\":\"USA-East\",\"GDP\":10000},{\"Region\":\"USA-West\",\"GDP\":14000},{\"Region\":\"Europe-Western\",\"GDP\":300},{\"Region\":\"Europe-Eastern\",\"GDP\":200},{\"Region\":\"Europe-Northern\",\"GDP\":100},{\"Region\":\"Europe-Southern\",\"GDP\":150},{\"Region\":\"Asia\",\"GDP\":85000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"{\"data\":[{\"Region\":\"Australia-New South Wales\",\"Tourism Revenue\":8000},{\"Region\":\"Australia-Victoria\",\"Tourism Revenue\":7500},{\"Region\":\"Australia-Queensland\",\"Tourism Revenue\":6800},{\"Region\":\"Australia-Western Australia\",\"Tourism Revenue\":4000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Region\":\"Africa/Northern\",\"Population\":20000},{\"Region\":\"Africa/Western\",\"Population\":15000},{\"Region\":\"Africa/Eastern\",\"Population\":18000},{\"Region\":\"Africa/Southern\",\"Population\":10000},{\"Region\":\"Africa/Central\",\"Population\":12000},{\"Continent\":\"Asia\",\"Population\":4500},{\"Continent\":\"Africa\",\"Population\":1300},{\"Continent\":\"Europe\",\"Population\":750},{\"Continent\":\"America\",\"Population\":1000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"地区\":\"Europe-Germany\",\"科技支出\":700000},{\"地区\":\"Europe-France\",\"科技支出\":600000},{\"地区\":\"Europe-Italy\",\"科技支出\":500000},{\"地区\":\"Europe-UK\",\"科技支出\":550000},{\"地区\":\"北美-美国\",\"科技支出\":500000},{\"地区\":\"北美-加拿大\",\"科技支出\":80000},{\"地区\":\"北美-墨西哥\",\"科技支出\":20000},{\"地区\":\"Oceania-New Zealand\",\"科技支出\":10000},{\"地区\":\"Oceania-Fiji\",\"科技支出\":500},{\"地区\":\"Oceania-Samoa\",\"科技支出\":400}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"行业\":\"科技\",\"投资金额\":200},{\"行业\":\"金融\",\"投资金额\":150},{\"行业\":\"教育\",\"投资金额\":50},{\"行业\":\"医疗\",\"投资金额\":100},{\"行业\":\"电子产品\",\"投资金额\":30},{\"行业\":\"家电\",\"投资金额\":20},{\"行业\":\"家具\",\"投资金额\":10},{\"行业\":\"服装\",\"投资金额\":40}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Region\":\"USA-North\",\"GDP\":15000},{\"Region\":\"USA-South\",\"GDP\":12000},{\"Region\":\"USA-East\",\"GDP\":10000},{\"Region\":\"USA-West\",\"GDP\":14000},{\"Region\":\"Europe-Western\",\"GDP\":300},{\"Region\":\"Europe-Eastern\",\"GDP\":200},{\"Region\":\"Europe-Northern\",\"GDP\":100},{\"Region\":\"Europe-Southern\",\"GDP\":150},{\"Region\":\"Asia\",\"GDP\":85000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"推荐图表{\"data\":[{\"Region\":\"Australia-New South Wales\",\"Tourism Revenue\":8000},{\"Region\":\"Australia-Victoria\",\"Tourism Revenue\":7500},{\"Region\":\"Australia-Queensland\",\"Tourism Revenue\":6800},{\"Region\":\"Australia-Western Australia\",\"Tourism Revenue\":4000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"推荐图表{\"data\":[{\"Region\":\"Africa/Northern\",\"Population\":20000},{\"Region\":\"Africa/Western\",\"Population\":15000},{\"Region\":\"Africa/Eastern\",\"Population\":18000},{\"Region\":\"Africa/Southern\",\"Population\":10000},{\"Region\":\"Africa/Central\",\"Population\":12000},{\"Continent\":\"Asia\",\"Population\":4500},{\"Continent\":\"Africa\",\"Population\":1300},{\"Continent\":\"Europe\",\"Population\":750},{\"Continent\":\"America\",\"Population\":1000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"地区\":\"Europe-Germany\",\"科技支出\":700000},{\"地区\":\"Europe-France\",\"科技支出\":600000},{\"地区\":\"Europe-Italy\",\"科技支出\":500000},{\"地区\":\"Europe-UK\",\"科技支出\":550000},{\"地区\":\"北美-美国\",\"科技支出\":500000},{\"地区\":\"北美-加拿大\",\"科技支出\":80000},{\"地区\":\"北美-墨西哥\",\"科技支出\":20000},{\"地区\":\"Oceania-New Zealand\",\"科技支出\":10000},{\"地区\":\"Oceania-Fiji\",\"科技支出\":500},{\"地区\":\"Oceania-Samoa\",\"科技支出\":400}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"{\"data\":[{\"行业\":\"科技\",\"投资金额\":200},{\"行业\":\"金融\",\"投资金额\":150},{\"行业\":\"教育\",\"投资金额\":50},{\"行业\":\"医疗\",\"投资金额\":100},{\"行业\":\"电子产品\",\"投资金额\":30},{\"行业\":\"家电\",\"投资金额\":20},{\"行业\":\"家具\",\"投资金额\":10},{\"行业\":\"服装\",\"投资金额\":40}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Region\":\"USA-North\",\"GDP\":15000},{\"Region\":\"USA-South\",\"GDP\":12000},{\"Region\":\"USA-East\",\"GDP\":10000},{\"Region\":\"USA-West\",\"GDP\":14000},{\"Region\":\"Europe-Western\",\"GDP\":300},{\"Region\":\"Europe-Eastern\",\"GDP\":200},{\"Region\":\"Europe-Northern\",\"GDP\":100},{\"Region\":\"Europe-Southern\",\"GDP\":150},{\"Region\":\"Asia\",\"GDP\":85000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Region\":\"Australia-New South Wales\",\"Tourism Revenue\":8000},{\"Region\":\"Australia-Victoria\",\"Tourism Revenue\":7500},{\"Region\":\"Australia-Queensland\",\"Tourism Revenue\":6800},{\"Region\":\"Australia-Western Australia\",\"Tourism Revenue\":4000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"推荐图表{\"data\":[{\"Region\":\"Africa/Northern\",\"Population\":20000},{\"Region\":\"Africa/Western\",\"Population\":15000},{\"Region\":\"Africa/Eastern\",\"Population\":18000},{\"Region\":\"Africa/Southern\",\"Population\":10000},{\"Region\":\"Africa/Central\",\"Population\":12000},{\"Continent\":\"Asia\",\"Population\":4500},{\"Continent\":\"Africa\",\"Population\":1300},{\"Continent\":\"Europe\",\"Population\":750},{\"Continent\":\"America\",\"Population\":1000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"可视化{\"data\":[{\"地区\":\"Europe-Germany\",\"科技支出\":700000},{\"地区\":\"Europe-France\",\"科技支出\":600000},{\"地区\":\"Europe-Italy\",\"科技支出\":500000},{\"地区\":\"Europe-UK\",\"科技支出\":550000},{\"地区\":\"北美-美国\",\"科技支出\":500000},{\"地区\":\"北美-加拿大\",\"科技支出\":80000},{\"地区\":\"北美-墨西哥\",\"科技支出\":20000},{\"地区\":\"Oceania-New Zealand\",\"科技支出\":10000},{\"地区\":\"Oceania-Fiji\",\"科技支出\":500},{\"地区\":\"Oceania-Samoa\",\"科技支出\":400}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"{\"data\":[{\"行业\":\"科技\",\"投资金额\":200},{\"行业\":\"金融\",\"投资金额\":150},{\"行业\":\"教育\",\"投资金额\":50},{\"行业\":\"医疗\",\"投资金额\":100},{\"行业\":\"电子产品\",\"投资金额\":30},{\"行业\":\"家电\",\"投资金额\":20},{\"行业\":\"家具\",\"投资金额\":10},{\"行业\":\"服装\",\"投资金额\":40}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"推荐图表{\"data\":[{\"Region\":\"USA-North\",\"GDP\":15000},{\"Region\":\"USA-South\",\"GDP\":12000},{\"Region\":\"USA-East\",\"GDP\":10000},{\"Region\":\"USA-West\",\"GDP\":14000},{\"Region\":\"Europe-Western\",\"GDP\":300},{\"Region\":\"Europe-Eastern\",\"GDP\":200},{\"Region\":\"Europe-Northern\",\"GDP\":100},{\"Region\":\"Europe-Southern\",\"GDP\":150},{\"Region\":\"Asia\",\"GDP\":85000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"推荐图表{\"data\":[{\"Region\":\"Australia-New South Wales\",\"Tourism Revenue\":8000},{\"Region\":\"Australia-Victoria\",\"Tourism Revenue\":7500},{\"Region\":\"Australia-Queensland\",\"Tourism Revenue\":6800},{\"Region\":\"Australia-Western Australia\",\"Tourism Revenue\":4000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"{\"data\":[{\"Region\":\"Africa/Northern\",\"Population\":20000},{\"Region\":\"Africa/Western\",\"Population\":15000},{\"Region\":\"Africa/Eastern\",\"Population\":18000},{\"Region\":\"Africa/Southern\",\"Population\":10000},{\"Region\":\"Africa/Central\",\"Population\":12000},{\"Continent\":\"Asia\",\"Population\":4500},{\"Continent\":\"Africa\",\"Population\":1300},{\"Continent\":\"Europe\",\"Population\":750},{\"Continent\":\"America\",\"Population\":1000}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"展示{\"data\":[{\"地区\":\"Europe-Germany\",\"科技支出\":700000},{\"地区\":\"Europe-France\",\"科技支出\":600000},{\"地区\":\"Europe-Italy\",\"科技支出\":500000},{\"地区\":\"Europe-UK\",\"科技支出\":550000},{\"地区\":\"北美-美国\",\"科技支出\":500000},{\"地区\":\"北美-加拿大\",\"科技支出\":80000},{\"地区\":\"北美-墨西哥\",\"科技支出\":20000},{\"地区\":\"Oceania-New Zealand\",\"科技支出\":10000},{\"地区\":\"Oceania-Fiji\",\"科技支出\":500},{\"地区\":\"Oceania-Samoa\",\"科技支出\":400}]}","answer":"[{\"type\":\"treemap\"}]"} +{"prompt":"可视化下列数据{\"data\":[{\"developer\":\"Microsoft\",\"product\":\"Windows\"},{\"developer\":\"Apple\",\"product\":\"macOS\"},{\"developer\":\"Google\",\"product\":\"Android\"},{\"developer\":\"Ubuntu\",\"product\":\"Linux\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"developer\",\"target\":\"product\"}}"} +{"prompt":"可视化{\"data\":[{\"source\":\"Rome\",\"target\":\"Milan\"},{\"source\":\"Milan\",\"target\":\"Venice\"},{\"source\":\"Venice\",\"target\":\"Florence\"},{\"source\":\"Florence\",\"target\":\"Rome\"},{\"source\":\"Rome\",\"target\":\"Naples\"},{\"source\":\"Naples\",\"target\":\"Sicily\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"起点\":\"伦敦\",\"终点\":\"曼彻斯特\"},{\"起点\":\"曼彻斯特\",\"终点\":\"利兹\"},{\"起点\":\"利兹\",\"终点\":\"约克\"},{\"起点\":\"约克\",\"终点\":\"纽卡斯尔\"},{\"起点\":\"纽卡斯尔\",\"终点\":\"爱丁堡\"},{\"起点\":\"爱丁堡\",\"终点\":\"格拉斯哥\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"起点\",\"target\":\"终点\"}}"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"出发\":\"北京总部\",\"到达\":\"上海旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"南京旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"杭州旗舰店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"扬州门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"盐城门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"南通门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"苏州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"湖州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"金华门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"宁波门店\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"出发\",\"target\":\"到达\"}}"} +{"prompt":"{\"data\":[{\"发送人\":\"张伟\",\"接收人\":\"李强\",\"邮件类型\":\"工作\"},{\"发送人\":\"李强\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"},{\"发送人\":\"王芳\",\"接收人\":\"张伟\",\"邮件类型\":\"工作\"},{\"发送人\":\"张伟\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"发送人\",\"target\":\"接收人\",\"label\":\"邮件类型\"}}"} +{"prompt":"可视化{\"data\":[{\"developer\":\"Microsoft\",\"product\":\"Windows\"},{\"developer\":\"Apple\",\"product\":\"macOS\"},{\"developer\":\"Google\",\"product\":\"Android\"},{\"developer\":\"Ubuntu\",\"product\":\"Linux\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"developer\",\"target\":\"product\"}}"} +{"prompt":"{\"data\":[{\"source\":\"Rome\",\"target\":\"Milan\"},{\"source\":\"Milan\",\"target\":\"Venice\"},{\"source\":\"Venice\",\"target\":\"Florence\"},{\"source\":\"Florence\",\"target\":\"Rome\"},{\"source\":\"Rome\",\"target\":\"Naples\"},{\"source\":\"Naples\",\"target\":\"Sicily\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}"} +{"prompt":"{\"data\":[{\"起点\":\"伦敦\",\"终点\":\"曼彻斯特\"},{\"起点\":\"曼彻斯特\",\"终点\":\"利兹\"},{\"起点\":\"利兹\",\"终点\":\"约克\"},{\"起点\":\"约克\",\"终点\":\"纽卡斯尔\"},{\"起点\":\"纽卡斯尔\",\"终点\":\"爱丁堡\"},{\"起点\":\"爱丁堡\",\"终点\":\"格拉斯哥\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"起点\",\"target\":\"终点\"}}"} +{"prompt":"{\"data\":[{\"出发\":\"北京总部\",\"到达\":\"上海旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"南京旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"杭州旗舰店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"扬州门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"盐城门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"南通门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"苏州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"湖州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"金华门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"宁波门店\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"出发\",\"target\":\"到达\"}}"} +{"prompt":"可视化{\"data\":[{\"发送人\":\"张伟\",\"接收人\":\"李强\",\"邮件类型\":\"工作\"},{\"发送人\":\"李强\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"},{\"发送人\":\"王芳\",\"接收人\":\"张伟\",\"邮件类型\":\"工作\"},{\"发送人\":\"张伟\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"发送人\",\"target\":\"接收人\",\"label\":\"邮件类型\"}}"} +{"prompt":"可视化下列数据{\"data\":[{\"developer\":\"Microsoft\",\"product\":\"Windows\"},{\"developer\":\"Apple\",\"product\":\"macOS\"},{\"developer\":\"Google\",\"product\":\"Android\"},{\"developer\":\"Ubuntu\",\"product\":\"Linux\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"developer\",\"target\":\"product\"}}"} +{"prompt":"展示{\"data\":[{\"source\":\"Rome\",\"target\":\"Milan\"},{\"source\":\"Milan\",\"target\":\"Venice\"},{\"source\":\"Venice\",\"target\":\"Florence\"},{\"source\":\"Florence\",\"target\":\"Rome\"},{\"source\":\"Rome\",\"target\":\"Naples\"},{\"source\":\"Naples\",\"target\":\"Sicily\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}"} +{"prompt":"推荐图表{\"data\":[{\"起点\":\"伦敦\",\"终点\":\"曼彻斯特\"},{\"起点\":\"曼彻斯特\",\"终点\":\"利兹\"},{\"起点\":\"利兹\",\"终点\":\"约克\"},{\"起点\":\"约克\",\"终点\":\"纽卡斯尔\"},{\"起点\":\"纽卡斯尔\",\"终点\":\"爱丁堡\"},{\"起点\":\"爱丁堡\",\"终点\":\"格拉斯哥\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"起点\",\"target\":\"终点\"}}"} +{"prompt":"可视化下列数据{\"data\":[{\"出发\":\"北京总部\",\"到达\":\"上海旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"南京旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"杭州旗舰店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"扬州门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"盐城门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"南通门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"苏州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"湖州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"金华门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"宁波门店\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"出发\",\"target\":\"到达\"}}"} +{"prompt":"可视化下列数据{\"data\":[{\"发送人\":\"张伟\",\"接收人\":\"李强\",\"邮件类型\":\"工作\"},{\"发送人\":\"李强\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"},{\"发送人\":\"王芳\",\"接收人\":\"张伟\",\"邮件类型\":\"工作\"},{\"发送人\":\"张伟\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"发送人\",\"target\":\"接收人\",\"label\":\"邮件类型\"}}"} +{"prompt":"可视化{\"data\":[{\"developer\":\"Microsoft\",\"product\":\"Windows\"},{\"developer\":\"Apple\",\"product\":\"macOS\"},{\"developer\":\"Google\",\"product\":\"Android\"},{\"developer\":\"Ubuntu\",\"product\":\"Linux\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"developer\",\"target\":\"product\"}}"} +{"prompt":"可视化下列数据{\"data\":[{\"source\":\"Rome\",\"target\":\"Milan\"},{\"source\":\"Milan\",\"target\":\"Venice\"},{\"source\":\"Venice\",\"target\":\"Florence\"},{\"source\":\"Florence\",\"target\":\"Rome\"},{\"source\":\"Rome\",\"target\":\"Naples\"},{\"source\":\"Naples\",\"target\":\"Sicily\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}"} +{"prompt":"{\"data\":[{\"起点\":\"伦敦\",\"终点\":\"曼彻斯特\"},{\"起点\":\"曼彻斯特\",\"终点\":\"利兹\"},{\"起点\":\"利兹\",\"终点\":\"约克\"},{\"起点\":\"约克\",\"终点\":\"纽卡斯尔\"},{\"起点\":\"纽卡斯尔\",\"终点\":\"爱丁堡\"},{\"起点\":\"爱丁堡\",\"终点\":\"格拉斯哥\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"起点\",\"target\":\"终点\"}}"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"出发\":\"北京总部\",\"到达\":\"上海旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"南京旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"杭州旗舰店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"扬州门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"盐城门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"南通门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"苏州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"湖州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"金华门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"宁波门店\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"出发\",\"target\":\"到达\"}}"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"发送人\":\"张伟\",\"接收人\":\"李强\",\"邮件类型\":\"工作\"},{\"发送人\":\"李强\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"},{\"发送人\":\"王芳\",\"接收人\":\"张伟\",\"邮件类型\":\"工作\"},{\"发送人\":\"张伟\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"发送人\",\"target\":\"接收人\",\"label\":\"邮件类型\"}}"} +{"prompt":"可视化{\"data\":[{\"developer\":\"Microsoft\",\"product\":\"Windows\"},{\"developer\":\"Apple\",\"product\":\"macOS\"},{\"developer\":\"Google\",\"product\":\"Android\"},{\"developer\":\"Ubuntu\",\"product\":\"Linux\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"developer\",\"target\":\"product\"}}"} +{"prompt":"推荐图表{\"data\":[{\"source\":\"Rome\",\"target\":\"Milan\"},{\"source\":\"Milan\",\"target\":\"Venice\"},{\"source\":\"Venice\",\"target\":\"Florence\"},{\"source\":\"Florence\",\"target\":\"Rome\"},{\"source\":\"Rome\",\"target\":\"Naples\"},{\"source\":\"Naples\",\"target\":\"Sicily\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}"} +{"prompt":"推荐图表{\"data\":[{\"起点\":\"伦敦\",\"终点\":\"曼彻斯特\"},{\"起点\":\"曼彻斯特\",\"终点\":\"利兹\"},{\"起点\":\"利兹\",\"终点\":\"约克\"},{\"起点\":\"约克\",\"终点\":\"纽卡斯尔\"},{\"起点\":\"纽卡斯尔\",\"终点\":\"爱丁堡\"},{\"起点\":\"爱丁堡\",\"终点\":\"格拉斯哥\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"起点\",\"target\":\"终点\"}}"} +{"prompt":"{\"data\":[{\"出发\":\"北京总部\",\"到达\":\"上海旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"南京旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"杭州旗舰店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"扬州门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"盐城门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"南通门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"苏州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"湖州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"金华门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"宁波门店\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"出发\",\"target\":\"到达\"}}"} +{"prompt":"{\"data\":[{\"发送人\":\"张伟\",\"接收人\":\"李强\",\"邮件类型\":\"工作\"},{\"发送人\":\"李强\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"},{\"发送人\":\"王芳\",\"接收人\":\"张伟\",\"邮件类型\":\"工作\"},{\"发送人\":\"张伟\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"发送人\",\"target\":\"接收人\",\"label\":\"邮件类型\"}}"} +{"prompt":"{\"data\":[{\"developer\":\"Microsoft\",\"product\":\"Windows\"},{\"developer\":\"Apple\",\"product\":\"macOS\"},{\"developer\":\"Google\",\"product\":\"Android\"},{\"developer\":\"Ubuntu\",\"product\":\"Linux\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"developer\",\"target\":\"product\"}}"} +{"prompt":"可视化下列数据{\"data\":[{\"source\":\"Rome\",\"target\":\"Milan\"},{\"source\":\"Milan\",\"target\":\"Venice\"},{\"source\":\"Venice\",\"target\":\"Florence\"},{\"source\":\"Florence\",\"target\":\"Rome\"},{\"source\":\"Rome\",\"target\":\"Naples\"},{\"source\":\"Naples\",\"target\":\"Sicily\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"起点\":\"伦敦\",\"终点\":\"曼彻斯特\"},{\"起点\":\"曼彻斯特\",\"终点\":\"利兹\"},{\"起点\":\"利兹\",\"终点\":\"约克\"},{\"起点\":\"约克\",\"终点\":\"纽卡斯尔\"},{\"起点\":\"纽卡斯尔\",\"终点\":\"爱丁堡\"},{\"起点\":\"爱丁堡\",\"终点\":\"格拉斯哥\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"起点\",\"target\":\"终点\"}}"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"出发\":\"北京总部\",\"到达\":\"上海旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"南京旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"杭州旗舰店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"扬州门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"盐城门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"南通门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"苏州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"湖州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"金华门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"宁波门店\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"出发\",\"target\":\"到达\"}}"} +{"prompt":"可视化{\"data\":[{\"发送人\":\"张伟\",\"接收人\":\"李强\",\"邮件类型\":\"工作\"},{\"发送人\":\"李强\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"},{\"发送人\":\"王芳\",\"接收人\":\"张伟\",\"邮件类型\":\"工作\"},{\"发送人\":\"张伟\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"发送人\",\"target\":\"接收人\",\"label\":\"邮件类型\"}}"} +{"prompt":"{\"data\":[{\"developer\":\"Microsoft\",\"product\":\"Windows\"},{\"developer\":\"Apple\",\"product\":\"macOS\"},{\"developer\":\"Google\",\"product\":\"Android\"},{\"developer\":\"Ubuntu\",\"product\":\"Linux\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"developer\",\"target\":\"product\"}}"} +{"prompt":"推荐图表{\"data\":[{\"source\":\"Rome\",\"target\":\"Milan\"},{\"source\":\"Milan\",\"target\":\"Venice\"},{\"source\":\"Venice\",\"target\":\"Florence\"},{\"source\":\"Florence\",\"target\":\"Rome\"},{\"source\":\"Rome\",\"target\":\"Naples\"},{\"source\":\"Naples\",\"target\":\"Sicily\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}"} +{"prompt":"{\"data\":[{\"起点\":\"伦敦\",\"终点\":\"曼彻斯特\"},{\"起点\":\"曼彻斯特\",\"终点\":\"利兹\"},{\"起点\":\"利兹\",\"终点\":\"约克\"},{\"起点\":\"约克\",\"终点\":\"纽卡斯尔\"},{\"起点\":\"纽卡斯尔\",\"终点\":\"爱丁堡\"},{\"起点\":\"爱丁堡\",\"终点\":\"格拉斯哥\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"起点\",\"target\":\"终点\"}}"} +{"prompt":"可视化下列数据{\"data\":[{\"出发\":\"北京总部\",\"到达\":\"上海旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"南京旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"杭州旗舰店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"扬州门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"盐城门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"南通门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"苏州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"湖州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"金华门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"宁波门店\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"出发\",\"target\":\"到达\"}}"} +{"prompt":"展示{\"data\":[{\"发送人\":\"张伟\",\"接收人\":\"李强\",\"邮件类型\":\"工作\"},{\"发送人\":\"李强\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"},{\"发送人\":\"王芳\",\"接收人\":\"张伟\",\"邮件类型\":\"工作\"},{\"发送人\":\"张伟\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"发送人\",\"target\":\"接收人\",\"label\":\"邮件类型\"}}"} +{"prompt":"可视化{\"data\":[{\"developer\":\"Microsoft\",\"product\":\"Windows\"},{\"developer\":\"Apple\",\"product\":\"macOS\"},{\"developer\":\"Google\",\"product\":\"Android\"},{\"developer\":\"Ubuntu\",\"product\":\"Linux\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"developer\",\"target\":\"product\"}}"} +{"prompt":"推荐图表{\"data\":[{\"source\":\"Rome\",\"target\":\"Milan\"},{\"source\":\"Milan\",\"target\":\"Venice\"},{\"source\":\"Venice\",\"target\":\"Florence\"},{\"source\":\"Florence\",\"target\":\"Rome\"},{\"source\":\"Rome\",\"target\":\"Naples\"},{\"source\":\"Naples\",\"target\":\"Sicily\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}"} +{"prompt":"推荐图表{\"data\":[{\"起点\":\"伦敦\",\"终点\":\"曼彻斯特\"},{\"起点\":\"曼彻斯特\",\"终点\":\"利兹\"},{\"起点\":\"利兹\",\"终点\":\"约克\"},{\"起点\":\"约克\",\"终点\":\"纽卡斯尔\"},{\"起点\":\"纽卡斯尔\",\"终点\":\"爱丁堡\"},{\"起点\":\"爱丁堡\",\"终点\":\"格拉斯哥\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"起点\",\"target\":\"终点\"}}"} +{"prompt":"推荐图表{\"data\":[{\"出发\":\"北京总部\",\"到达\":\"上海旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"南京旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"杭州旗舰店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"扬州门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"盐城门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"南通门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"苏州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"湖州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"金华门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"宁波门店\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"出发\",\"target\":\"到达\"}}"} +{"prompt":"推荐图表{\"data\":[{\"发送人\":\"张伟\",\"接收人\":\"李强\",\"邮件类型\":\"工作\"},{\"发送人\":\"李强\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"},{\"发送人\":\"王芳\",\"接收人\":\"张伟\",\"邮件类型\":\"工作\"},{\"发送人\":\"张伟\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"发送人\",\"target\":\"接收人\",\"label\":\"邮件类型\"}}"} +{"prompt":"推荐图表{\"data\":[{\"developer\":\"Microsoft\",\"product\":\"Windows\"},{\"developer\":\"Apple\",\"product\":\"macOS\"},{\"developer\":\"Google\",\"product\":\"Android\"},{\"developer\":\"Ubuntu\",\"product\":\"Linux\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"developer\",\"target\":\"product\"}}"} +{"prompt":"{\"data\":[{\"source\":\"Rome\",\"target\":\"Milan\"},{\"source\":\"Milan\",\"target\":\"Venice\"},{\"source\":\"Venice\",\"target\":\"Florence\"},{\"source\":\"Florence\",\"target\":\"Rome\"},{\"source\":\"Rome\",\"target\":\"Naples\"},{\"source\":\"Naples\",\"target\":\"Sicily\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}"} +{"prompt":"展示{\"data\":[{\"起点\":\"伦敦\",\"终点\":\"曼彻斯特\"},{\"起点\":\"曼彻斯特\",\"终点\":\"利兹\"},{\"起点\":\"利兹\",\"终点\":\"约克\"},{\"起点\":\"约克\",\"终点\":\"纽卡斯尔\"},{\"起点\":\"纽卡斯尔\",\"终点\":\"爱丁堡\"},{\"起点\":\"爱丁堡\",\"终点\":\"格拉斯哥\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"起点\",\"target\":\"终点\"}}"} +{"prompt":"{\"data\":[{\"出发\":\"北京总部\",\"到达\":\"上海旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"南京旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"杭州旗舰店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"扬州门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"盐城门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"南通门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"苏州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"湖州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"金华门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"宁波门店\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"出发\",\"target\":\"到达\"}}"} +{"prompt":"可视化{\"data\":[{\"发送人\":\"张伟\",\"接收人\":\"李强\",\"邮件类型\":\"工作\"},{\"发送人\":\"李强\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"},{\"发送人\":\"王芳\",\"接收人\":\"张伟\",\"邮件类型\":\"工作\"},{\"发送人\":\"张伟\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"发送人\",\"target\":\"接收人\",\"label\":\"邮件类型\"}}"} +{"prompt":"可视化下列数据{\"data\":[{\"developer\":\"Microsoft\",\"product\":\"Windows\"},{\"developer\":\"Apple\",\"product\":\"macOS\"},{\"developer\":\"Google\",\"product\":\"Android\"},{\"developer\":\"Ubuntu\",\"product\":\"Linux\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"developer\",\"target\":\"product\"}}"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"source\":\"Rome\",\"target\":\"Milan\"},{\"source\":\"Milan\",\"target\":\"Venice\"},{\"source\":\"Venice\",\"target\":\"Florence\"},{\"source\":\"Florence\",\"target\":\"Rome\"},{\"source\":\"Rome\",\"target\":\"Naples\"},{\"source\":\"Naples\",\"target\":\"Sicily\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}"} +{"prompt":"可视化下列数据{\"data\":[{\"起点\":\"伦敦\",\"终点\":\"曼彻斯特\"},{\"起点\":\"曼彻斯特\",\"终点\":\"利兹\"},{\"起点\":\"利兹\",\"终点\":\"约克\"},{\"起点\":\"约克\",\"终点\":\"纽卡斯尔\"},{\"起点\":\"纽卡斯尔\",\"终点\":\"爱丁堡\"},{\"起点\":\"爱丁堡\",\"终点\":\"格拉斯哥\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"起点\",\"target\":\"终点\"}}"} +{"prompt":"展示{\"data\":[{\"出发\":\"北京总部\",\"到达\":\"上海旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"南京旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"杭州旗舰店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"扬州门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"盐城门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"南通门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"苏州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"湖州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"金华门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"宁波门店\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"出发\",\"target\":\"到达\"}}"} +{"prompt":"推荐图表{\"data\":[{\"发送人\":\"张伟\",\"接收人\":\"李强\",\"邮件类型\":\"工作\"},{\"发送人\":\"李强\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"},{\"发送人\":\"王芳\",\"接收人\":\"张伟\",\"邮件类型\":\"工作\"},{\"发送人\":\"张伟\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"发送人\",\"target\":\"接收人\",\"label\":\"邮件类型\"}}"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"developer\":\"Microsoft\",\"product\":\"Windows\"},{\"developer\":\"Apple\",\"product\":\"macOS\"},{\"developer\":\"Google\",\"product\":\"Android\"},{\"developer\":\"Ubuntu\",\"product\":\"Linux\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"developer\",\"target\":\"product\"}}"} +{"prompt":"推荐图表{\"data\":[{\"source\":\"Rome\",\"target\":\"Milan\"},{\"source\":\"Milan\",\"target\":\"Venice\"},{\"source\":\"Venice\",\"target\":\"Florence\"},{\"source\":\"Florence\",\"target\":\"Rome\"},{\"source\":\"Rome\",\"target\":\"Naples\"},{\"source\":\"Naples\",\"target\":\"Sicily\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}"} +{"prompt":"可视化下列数据{\"data\":[{\"起点\":\"伦敦\",\"终点\":\"曼彻斯特\"},{\"起点\":\"曼彻斯特\",\"终点\":\"利兹\"},{\"起点\":\"利兹\",\"终点\":\"约克\"},{\"起点\":\"约克\",\"终点\":\"纽卡斯尔\"},{\"起点\":\"纽卡斯尔\",\"终点\":\"爱丁堡\"},{\"起点\":\"爱丁堡\",\"终点\":\"格拉斯哥\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"起点\",\"target\":\"终点\"}}"} +{"prompt":"展示{\"data\":[{\"出发\":\"北京总部\",\"到达\":\"上海旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"南京旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"杭州旗舰店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"扬州门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"盐城门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"南通门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"苏州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"湖州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"金华门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"宁波门店\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"出发\",\"target\":\"到达\"}}"} +{"prompt":"展示{\"data\":[{\"发送人\":\"张伟\",\"接收人\":\"李强\",\"邮件类型\":\"工作\"},{\"发送人\":\"李强\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"},{\"发送人\":\"王芳\",\"接收人\":\"张伟\",\"邮件类型\":\"工作\"},{\"发送人\":\"张伟\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"发送人\",\"target\":\"接收人\",\"label\":\"邮件类型\"}}"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"developer\":\"Microsoft\",\"product\":\"Windows\"},{\"developer\":\"Apple\",\"product\":\"macOS\"},{\"developer\":\"Google\",\"product\":\"Android\"},{\"developer\":\"Ubuntu\",\"product\":\"Linux\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"developer\",\"target\":\"product\"}}"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"source\":\"Rome\",\"target\":\"Milan\"},{\"source\":\"Milan\",\"target\":\"Venice\"},{\"source\":\"Venice\",\"target\":\"Florence\"},{\"source\":\"Florence\",\"target\":\"Rome\"},{\"source\":\"Rome\",\"target\":\"Naples\"},{\"source\":\"Naples\",\"target\":\"Sicily\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"起点\":\"伦敦\",\"终点\":\"曼彻斯特\"},{\"起点\":\"曼彻斯特\",\"终点\":\"利兹\"},{\"起点\":\"利兹\",\"终点\":\"约克\"},{\"起点\":\"约克\",\"终点\":\"纽卡斯尔\"},{\"起点\":\"纽卡斯尔\",\"终点\":\"爱丁堡\"},{\"起点\":\"爱丁堡\",\"终点\":\"格拉斯哥\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"起点\",\"target\":\"终点\"}}"} +{"prompt":"展示{\"data\":[{\"出发\":\"北京总部\",\"到达\":\"上海旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"南京旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"杭州旗舰店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"扬州门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"盐城门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"南通门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"苏州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"湖州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"金华门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"宁波门店\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"出发\",\"target\":\"到达\"}}"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"发送人\":\"张伟\",\"接收人\":\"李强\",\"邮件类型\":\"工作\"},{\"发送人\":\"李强\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"},{\"发送人\":\"王芳\",\"接收人\":\"张伟\",\"邮件类型\":\"工作\"},{\"发送人\":\"张伟\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"发送人\",\"target\":\"接收人\",\"label\":\"邮件类型\"}}"} +{"prompt":"可视化{\"data\":[{\"developer\":\"Microsoft\",\"product\":\"Windows\"},{\"developer\":\"Apple\",\"product\":\"macOS\"},{\"developer\":\"Google\",\"product\":\"Android\"},{\"developer\":\"Ubuntu\",\"product\":\"Linux\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"developer\",\"target\":\"product\"}}"} +{"prompt":"可视化{\"data\":[{\"source\":\"Rome\",\"target\":\"Milan\"},{\"source\":\"Milan\",\"target\":\"Venice\"},{\"source\":\"Venice\",\"target\":\"Florence\"},{\"source\":\"Florence\",\"target\":\"Rome\"},{\"source\":\"Rome\",\"target\":\"Naples\"},{\"source\":\"Naples\",\"target\":\"Sicily\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"source\",\"target\":\"target\"}}"} +{"prompt":"可视化下列数据{\"data\":[{\"起点\":\"伦敦\",\"终点\":\"曼彻斯特\"},{\"起点\":\"曼彻斯特\",\"终点\":\"利兹\"},{\"起点\":\"利兹\",\"终点\":\"约克\"},{\"起点\":\"约克\",\"终点\":\"纽卡斯尔\"},{\"起点\":\"纽卡斯尔\",\"终点\":\"爱丁堡\"},{\"起点\":\"爱丁堡\",\"终点\":\"格拉斯哥\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"起点\",\"target\":\"终点\"}}"} +{"prompt":"推荐图表{\"data\":[{\"出发\":\"北京总部\",\"到达\":\"上海旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"南京旗舰店\"},{\"出发\":\"北京总部\",\"到达\":\"杭州旗舰店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"扬州门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"盐城门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"南通门店\"},{\"出发\":\"南京旗舰店\",\"到达\":\"苏州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"湖州门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"金华门店\"},{\"出发\":\"杭州旗舰店\",\"到达\":\"宁波门店\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"出发\",\"target\":\"到达\"}}"} +{"prompt":"推荐图表{\"data\":[{\"发送人\":\"张伟\",\"接收人\":\"李强\",\"邮件类型\":\"工作\"},{\"发送人\":\"李强\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"},{\"发送人\":\"王芳\",\"接收人\":\"张伟\",\"邮件类型\":\"工作\"},{\"发送人\":\"张伟\",\"接收人\":\"王芳\",\"邮件类型\":\"私人\"}]}","answer":"{\"type\":\"network_graph\",\"encode\":{\"source\":\"发送人\",\"target\":\"接收人\",\"label\":\"邮件类型\"}}"} +{"prompt":"可视化{\"data\":[{\"HoursWorked\":20,\"WeeklyIncome\":200},{\"HoursWorked\":25,\"WeeklyIncome\":250},{\"HoursWorked\":30,\"WeeklyIncome\":300},{\"HoursWorked\":35,\"WeeklyIncome\":350},{\"HoursWorked\":40,\"WeeklyIncome\":400},{\"HoursWorked\":45,\"WeeklyIncome\":450}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"HoursWorked\"],\"y\":[\"WeeklyIncome\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"GDP\":1500,\"Inflation Rate\":3,\"Country\":\"USA\",\"Population\":320},{\"GDP\":900,\"Inflation Rate\":4.2,\"Country\":\"UK\",\"Population\":65},{\"GDP\":800,\"Inflation Rate\":2.5,\"Country\":\"Japan\",\"Population\":127},{\"GDP\":600,\"Inflation Rate\":1.8,\"Country\":\"Germany\",\"Population\":82},{\"GDP\":700,\"Inflation Rate\":2.2,\"Country\":\"India\",\"Population\":1380},{\"GDP\":550,\"Inflation Rate\":3.5,\"Country\":\"Brazil\",\"Population\":212},{\"GDP\":730,\"Inflation Rate\":2.7,\"Country\":\"France\",\"Population\":67},{\"GDP\":470,\"Inflation Rate\":3.9,\"Country\":\"Italy\",\"Population\":60},{\"GDP\":910,\"Inflation Rate\":2.8,\"Country\":\"China\",\"Population\":1420},{\"GDP\":670,\"Inflation Rate\":2.6,\"Country\":\"Canada\",\"Population\":37}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"GDP\"],\"y\":[\"Inflation Rate\"],\"s\":[\"Country\"],\"size\":\"Population\"}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"公司\",\"dataType\":\"string\"},{\"name\":\"员工人数\",\"dataType\":\"number\"},{\"name\":\"营业额\",\"dataType\":\"number\"}],\"data\":[{\"公司\":\"企业A\",\"员工人数\":50,\"营业额\":500000},{\"公司\":\"企业B\",\"员工人数\":100,\"营业额\":1000000},{\"公司\":\"企业C\",\"员工人数\":200,\"营业额\":2000000},{\"公司\":\"企业D\",\"员工人数\":300,\"营业额\":3000000},{\"公司\":\"企业E\",\"员工人数\":400,\"营业额\":4000000}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"员工人数\"],\"y\":[\"营业额\"],\"s\":[\"公司\"]}}]"} +{"prompt":"{\"data\":[{\"步行距离\":1,\"卡路里消耗\":100},{\"步行距离\":2,\"卡路里消耗\":200},{\"步行距离\":3,\"卡路里消耗\":300},{\"步行距离\":4,\"卡路里消耗\":380},{\"步行距离\":5,\"卡路里消耗\":450},{\"步行距离\":6,\"卡路里消耗\":500},{\"步行距离\":7,\"卡路里消耗\":550}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"步行距离\"],\"y\":[\"卡路里消耗\"]}}]"} +{"prompt":"{\"data\":[{\"Mileage\":27,\"Gas Price\":3.2,\"Brand\":\"Toyota\",\"Age\":5},{\"Mileage\":22,\"Gas Price\":3.5,\"Brand\":\"Ford\",\"Age\":8},{\"Mileage\":30,\"Gas Price\":3,\"Brand\":\"Honda\",\"Age\":6},{\"Mileage\":25,\"Gas Price\":2.9,\"Brand\":\"Chevrolet\",\"Age\":7},{\"Mileage\":24,\"Gas Price\":3.1,\"Brand\":\"Hyundai\",\"Age\":4},{\"Mileage\":28,\"Gas Price\":3.3,\"Brand\":\"Mazda\",\"Age\":5},{\"Mileage\":26,\"Gas Price\":2.8,\"Brand\":\"BMW\",\"Age\":8},{\"Mileage\":29,\"Gas Price\":3.4,\"Brand\":\"Nissan\",\"Age\":6},{\"Mileage\":23,\"Gas Price\":3.6,\"Brand\":\"Kia\",\"Age\":5},{\"Mileage\":21,\"Gas Price\":3.2,\"Brand\":\"Volkswagen\",\"Age\":7}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"Mileage\"],\"y\":[\"Gas Price\"],\"s\":[\"Brand\"],\"size\":\"Age\"}}]"} +{"prompt":"展示{\"data\":[{\"Rainfall\":5,\"CropYield\":200},{\"Rainfall\":10,\"CropYield\":230},{\"Rainfall\":15,\"CropYield\":250},{\"Rainfall\":20,\"CropYield\":270},{\"Rainfall\":25,\"CropYield\":290},{\"Rainfall\":30,\"CropYield\":310}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"Rainfall\"],\"y\":[\"CropYield\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Series\":\"I\",\"X\":10,\"Y\":8.04},{\"Series\":\"I\",\"X\":8,\"Y\":6.95},{\"Series\":\"I\",\"X\":13,\"Y\":7.58},{\"Series\":\"I\",\"X\":9,\"Y\":8.81},{\"Series\":\"I\",\"X\":11,\"Y\":8.33},{\"Series\":\"I\",\"X\":14,\"Y\":9.96},{\"Series\":\"I\",\"X\":6,\"Y\":7.24},{\"Series\":\"I\",\"X\":4,\"Y\":4.26},{\"Series\":\"II\",\"X\":10,\"Y\":9.14},{\"Series\":\"II\",\"X\":8,\"Y\":8.14},{\"Series\":\"II\",\"X\":13,\"Y\":8.74},{\"Series\":\"II\",\"X\":9,\"Y\":8.77},{\"Series\":\"II\",\"X\":11,\"Y\":9.26},{\"Series\":\"II\",\"X\":14,\"Y\":8.1},{\"Series\":\"II\",\"X\":6,\"Y\":6.13},{\"Series\":\"II\",\"X\":4,\"Y\":3.1},{\"Series\":\"III\",\"X\":10,\"Y\":7.46},{\"Series\":\"III\",\"X\":8,\"Y\":6.77},{\"Series\":\"III\",\"X\":13,\"Y\":12.74},{\"Series\":\"III\",\"X\":9,\"Y\":7.11},{\"Series\":\"III\",\"X\":11,\"Y\":7.81},{\"Series\":\"III\",\"X\":14,\"Y\":8.84},{\"Series\":\"III\",\"X\":6,\"Y\":6.08},{\"Series\":\"IV\",\"X\":8,\"Y\":6.58},{\"Series\":\"IV\",\"X\":8,\"Y\":5.76},{\"Series\":\"IV\",\"X\":8,\"Y\":7.71},{\"Series\":\"IV\",\"X\":8,\"Y\":8.84},{\"Series\":\"IV\",\"X\":8,\"Y\":8.47},{\"Series\":\"IV\",\"X\":8,\"Y\":7.04},{\"Series\":\"IV\",\"X\":8,\"Y\":5.25},{\"Series\":\"IV\",\"X\":19,\"Y\":12.5}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"X\"],\"x2\":[\"Y\"],\"s\":[\"Series\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"Subject\",\"dataType\":\"string\"},{\"name\":\"Hours\",\"dataType\":\"number\"},{\"name\":\"Scores\",\"dataType\":\"number\"}],\"data\":[{\"Subject\":\"Math\",\"Hours\":5,\"Scores\":80},{\"Subject\":\"Science\",\"Hours\":10,\"Scores\":85},{\"Subject\":\"History\",\"Hours\":15,\"Scores\":90},{\"Subject\":\"Art\",\"Hours\":20,\"Scores\":95},{\"Subject\":\"PE\",\"Hours\":25,\"Scores\":100}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"Hours\"],\"y\":[\"Scores\"],\"s\":[\"Subject\"]}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"城市\",\"dataType\":\"string\"},{\"name\":\"人口\",\"dataType\":\"number\"},{\"name\":\"公园数量\",\"dataType\":\"number\"}],\"data\":[{\"城市\":\"城市A\",\"人口\":1000000,\"公园数量\":50},{\"城市\":\"城市B\",\"人口\":2000000,\"公园数量\":80},{\"城市\":\"城市C\",\"人口\":3000000,\"公园数量\":100},{\"城市\":\"城市D\",\"人口\":4000000,\"公园数量\":150},{\"城市\":\"城市E\",\"人口\":5000000,\"公园数量\":200}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"人口\"],\"y\":[\"公园数量\"],\"s\":[\"城市\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"},{\"name\":\"人均收入\",\"dataType\":\"number\"}],\"data\":[{\"国家\":\"Country1\",\"GDP\":5000,\"人均收入\":30000},{\"国家\":\"Country2\",\"GDP\":10000,\"人均收入\":35000},{\"国家\":\"Country3\",\"GDP\":15000,\"人均收入\":40000},{\"国家\":\"Country4\",\"GDP\":20000,\"人均收入\":45000},{\"国家\":\"Country5\",\"GDP\":25000,\"人均收入\":50000}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"GDP\"],\"y\":[\"人均收入\"],\"s\":[\"国家\"]}}]"} +{"prompt":"{\"data\":[{\"Age\":25,\"MonthlySavings\":100},{\"Age\":30,\"MonthlySavings\":200},{\"Age\":35,\"MonthlySavings\":300},{\"Age\":40,\"MonthlySavings\":400},{\"Age\":45,\"MonthlySavings\":350},{\"Age\":50,\"MonthlySavings\":320}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"Age\"],\"y\":[\"MonthlySavings\"]}}]"} +{"prompt":"{\"data\":[{\"车速\":40,\"燃油效率\":15},{\"车速\":60,\"燃油效率\":16},{\"车速\":80,\"燃油效率\":14},{\"车速\":100,\"燃油效率\":12},{\"车速\":120,\"燃油效率\":10},{\"车速\":140,\"燃油效率\":8}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"车速\"],\"y\":[\"燃油效率\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"平均温度\":22,\"降雨量\":100,\"城市\":\"南京\",\"人口\":840},{\"平均温度\":25,\"降雨量\":80,\"城市\":\"福州\",\"人口\":620},{\"平均温度\":30,\"降雨量\":60,\"城市\":\"广州\",\"人口\":1500},{\"平均温度\":28,\"降雨量\":90,\"城市\":\"长沙\",\"人口\":760},{\"平均温度\":24,\"降雨量\":110,\"城市\":\"苏州\",\"人口\":1040},{\"平均温度\":20,\"降雨量\":130,\"城市\":\"南京\",\"人口\":840},{\"平均温度\":32,\"降雨量\":70,\"城市\":\"海口\",\"人口\":230},{\"平均温度\":27,\"降雨量\":85,\"城市\":\"南昌\",\"人口\":550},{\"平均温度\":26,\"降雨量\":95,\"城市\":\"昆明\",\"人口\":640},{\"平均温度\":23,\"降雨量\":120,\"城市\":\"重庆\",\"人口\":1800}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"平均温度\"],\"y\":[\"降雨量\"],\"s\":[\"城市\"],\"size\":\"人口\"}}]"} +{"prompt":"展示{\"data\":[{\"出勤率\":98,\"通过率\":89,\"课程\":\"数学\",\"班级人数\":30},{\"出勤率\":92,\"通过率\":84,\"课程\":\"英语\",\"班级人数\":28},{\"出勤率\":95,\"通过率\":91,\"课程\":\"化学\",\"班级人数\":32},{\"出勤率\":90,\"通过率\":80,\"课程\":\"物理\",\"班级人数\":26},{\"出勤率\":88,\"通过率\":85,\"课程\":\"生物\",\"班级人数\":29},{\"出勤率\":93,\"通过率\":87,\"课程\":\"历史\",\"班级人数\":34},{\"出勤率\":91,\"通过率\":83,\"课程\":\"地理\",\"班级人数\":30},{\"出勤率\":94,\"通过率\":90,\"课程\":\"图画\",\"班级人数\":24},{\"出勤率\":89,\"通过率\":86,\"课程\":\"音乐\",\"班级人数\":20},{\"出勤率\":97,\"通过率\":92,\"课程\":\"计算机\",\"班级人数\":40}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"出勤率\"],\"y\":[\"通过率\"],\"s\":[\"课程\"],\"size\":\"班级人数\"}}]"} +{"prompt":"展示{\"data\":[{\"学习时间\":1,\"考试成绩\":55},{\"学习时间\":2,\"考试成绩\":65},{\"学习时间\":3,\"考试成绩\":70},{\"学习时间\":4,\"考试成绩\":80},{\"学习时间\":5,\"考试成绩\":85},{\"学习时间\":6,\"考试成绩\":90}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"学习时间\"],\"y\":[\"考试成绩\"]}}]"} +{"prompt":"展示{\"data\":[{\"AdvertisingBudget\":500,\"NewCustomers\":50},{\"AdvertisingBudget\":1000,\"NewCustomers\":100},{\"AdvertisingBudget\":1500,\"NewCustomers\":140},{\"AdvertisingBudget\":2000,\"NewCustomers\":180},{\"AdvertisingBudget\":2500,\"NewCustomers\":210},{\"AdvertisingBudget\":3000,\"NewCustomers\":245}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"AdvertisingBudget\"],\"y\":[\"NewCustomers\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"城市\":\"A\",\"人口\":500000,\"绿化率\":30},{\"城市\":\"B\",\"人口\":1000000,\"绿化率\":25},{\"城市\":\"C\",\"人口\":1500000,\"绿化率\":20},{\"城市\":\"D\",\"人口\":2000000,\"绿化率\":18},{\"城市\":\"E\",\"人口\":2500000,\"绿化率\":15}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"人口\"],\"y\":[\"绿化率\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"食品\":\"A\",\"价格\":15,\"销量\":200},{\"食品\":\"B\",\"价格\":18,\"销量\":250},{\"食品\":\"C\",\"价格\":20,\"销量\":300},{\"食品\":\"D\",\"价格\":22,\"销量\":320},{\"食品\":\"E\",\"价格\":25,\"销量\":340}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"价格\"],\"y\":[\"销量\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"Internet Usage\":70,\"Social Media Activity\":600,\"Age Group\":\"18-24\",\"Population Proportion\":15},{\"Internet Usage\":65,\"Social Media Activity\":400,\"Age Group\":\"25-34\",\"Population Proportion\":18},{\"Internet Usage\":55,\"Social Media Activity\":300,\"Age Group\":\"35-44\",\"Population Proportion\":20},{\"Internet Usage\":50,\"Social Media Activity\":200,\"Age Group\":\"45-54\",\"Population Proportion\":17},{\"Internet Usage\":40,\"Social Media Activity\":150,\"Age Group\":\"55-64\",\"Population Proportion\":15},{\"Internet Usage\":30,\"Social Media Activity\":80,\"Age Group\":\"65+\",\"Population Proportion\":15},{\"Internet Usage\":85,\"Social Media Activity\":700,\"Age Group\":\"16-17\",\"Population Proportion\":5},{\"Internet Usage\":78,\"Social Media Activity\":550,\"Age Group\":\"18-19\",\"Population Proportion\":10},{\"Internet Usage\":60,\"Social Media Activity\":350,\"Age Group\":\"20-21\",\"Population Proportion\":15},{\"Internet Usage\":57,\"Social Media Activity\":250,\"Age Group\":\"22-23\",\"Population Proportion\":12}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"Internet Usage\"],\"y\":[\"Social Media Activity\"],\"s\":[\"Age Group\"],\"size\":\"Population Proportion\"}}]"} +{"prompt":"可视化{\"data\":[{\"房价\":20000,\"租金回报率\":4.5,\"城市\":\"北京\",\"人口\":2100},{\"房价\":18000,\"租金回报率\":3.8,\"城市\":\"上海\",\"人口\":2400},{\"房价\":17000,\"租金回报率\":4,\"城市\":\"深圳\",\"人口\":1300},{\"房价\":16000,\"租金回报率\":4.2,\"城市\":\"广州\",\"人口\":1500},{\"房价\":15000,\"租金回报率\":3.5,\"城市\":\"成都\",\"人口\":1600},{\"房价\":14000,\"租金回报率\":4.8,\"城市\":\"重庆\",\"人口\":1800},{\"房价\":13000,\"租金回报率\":3.6,\"城市\":\"武汉\",\"人口\":1100},{\"房价\":12000,\"租金回报率\":4.1,\"城市\":\"西安\",\"人口\":900},{\"房价\":11000,\"租金回报率\":4.4,\"城市\":\"杭州\",\"人口\":1050},{\"房价\":10000,\"租金回报率\":3.9,\"城市\":\"天津\",\"人口\":1300}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"房价\"],\"y\":[\"租金回报率\"],\"s\":[\"城市\"],\"size\":\"人口\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"HoursWorked\":20,\"WeeklyIncome\":200},{\"HoursWorked\":25,\"WeeklyIncome\":250},{\"HoursWorked\":30,\"WeeklyIncome\":300},{\"HoursWorked\":35,\"WeeklyIncome\":350},{\"HoursWorked\":40,\"WeeklyIncome\":400},{\"HoursWorked\":45,\"WeeklyIncome\":450}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"HoursWorked\"],\"y\":[\"WeeklyIncome\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"GDP\":1500,\"Inflation Rate\":3,\"Country\":\"USA\",\"Population\":320},{\"GDP\":900,\"Inflation Rate\":4.2,\"Country\":\"UK\",\"Population\":65},{\"GDP\":800,\"Inflation Rate\":2.5,\"Country\":\"Japan\",\"Population\":127},{\"GDP\":600,\"Inflation Rate\":1.8,\"Country\":\"Germany\",\"Population\":82},{\"GDP\":700,\"Inflation Rate\":2.2,\"Country\":\"India\",\"Population\":1380},{\"GDP\":550,\"Inflation Rate\":3.5,\"Country\":\"Brazil\",\"Population\":212},{\"GDP\":730,\"Inflation Rate\":2.7,\"Country\":\"France\",\"Population\":67},{\"GDP\":470,\"Inflation Rate\":3.9,\"Country\":\"Italy\",\"Population\":60},{\"GDP\":910,\"Inflation Rate\":2.8,\"Country\":\"China\",\"Population\":1420},{\"GDP\":670,\"Inflation Rate\":2.6,\"Country\":\"Canada\",\"Population\":37}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"GDP\"],\"y\":[\"Inflation Rate\"],\"s\":[\"Country\"],\"size\":\"Population\"}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"公司\",\"dataType\":\"string\"},{\"name\":\"员工人数\",\"dataType\":\"number\"},{\"name\":\"营业额\",\"dataType\":\"number\"}],\"data\":[{\"公司\":\"企业A\",\"员工人数\":50,\"营业额\":500000},{\"公司\":\"企业B\",\"员工人数\":100,\"营业额\":1000000},{\"公司\":\"企业C\",\"员工人数\":200,\"营业额\":2000000},{\"公司\":\"企业D\",\"员工人数\":300,\"营业额\":3000000},{\"公司\":\"企业E\",\"员工人数\":400,\"营业额\":4000000}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"员工人数\"],\"y\":[\"营业额\"],\"s\":[\"公司\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"步行距离\":1,\"卡路里消耗\":100},{\"步行距离\":2,\"卡路里消耗\":200},{\"步行距离\":3,\"卡路里消耗\":300},{\"步行距离\":4,\"卡路里消耗\":380},{\"步行距离\":5,\"卡路里消耗\":450},{\"步行距离\":6,\"卡路里消耗\":500},{\"步行距离\":7,\"卡路里消耗\":550}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"步行距离\"],\"y\":[\"卡路里消耗\"]}}]"} +{"prompt":"展示{\"data\":[{\"Mileage\":27,\"Gas Price\":3.2,\"Brand\":\"Toyota\",\"Age\":5},{\"Mileage\":22,\"Gas Price\":3.5,\"Brand\":\"Ford\",\"Age\":8},{\"Mileage\":30,\"Gas Price\":3,\"Brand\":\"Honda\",\"Age\":6},{\"Mileage\":25,\"Gas Price\":2.9,\"Brand\":\"Chevrolet\",\"Age\":7},{\"Mileage\":24,\"Gas Price\":3.1,\"Brand\":\"Hyundai\",\"Age\":4},{\"Mileage\":28,\"Gas Price\":3.3,\"Brand\":\"Mazda\",\"Age\":5},{\"Mileage\":26,\"Gas Price\":2.8,\"Brand\":\"BMW\",\"Age\":8},{\"Mileage\":29,\"Gas Price\":3.4,\"Brand\":\"Nissan\",\"Age\":6},{\"Mileage\":23,\"Gas Price\":3.6,\"Brand\":\"Kia\",\"Age\":5},{\"Mileage\":21,\"Gas Price\":3.2,\"Brand\":\"Volkswagen\",\"Age\":7}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"Mileage\"],\"y\":[\"Gas Price\"],\"s\":[\"Brand\"],\"size\":\"Age\"}}]"} +{"prompt":"{\"data\":[{\"Rainfall\":5,\"CropYield\":200},{\"Rainfall\":10,\"CropYield\":230},{\"Rainfall\":15,\"CropYield\":250},{\"Rainfall\":20,\"CropYield\":270},{\"Rainfall\":25,\"CropYield\":290},{\"Rainfall\":30,\"CropYield\":310}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"Rainfall\"],\"y\":[\"CropYield\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Series\":\"I\",\"X\":10,\"Y\":8.04},{\"Series\":\"I\",\"X\":8,\"Y\":6.95},{\"Series\":\"I\",\"X\":13,\"Y\":7.58},{\"Series\":\"I\",\"X\":9,\"Y\":8.81},{\"Series\":\"I\",\"X\":11,\"Y\":8.33},{\"Series\":\"I\",\"X\":14,\"Y\":9.96},{\"Series\":\"I\",\"X\":6,\"Y\":7.24},{\"Series\":\"I\",\"X\":4,\"Y\":4.26},{\"Series\":\"II\",\"X\":10,\"Y\":9.14},{\"Series\":\"II\",\"X\":8,\"Y\":8.14},{\"Series\":\"II\",\"X\":13,\"Y\":8.74},{\"Series\":\"II\",\"X\":9,\"Y\":8.77},{\"Series\":\"II\",\"X\":11,\"Y\":9.26},{\"Series\":\"II\",\"X\":14,\"Y\":8.1},{\"Series\":\"II\",\"X\":6,\"Y\":6.13},{\"Series\":\"II\",\"X\":4,\"Y\":3.1},{\"Series\":\"III\",\"X\":10,\"Y\":7.46},{\"Series\":\"III\",\"X\":8,\"Y\":6.77},{\"Series\":\"III\",\"X\":13,\"Y\":12.74},{\"Series\":\"III\",\"X\":9,\"Y\":7.11},{\"Series\":\"III\",\"X\":11,\"Y\":7.81},{\"Series\":\"III\",\"X\":14,\"Y\":8.84},{\"Series\":\"III\",\"X\":6,\"Y\":6.08},{\"Series\":\"IV\",\"X\":8,\"Y\":6.58},{\"Series\":\"IV\",\"X\":8,\"Y\":5.76},{\"Series\":\"IV\",\"X\":8,\"Y\":7.71},{\"Series\":\"IV\",\"X\":8,\"Y\":8.84},{\"Series\":\"IV\",\"X\":8,\"Y\":8.47},{\"Series\":\"IV\",\"X\":8,\"Y\":7.04},{\"Series\":\"IV\",\"X\":8,\"Y\":5.25},{\"Series\":\"IV\",\"X\":19,\"Y\":12.5}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"X\"],\"x2\":[\"Y\"],\"s\":[\"Series\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"Subject\",\"dataType\":\"string\"},{\"name\":\"Hours\",\"dataType\":\"number\"},{\"name\":\"Scores\",\"dataType\":\"number\"}],\"data\":[{\"Subject\":\"Math\",\"Hours\":5,\"Scores\":80},{\"Subject\":\"Science\",\"Hours\":10,\"Scores\":85},{\"Subject\":\"History\",\"Hours\":15,\"Scores\":90},{\"Subject\":\"Art\",\"Hours\":20,\"Scores\":95},{\"Subject\":\"PE\",\"Hours\":25,\"Scores\":100}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"Hours\"],\"y\":[\"Scores\"],\"s\":[\"Subject\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"城市\",\"dataType\":\"string\"},{\"name\":\"人口\",\"dataType\":\"number\"},{\"name\":\"公园数量\",\"dataType\":\"number\"}],\"data\":[{\"城市\":\"城市A\",\"人口\":1000000,\"公园数量\":50},{\"城市\":\"城市B\",\"人口\":2000000,\"公园数量\":80},{\"城市\":\"城市C\",\"人口\":3000000,\"公园数量\":100},{\"城市\":\"城市D\",\"人口\":4000000,\"公园数量\":150},{\"城市\":\"城市E\",\"人口\":5000000,\"公园数量\":200}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"人口\"],\"y\":[\"公园数量\"],\"s\":[\"城市\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"},{\"name\":\"人均收入\",\"dataType\":\"number\"}],\"data\":[{\"国家\":\"Country1\",\"GDP\":5000,\"人均收入\":30000},{\"国家\":\"Country2\",\"GDP\":10000,\"人均收入\":35000},{\"国家\":\"Country3\",\"GDP\":15000,\"人均收入\":40000},{\"国家\":\"Country4\",\"GDP\":20000,\"人均收入\":45000},{\"国家\":\"Country5\",\"GDP\":25000,\"人均收入\":50000}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"GDP\"],\"y\":[\"人均收入\"],\"s\":[\"国家\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Age\":25,\"MonthlySavings\":100},{\"Age\":30,\"MonthlySavings\":200},{\"Age\":35,\"MonthlySavings\":300},{\"Age\":40,\"MonthlySavings\":400},{\"Age\":45,\"MonthlySavings\":350},{\"Age\":50,\"MonthlySavings\":320}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"Age\"],\"y\":[\"MonthlySavings\"]}}]"} +{"prompt":"可视化{\"data\":[{\"车速\":40,\"燃油效率\":15},{\"车速\":60,\"燃油效率\":16},{\"车速\":80,\"燃油效率\":14},{\"车速\":100,\"燃油效率\":12},{\"车速\":120,\"燃油效率\":10},{\"车速\":140,\"燃油效率\":8}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"车速\"],\"y\":[\"燃油效率\"]}}]"} +{"prompt":"可视化{\"data\":[{\"平均温度\":22,\"降雨量\":100,\"城市\":\"南京\",\"人口\":840},{\"平均温度\":25,\"降雨量\":80,\"城市\":\"福州\",\"人口\":620},{\"平均温度\":30,\"降雨量\":60,\"城市\":\"广州\",\"人口\":1500},{\"平均温度\":28,\"降雨量\":90,\"城市\":\"长沙\",\"人口\":760},{\"平均温度\":24,\"降雨量\":110,\"城市\":\"苏州\",\"人口\":1040},{\"平均温度\":20,\"降雨量\":130,\"城市\":\"南京\",\"人口\":840},{\"平均温度\":32,\"降雨量\":70,\"城市\":\"海口\",\"人口\":230},{\"平均温度\":27,\"降雨量\":85,\"城市\":\"南昌\",\"人口\":550},{\"平均温度\":26,\"降雨量\":95,\"城市\":\"昆明\",\"人口\":640},{\"平均温度\":23,\"降雨量\":120,\"城市\":\"重庆\",\"人口\":1800}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"平均温度\"],\"y\":[\"降雨量\"],\"s\":[\"城市\"],\"size\":\"人口\"}}]"} +{"prompt":"可视化{\"data\":[{\"出勤率\":98,\"通过率\":89,\"课程\":\"数学\",\"班级人数\":30},{\"出勤率\":92,\"通过率\":84,\"课程\":\"英语\",\"班级人数\":28},{\"出勤率\":95,\"通过率\":91,\"课程\":\"化学\",\"班级人数\":32},{\"出勤率\":90,\"通过率\":80,\"课程\":\"物理\",\"班级人数\":26},{\"出勤率\":88,\"通过率\":85,\"课程\":\"生物\",\"班级人数\":29},{\"出勤率\":93,\"通过率\":87,\"课程\":\"历史\",\"班级人数\":34},{\"出勤率\":91,\"通过率\":83,\"课程\":\"地理\",\"班级人数\":30},{\"出勤率\":94,\"通过率\":90,\"课程\":\"图画\",\"班级人数\":24},{\"出勤率\":89,\"通过率\":86,\"课程\":\"音乐\",\"班级人数\":20},{\"出勤率\":97,\"通过率\":92,\"课程\":\"计算机\",\"班级人数\":40}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"出勤率\"],\"y\":[\"通过率\"],\"s\":[\"课程\"],\"size\":\"班级人数\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"学习时间\":1,\"考试成绩\":55},{\"学习时间\":2,\"考试成绩\":65},{\"学习时间\":3,\"考试成绩\":70},{\"学习时间\":4,\"考试成绩\":80},{\"学习时间\":5,\"考试成绩\":85},{\"学习时间\":6,\"考试成绩\":90}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"学习时间\"],\"y\":[\"考试成绩\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"AdvertisingBudget\":500,\"NewCustomers\":50},{\"AdvertisingBudget\":1000,\"NewCustomers\":100},{\"AdvertisingBudget\":1500,\"NewCustomers\":140},{\"AdvertisingBudget\":2000,\"NewCustomers\":180},{\"AdvertisingBudget\":2500,\"NewCustomers\":210},{\"AdvertisingBudget\":3000,\"NewCustomers\":245}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"AdvertisingBudget\"],\"y\":[\"NewCustomers\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"城市\":\"A\",\"人口\":500000,\"绿化率\":30},{\"城市\":\"B\",\"人口\":1000000,\"绿化率\":25},{\"城市\":\"C\",\"人口\":1500000,\"绿化率\":20},{\"城市\":\"D\",\"人口\":2000000,\"绿化率\":18},{\"城市\":\"E\",\"人口\":2500000,\"绿化率\":15}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"人口\"],\"y\":[\"绿化率\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"食品\":\"A\",\"价格\":15,\"销量\":200},{\"食品\":\"B\",\"价格\":18,\"销量\":250},{\"食品\":\"C\",\"价格\":20,\"销量\":300},{\"食品\":\"D\",\"价格\":22,\"销量\":320},{\"食品\":\"E\",\"价格\":25,\"销量\":340}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"价格\"],\"y\":[\"销量\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"Internet Usage\":70,\"Social Media Activity\":600,\"Age Group\":\"18-24\",\"Population Proportion\":15},{\"Internet Usage\":65,\"Social Media Activity\":400,\"Age Group\":\"25-34\",\"Population Proportion\":18},{\"Internet Usage\":55,\"Social Media Activity\":300,\"Age Group\":\"35-44\",\"Population Proportion\":20},{\"Internet Usage\":50,\"Social Media Activity\":200,\"Age Group\":\"45-54\",\"Population Proportion\":17},{\"Internet Usage\":40,\"Social Media Activity\":150,\"Age Group\":\"55-64\",\"Population Proportion\":15},{\"Internet Usage\":30,\"Social Media Activity\":80,\"Age Group\":\"65+\",\"Population Proportion\":15},{\"Internet Usage\":85,\"Social Media Activity\":700,\"Age Group\":\"16-17\",\"Population Proportion\":5},{\"Internet Usage\":78,\"Social Media Activity\":550,\"Age Group\":\"18-19\",\"Population Proportion\":10},{\"Internet Usage\":60,\"Social Media Activity\":350,\"Age Group\":\"20-21\",\"Population Proportion\":15},{\"Internet Usage\":57,\"Social Media Activity\":250,\"Age Group\":\"22-23\",\"Population Proportion\":12}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"Internet Usage\"],\"y\":[\"Social Media Activity\"],\"s\":[\"Age Group\"],\"size\":\"Population Proportion\"}}]"} +{"prompt":"可视化{\"data\":[{\"房价\":20000,\"租金回报率\":4.5,\"城市\":\"北京\",\"人口\":2100},{\"房价\":18000,\"租金回报率\":3.8,\"城市\":\"上海\",\"人口\":2400},{\"房价\":17000,\"租金回报率\":4,\"城市\":\"深圳\",\"人口\":1300},{\"房价\":16000,\"租金回报率\":4.2,\"城市\":\"广州\",\"人口\":1500},{\"房价\":15000,\"租金回报率\":3.5,\"城市\":\"成都\",\"人口\":1600},{\"房价\":14000,\"租金回报率\":4.8,\"城市\":\"重庆\",\"人口\":1800},{\"房价\":13000,\"租金回报率\":3.6,\"城市\":\"武汉\",\"人口\":1100},{\"房价\":12000,\"租金回报率\":4.1,\"城市\":\"西安\",\"人口\":900},{\"房价\":11000,\"租金回报率\":4.4,\"城市\":\"杭州\",\"人口\":1050},{\"房价\":10000,\"租金回报率\":3.9,\"城市\":\"天津\",\"人口\":1300}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"房价\"],\"y\":[\"租金回报率\"],\"s\":[\"城市\"],\"size\":\"人口\"}}]"} +{"prompt":"可视化{\"data\":[{\"HoursWorked\":20,\"WeeklyIncome\":200},{\"HoursWorked\":25,\"WeeklyIncome\":250},{\"HoursWorked\":30,\"WeeklyIncome\":300},{\"HoursWorked\":35,\"WeeklyIncome\":350},{\"HoursWorked\":40,\"WeeklyIncome\":400},{\"HoursWorked\":45,\"WeeklyIncome\":450}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"HoursWorked\"],\"y\":[\"WeeklyIncome\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"GDP\":1500,\"Inflation Rate\":3,\"Country\":\"USA\",\"Population\":320},{\"GDP\":900,\"Inflation Rate\":4.2,\"Country\":\"UK\",\"Population\":65},{\"GDP\":800,\"Inflation Rate\":2.5,\"Country\":\"Japan\",\"Population\":127},{\"GDP\":600,\"Inflation Rate\":1.8,\"Country\":\"Germany\",\"Population\":82},{\"GDP\":700,\"Inflation Rate\":2.2,\"Country\":\"India\",\"Population\":1380},{\"GDP\":550,\"Inflation Rate\":3.5,\"Country\":\"Brazil\",\"Population\":212},{\"GDP\":730,\"Inflation Rate\":2.7,\"Country\":\"France\",\"Population\":67},{\"GDP\":470,\"Inflation Rate\":3.9,\"Country\":\"Italy\",\"Population\":60},{\"GDP\":910,\"Inflation Rate\":2.8,\"Country\":\"China\",\"Population\":1420},{\"GDP\":670,\"Inflation Rate\":2.6,\"Country\":\"Canada\",\"Population\":37}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"GDP\"],\"y\":[\"Inflation Rate\"],\"s\":[\"Country\"],\"size\":\"Population\"}}]"} +{"prompt":"可视化{\"metas\":[{\"name\":\"公司\",\"dataType\":\"string\"},{\"name\":\"员工人数\",\"dataType\":\"number\"},{\"name\":\"营业额\",\"dataType\":\"number\"}],\"data\":[{\"公司\":\"企业A\",\"员工人数\":50,\"营业额\":500000},{\"公司\":\"企业B\",\"员工人数\":100,\"营业额\":1000000},{\"公司\":\"企业C\",\"员工人数\":200,\"营业额\":2000000},{\"公司\":\"企业D\",\"员工人数\":300,\"营业额\":3000000},{\"公司\":\"企业E\",\"员工人数\":400,\"营业额\":4000000}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"员工人数\"],\"y\":[\"营业额\"],\"s\":[\"公司\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"步行距离\":1,\"卡路里消耗\":100},{\"步行距离\":2,\"卡路里消耗\":200},{\"步行距离\":3,\"卡路里消耗\":300},{\"步行距离\":4,\"卡路里消耗\":380},{\"步行距离\":5,\"卡路里消耗\":450},{\"步行距离\":6,\"卡路里消耗\":500},{\"步行距离\":7,\"卡路里消耗\":550}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"步行距离\"],\"y\":[\"卡路里消耗\"]}}]"} +{"prompt":"{\"data\":[{\"Mileage\":27,\"Gas Price\":3.2,\"Brand\":\"Toyota\",\"Age\":5},{\"Mileage\":22,\"Gas Price\":3.5,\"Brand\":\"Ford\",\"Age\":8},{\"Mileage\":30,\"Gas Price\":3,\"Brand\":\"Honda\",\"Age\":6},{\"Mileage\":25,\"Gas Price\":2.9,\"Brand\":\"Chevrolet\",\"Age\":7},{\"Mileage\":24,\"Gas Price\":3.1,\"Brand\":\"Hyundai\",\"Age\":4},{\"Mileage\":28,\"Gas Price\":3.3,\"Brand\":\"Mazda\",\"Age\":5},{\"Mileage\":26,\"Gas Price\":2.8,\"Brand\":\"BMW\",\"Age\":8},{\"Mileage\":29,\"Gas Price\":3.4,\"Brand\":\"Nissan\",\"Age\":6},{\"Mileage\":23,\"Gas Price\":3.6,\"Brand\":\"Kia\",\"Age\":5},{\"Mileage\":21,\"Gas Price\":3.2,\"Brand\":\"Volkswagen\",\"Age\":7}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"Mileage\"],\"y\":[\"Gas Price\"],\"s\":[\"Brand\"],\"size\":\"Age\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"Rainfall\":5,\"CropYield\":200},{\"Rainfall\":10,\"CropYield\":230},{\"Rainfall\":15,\"CropYield\":250},{\"Rainfall\":20,\"CropYield\":270},{\"Rainfall\":25,\"CropYield\":290},{\"Rainfall\":30,\"CropYield\":310}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"Rainfall\"],\"y\":[\"CropYield\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Series\":\"I\",\"X\":10,\"Y\":8.04},{\"Series\":\"I\",\"X\":8,\"Y\":6.95},{\"Series\":\"I\",\"X\":13,\"Y\":7.58},{\"Series\":\"I\",\"X\":9,\"Y\":8.81},{\"Series\":\"I\",\"X\":11,\"Y\":8.33},{\"Series\":\"I\",\"X\":14,\"Y\":9.96},{\"Series\":\"I\",\"X\":6,\"Y\":7.24},{\"Series\":\"I\",\"X\":4,\"Y\":4.26},{\"Series\":\"II\",\"X\":10,\"Y\":9.14},{\"Series\":\"II\",\"X\":8,\"Y\":8.14},{\"Series\":\"II\",\"X\":13,\"Y\":8.74},{\"Series\":\"II\",\"X\":9,\"Y\":8.77},{\"Series\":\"II\",\"X\":11,\"Y\":9.26},{\"Series\":\"II\",\"X\":14,\"Y\":8.1},{\"Series\":\"II\",\"X\":6,\"Y\":6.13},{\"Series\":\"II\",\"X\":4,\"Y\":3.1},{\"Series\":\"III\",\"X\":10,\"Y\":7.46},{\"Series\":\"III\",\"X\":8,\"Y\":6.77},{\"Series\":\"III\",\"X\":13,\"Y\":12.74},{\"Series\":\"III\",\"X\":9,\"Y\":7.11},{\"Series\":\"III\",\"X\":11,\"Y\":7.81},{\"Series\":\"III\",\"X\":14,\"Y\":8.84},{\"Series\":\"III\",\"X\":6,\"Y\":6.08},{\"Series\":\"IV\",\"X\":8,\"Y\":6.58},{\"Series\":\"IV\",\"X\":8,\"Y\":5.76},{\"Series\":\"IV\",\"X\":8,\"Y\":7.71},{\"Series\":\"IV\",\"X\":8,\"Y\":8.84},{\"Series\":\"IV\",\"X\":8,\"Y\":8.47},{\"Series\":\"IV\",\"X\":8,\"Y\":7.04},{\"Series\":\"IV\",\"X\":8,\"Y\":5.25},{\"Series\":\"IV\",\"X\":19,\"Y\":12.5}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"X\"],\"x2\":[\"Y\"],\"s\":[\"Series\"]}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"metas\":[{\"name\":\"Subject\",\"dataType\":\"string\"},{\"name\":\"Hours\",\"dataType\":\"number\"},{\"name\":\"Scores\",\"dataType\":\"number\"}],\"data\":[{\"Subject\":\"Math\",\"Hours\":5,\"Scores\":80},{\"Subject\":\"Science\",\"Hours\":10,\"Scores\":85},{\"Subject\":\"History\",\"Hours\":15,\"Scores\":90},{\"Subject\":\"Art\",\"Hours\":20,\"Scores\":95},{\"Subject\":\"PE\",\"Hours\":25,\"Scores\":100}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"Hours\"],\"y\":[\"Scores\"],\"s\":[\"Subject\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"城市\",\"dataType\":\"string\"},{\"name\":\"人口\",\"dataType\":\"number\"},{\"name\":\"公园数量\",\"dataType\":\"number\"}],\"data\":[{\"城市\":\"城市A\",\"人口\":1000000,\"公园数量\":50},{\"城市\":\"城市B\",\"人口\":2000000,\"公园数量\":80},{\"城市\":\"城市C\",\"人口\":3000000,\"公园数量\":100},{\"城市\":\"城市D\",\"人口\":4000000,\"公园数量\":150},{\"城市\":\"城市E\",\"人口\":5000000,\"公园数量\":200}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"人口\"],\"y\":[\"公园数量\"],\"s\":[\"城市\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"},{\"name\":\"人均收入\",\"dataType\":\"number\"}],\"data\":[{\"国家\":\"Country1\",\"GDP\":5000,\"人均收入\":30000},{\"国家\":\"Country2\",\"GDP\":10000,\"人均收入\":35000},{\"国家\":\"Country3\",\"GDP\":15000,\"人均收入\":40000},{\"国家\":\"Country4\",\"GDP\":20000,\"人均收入\":45000},{\"国家\":\"Country5\",\"GDP\":25000,\"人均收入\":50000}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"GDP\"],\"y\":[\"人均收入\"],\"s\":[\"国家\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"Age\":25,\"MonthlySavings\":100},{\"Age\":30,\"MonthlySavings\":200},{\"Age\":35,\"MonthlySavings\":300},{\"Age\":40,\"MonthlySavings\":400},{\"Age\":45,\"MonthlySavings\":350},{\"Age\":50,\"MonthlySavings\":320}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"Age\"],\"y\":[\"MonthlySavings\"]}}]"} +{"prompt":"可视化{\"data\":[{\"车速\":40,\"燃油效率\":15},{\"车速\":60,\"燃油效率\":16},{\"车速\":80,\"燃油效率\":14},{\"车速\":100,\"燃油效率\":12},{\"车速\":120,\"燃油效率\":10},{\"车速\":140,\"燃油效率\":8}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"车速\"],\"y\":[\"燃油效率\"]}}]"} +{"prompt":"{\"data\":[{\"平均温度\":22,\"降雨量\":100,\"城市\":\"南京\",\"人口\":840},{\"平均温度\":25,\"降雨量\":80,\"城市\":\"福州\",\"人口\":620},{\"平均温度\":30,\"降雨量\":60,\"城市\":\"广州\",\"人口\":1500},{\"平均温度\":28,\"降雨量\":90,\"城市\":\"长沙\",\"人口\":760},{\"平均温度\":24,\"降雨量\":110,\"城市\":\"苏州\",\"人口\":1040},{\"平均温度\":20,\"降雨量\":130,\"城市\":\"南京\",\"人口\":840},{\"平均温度\":32,\"降雨量\":70,\"城市\":\"海口\",\"人口\":230},{\"平均温度\":27,\"降雨量\":85,\"城市\":\"南昌\",\"人口\":550},{\"平均温度\":26,\"降雨量\":95,\"城市\":\"昆明\",\"人口\":640},{\"平均温度\":23,\"降雨量\":120,\"城市\":\"重庆\",\"人口\":1800}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"平均温度\"],\"y\":[\"降雨量\"],\"s\":[\"城市\"],\"size\":\"人口\"}}]"} +{"prompt":"{\"data\":[{\"出勤率\":98,\"通过率\":89,\"课程\":\"数学\",\"班级人数\":30},{\"出勤率\":92,\"通过率\":84,\"课程\":\"英语\",\"班级人数\":28},{\"出勤率\":95,\"通过率\":91,\"课程\":\"化学\",\"班级人数\":32},{\"出勤率\":90,\"通过率\":80,\"课程\":\"物理\",\"班级人数\":26},{\"出勤率\":88,\"通过率\":85,\"课程\":\"生物\",\"班级人数\":29},{\"出勤率\":93,\"通过率\":87,\"课程\":\"历史\",\"班级人数\":34},{\"出勤率\":91,\"通过率\":83,\"课程\":\"地理\",\"班级人数\":30},{\"出勤率\":94,\"通过率\":90,\"课程\":\"图画\",\"班级人数\":24},{\"出勤率\":89,\"通过率\":86,\"课程\":\"音乐\",\"班级人数\":20},{\"出勤率\":97,\"通过率\":92,\"课程\":\"计算机\",\"班级人数\":40}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"出勤率\"],\"y\":[\"通过率\"],\"s\":[\"课程\"],\"size\":\"班级人数\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"学习时间\":1,\"考试成绩\":55},{\"学习时间\":2,\"考试成绩\":65},{\"学习时间\":3,\"考试成绩\":70},{\"学习时间\":4,\"考试成绩\":80},{\"学习时间\":5,\"考试成绩\":85},{\"学习时间\":6,\"考试成绩\":90}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"学习时间\"],\"y\":[\"考试成绩\"]}}]"} +{"prompt":"可视化{\"data\":[{\"AdvertisingBudget\":500,\"NewCustomers\":50},{\"AdvertisingBudget\":1000,\"NewCustomers\":100},{\"AdvertisingBudget\":1500,\"NewCustomers\":140},{\"AdvertisingBudget\":2000,\"NewCustomers\":180},{\"AdvertisingBudget\":2500,\"NewCustomers\":210},{\"AdvertisingBudget\":3000,\"NewCustomers\":245}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"AdvertisingBudget\"],\"y\":[\"NewCustomers\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"城市\":\"A\",\"人口\":500000,\"绿化率\":30},{\"城市\":\"B\",\"人口\":1000000,\"绿化率\":25},{\"城市\":\"C\",\"人口\":1500000,\"绿化率\":20},{\"城市\":\"D\",\"人口\":2000000,\"绿化率\":18},{\"城市\":\"E\",\"人口\":2500000,\"绿化率\":15}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"人口\"],\"y\":[\"绿化率\"]}}]"} +{"prompt":"展示{\"data\":[{\"食品\":\"A\",\"价格\":15,\"销量\":200},{\"食品\":\"B\",\"价格\":18,\"销量\":250},{\"食品\":\"C\",\"价格\":20,\"销量\":300},{\"食品\":\"D\",\"价格\":22,\"销量\":320},{\"食品\":\"E\",\"价格\":25,\"销量\":340}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"价格\"],\"y\":[\"销量\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Internet Usage\":70,\"Social Media Activity\":600,\"Age Group\":\"18-24\",\"Population Proportion\":15},{\"Internet Usage\":65,\"Social Media Activity\":400,\"Age Group\":\"25-34\",\"Population Proportion\":18},{\"Internet Usage\":55,\"Social Media Activity\":300,\"Age Group\":\"35-44\",\"Population Proportion\":20},{\"Internet Usage\":50,\"Social Media Activity\":200,\"Age Group\":\"45-54\",\"Population Proportion\":17},{\"Internet Usage\":40,\"Social Media Activity\":150,\"Age Group\":\"55-64\",\"Population Proportion\":15},{\"Internet Usage\":30,\"Social Media Activity\":80,\"Age Group\":\"65+\",\"Population Proportion\":15},{\"Internet Usage\":85,\"Social Media Activity\":700,\"Age Group\":\"16-17\",\"Population Proportion\":5},{\"Internet Usage\":78,\"Social Media Activity\":550,\"Age Group\":\"18-19\",\"Population Proportion\":10},{\"Internet Usage\":60,\"Social Media Activity\":350,\"Age Group\":\"20-21\",\"Population Proportion\":15},{\"Internet Usage\":57,\"Social Media Activity\":250,\"Age Group\":\"22-23\",\"Population Proportion\":12}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"Internet Usage\"],\"y\":[\"Social Media Activity\"],\"s\":[\"Age Group\"],\"size\":\"Population Proportion\"}}]"} +{"prompt":"可视化{\"data\":[{\"房价\":20000,\"租金回报率\":4.5,\"城市\":\"北京\",\"人口\":2100},{\"房价\":18000,\"租金回报率\":3.8,\"城市\":\"上海\",\"人口\":2400},{\"房价\":17000,\"租金回报率\":4,\"城市\":\"深圳\",\"人口\":1300},{\"房价\":16000,\"租金回报率\":4.2,\"城市\":\"广州\",\"人口\":1500},{\"房价\":15000,\"租金回报率\":3.5,\"城市\":\"成都\",\"人口\":1600},{\"房价\":14000,\"租金回报率\":4.8,\"城市\":\"重庆\",\"人口\":1800},{\"房价\":13000,\"租金回报率\":3.6,\"城市\":\"武汉\",\"人口\":1100},{\"房价\":12000,\"租金回报率\":4.1,\"城市\":\"西安\",\"人口\":900},{\"房价\":11000,\"租金回报率\":4.4,\"城市\":\"杭州\",\"人口\":1050},{\"房价\":10000,\"租金回报率\":3.9,\"城市\":\"天津\",\"人口\":1300}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"房价\"],\"y\":[\"租金回报率\"],\"s\":[\"城市\"],\"size\":\"人口\"}}]"} +{"prompt":"展示{\"data\":[{\"HoursWorked\":20,\"WeeklyIncome\":200},{\"HoursWorked\":25,\"WeeklyIncome\":250},{\"HoursWorked\":30,\"WeeklyIncome\":300},{\"HoursWorked\":35,\"WeeklyIncome\":350},{\"HoursWorked\":40,\"WeeklyIncome\":400},{\"HoursWorked\":45,\"WeeklyIncome\":450}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"HoursWorked\"],\"y\":[\"WeeklyIncome\"]}}]"} +{"prompt":"可视化{\"data\":[{\"GDP\":1500,\"Inflation Rate\":3,\"Country\":\"USA\",\"Population\":320},{\"GDP\":900,\"Inflation Rate\":4.2,\"Country\":\"UK\",\"Population\":65},{\"GDP\":800,\"Inflation Rate\":2.5,\"Country\":\"Japan\",\"Population\":127},{\"GDP\":600,\"Inflation Rate\":1.8,\"Country\":\"Germany\",\"Population\":82},{\"GDP\":700,\"Inflation Rate\":2.2,\"Country\":\"India\",\"Population\":1380},{\"GDP\":550,\"Inflation Rate\":3.5,\"Country\":\"Brazil\",\"Population\":212},{\"GDP\":730,\"Inflation Rate\":2.7,\"Country\":\"France\",\"Population\":67},{\"GDP\":470,\"Inflation Rate\":3.9,\"Country\":\"Italy\",\"Population\":60},{\"GDP\":910,\"Inflation Rate\":2.8,\"Country\":\"China\",\"Population\":1420},{\"GDP\":670,\"Inflation Rate\":2.6,\"Country\":\"Canada\",\"Population\":37}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"GDP\"],\"y\":[\"Inflation Rate\"],\"s\":[\"Country\"],\"size\":\"Population\"}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"公司\",\"dataType\":\"string\"},{\"name\":\"员工人数\",\"dataType\":\"number\"},{\"name\":\"营业额\",\"dataType\":\"number\"}],\"data\":[{\"公司\":\"企业A\",\"员工人数\":50,\"营业额\":500000},{\"公司\":\"企业B\",\"员工人数\":100,\"营业额\":1000000},{\"公司\":\"企业C\",\"员工人数\":200,\"营业额\":2000000},{\"公司\":\"企业D\",\"员工人数\":300,\"营业额\":3000000},{\"公司\":\"企业E\",\"员工人数\":400,\"营业额\":4000000}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"员工人数\"],\"y\":[\"营业额\"],\"s\":[\"公司\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"步行距离\":1,\"卡路里消耗\":100},{\"步行距离\":2,\"卡路里消耗\":200},{\"步行距离\":3,\"卡路里消耗\":300},{\"步行距离\":4,\"卡路里消耗\":380},{\"步行距离\":5,\"卡路里消耗\":450},{\"步行距离\":6,\"卡路里消耗\":500},{\"步行距离\":7,\"卡路里消耗\":550}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"步行距离\"],\"y\":[\"卡路里消耗\"]}}]"} +{"prompt":"展示{\"data\":[{\"Mileage\":27,\"Gas Price\":3.2,\"Brand\":\"Toyota\",\"Age\":5},{\"Mileage\":22,\"Gas Price\":3.5,\"Brand\":\"Ford\",\"Age\":8},{\"Mileage\":30,\"Gas Price\":3,\"Brand\":\"Honda\",\"Age\":6},{\"Mileage\":25,\"Gas Price\":2.9,\"Brand\":\"Chevrolet\",\"Age\":7},{\"Mileage\":24,\"Gas Price\":3.1,\"Brand\":\"Hyundai\",\"Age\":4},{\"Mileage\":28,\"Gas Price\":3.3,\"Brand\":\"Mazda\",\"Age\":5},{\"Mileage\":26,\"Gas Price\":2.8,\"Brand\":\"BMW\",\"Age\":8},{\"Mileage\":29,\"Gas Price\":3.4,\"Brand\":\"Nissan\",\"Age\":6},{\"Mileage\":23,\"Gas Price\":3.6,\"Brand\":\"Kia\",\"Age\":5},{\"Mileage\":21,\"Gas Price\":3.2,\"Brand\":\"Volkswagen\",\"Age\":7}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"Mileage\"],\"y\":[\"Gas Price\"],\"s\":[\"Brand\"],\"size\":\"Age\"}}]"} +{"prompt":"展示{\"data\":[{\"Rainfall\":5,\"CropYield\":200},{\"Rainfall\":10,\"CropYield\":230},{\"Rainfall\":15,\"CropYield\":250},{\"Rainfall\":20,\"CropYield\":270},{\"Rainfall\":25,\"CropYield\":290},{\"Rainfall\":30,\"CropYield\":310}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"Rainfall\"],\"y\":[\"CropYield\"]}}]"} +{"prompt":"可视化{\"data\":[{\"Series\":\"I\",\"X\":10,\"Y\":8.04},{\"Series\":\"I\",\"X\":8,\"Y\":6.95},{\"Series\":\"I\",\"X\":13,\"Y\":7.58},{\"Series\":\"I\",\"X\":9,\"Y\":8.81},{\"Series\":\"I\",\"X\":11,\"Y\":8.33},{\"Series\":\"I\",\"X\":14,\"Y\":9.96},{\"Series\":\"I\",\"X\":6,\"Y\":7.24},{\"Series\":\"I\",\"X\":4,\"Y\":4.26},{\"Series\":\"II\",\"X\":10,\"Y\":9.14},{\"Series\":\"II\",\"X\":8,\"Y\":8.14},{\"Series\":\"II\",\"X\":13,\"Y\":8.74},{\"Series\":\"II\",\"X\":9,\"Y\":8.77},{\"Series\":\"II\",\"X\":11,\"Y\":9.26},{\"Series\":\"II\",\"X\":14,\"Y\":8.1},{\"Series\":\"II\",\"X\":6,\"Y\":6.13},{\"Series\":\"II\",\"X\":4,\"Y\":3.1},{\"Series\":\"III\",\"X\":10,\"Y\":7.46},{\"Series\":\"III\",\"X\":8,\"Y\":6.77},{\"Series\":\"III\",\"X\":13,\"Y\":12.74},{\"Series\":\"III\",\"X\":9,\"Y\":7.11},{\"Series\":\"III\",\"X\":11,\"Y\":7.81},{\"Series\":\"III\",\"X\":14,\"Y\":8.84},{\"Series\":\"III\",\"X\":6,\"Y\":6.08},{\"Series\":\"IV\",\"X\":8,\"Y\":6.58},{\"Series\":\"IV\",\"X\":8,\"Y\":5.76},{\"Series\":\"IV\",\"X\":8,\"Y\":7.71},{\"Series\":\"IV\",\"X\":8,\"Y\":8.84},{\"Series\":\"IV\",\"X\":8,\"Y\":8.47},{\"Series\":\"IV\",\"X\":8,\"Y\":7.04},{\"Series\":\"IV\",\"X\":8,\"Y\":5.25},{\"Series\":\"IV\",\"X\":19,\"Y\":12.5}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"X\"],\"x2\":[\"Y\"],\"s\":[\"Series\"]}}]"} +{"prompt":"展示{\"metas\":[{\"name\":\"Subject\",\"dataType\":\"string\"},{\"name\":\"Hours\",\"dataType\":\"number\"},{\"name\":\"Scores\",\"dataType\":\"number\"}],\"data\":[{\"Subject\":\"Math\",\"Hours\":5,\"Scores\":80},{\"Subject\":\"Science\",\"Hours\":10,\"Scores\":85},{\"Subject\":\"History\",\"Hours\":15,\"Scores\":90},{\"Subject\":\"Art\",\"Hours\":20,\"Scores\":95},{\"Subject\":\"PE\",\"Hours\":25,\"Scores\":100}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"Hours\"],\"y\":[\"Scores\"],\"s\":[\"Subject\"]}}]"} +{"prompt":"{\"metas\":[{\"name\":\"城市\",\"dataType\":\"string\"},{\"name\":\"人口\",\"dataType\":\"number\"},{\"name\":\"公园数量\",\"dataType\":\"number\"}],\"data\":[{\"城市\":\"城市A\",\"人口\":1000000,\"公园数量\":50},{\"城市\":\"城市B\",\"人口\":2000000,\"公园数量\":80},{\"城市\":\"城市C\",\"人口\":3000000,\"公园数量\":100},{\"城市\":\"城市D\",\"人口\":4000000,\"公园数量\":150},{\"城市\":\"城市E\",\"人口\":5000000,\"公园数量\":200}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"人口\"],\"y\":[\"公园数量\"],\"s\":[\"城市\"]}}]"} +{"prompt":"推荐图表{\"metas\":[{\"name\":\"国家\",\"dataType\":\"string\"},{\"name\":\"GDP\",\"dataType\":\"number\"},{\"name\":\"人均收入\",\"dataType\":\"number\"}],\"data\":[{\"国家\":\"Country1\",\"GDP\":5000,\"人均收入\":30000},{\"国家\":\"Country2\",\"GDP\":10000,\"人均收入\":35000},{\"国家\":\"Country3\",\"GDP\":15000,\"人均收入\":40000},{\"国家\":\"Country4\",\"GDP\":20000,\"人均收入\":45000},{\"国家\":\"Country5\",\"GDP\":25000,\"人均收入\":50000}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"GDP\"],\"y\":[\"人均收入\"],\"s\":[\"国家\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Age\":25,\"MonthlySavings\":100},{\"Age\":30,\"MonthlySavings\":200},{\"Age\":35,\"MonthlySavings\":300},{\"Age\":40,\"MonthlySavings\":400},{\"Age\":45,\"MonthlySavings\":350},{\"Age\":50,\"MonthlySavings\":320}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"Age\"],\"y\":[\"MonthlySavings\"]}}]"} +{"prompt":"展示{\"data\":[{\"车速\":40,\"燃油效率\":15},{\"车速\":60,\"燃油效率\":16},{\"车速\":80,\"燃油效率\":14},{\"车速\":100,\"燃油效率\":12},{\"车速\":120,\"燃油效率\":10},{\"车速\":140,\"燃油效率\":8}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"车速\"],\"y\":[\"燃油效率\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"平均温度\":22,\"降雨量\":100,\"城市\":\"南京\",\"人口\":840},{\"平均温度\":25,\"降雨量\":80,\"城市\":\"福州\",\"人口\":620},{\"平均温度\":30,\"降雨量\":60,\"城市\":\"广州\",\"人口\":1500},{\"平均温度\":28,\"降雨量\":90,\"城市\":\"长沙\",\"人口\":760},{\"平均温度\":24,\"降雨量\":110,\"城市\":\"苏州\",\"人口\":1040},{\"平均温度\":20,\"降雨量\":130,\"城市\":\"南京\",\"人口\":840},{\"平均温度\":32,\"降雨量\":70,\"城市\":\"海口\",\"人口\":230},{\"平均温度\":27,\"降雨量\":85,\"城市\":\"南昌\",\"人口\":550},{\"平均温度\":26,\"降雨量\":95,\"城市\":\"昆明\",\"人口\":640},{\"平均温度\":23,\"降雨量\":120,\"城市\":\"重庆\",\"人口\":1800}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"平均温度\"],\"y\":[\"降雨量\"],\"s\":[\"城市\"],\"size\":\"人口\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"出勤率\":98,\"通过率\":89,\"课程\":\"数学\",\"班级人数\":30},{\"出勤率\":92,\"通过率\":84,\"课程\":\"英语\",\"班级人数\":28},{\"出勤率\":95,\"通过率\":91,\"课程\":\"化学\",\"班级人数\":32},{\"出勤率\":90,\"通过率\":80,\"课程\":\"物理\",\"班级人数\":26},{\"出勤率\":88,\"通过率\":85,\"课程\":\"生物\",\"班级人数\":29},{\"出勤率\":93,\"通过率\":87,\"课程\":\"历史\",\"班级人数\":34},{\"出勤率\":91,\"通过率\":83,\"课程\":\"地理\",\"班级人数\":30},{\"出勤率\":94,\"通过率\":90,\"课程\":\"图画\",\"班级人数\":24},{\"出勤率\":89,\"通过率\":86,\"课程\":\"音乐\",\"班级人数\":20},{\"出勤率\":97,\"通过率\":92,\"课程\":\"计算机\",\"班级人数\":40}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"出勤率\"],\"y\":[\"通过率\"],\"s\":[\"课程\"],\"size\":\"班级人数\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"学习时间\":1,\"考试成绩\":55},{\"学习时间\":2,\"考试成绩\":65},{\"学习时间\":3,\"考试成绩\":70},{\"学习时间\":4,\"考试成绩\":80},{\"学习时间\":5,\"考试成绩\":85},{\"学习时间\":6,\"考试成绩\":90}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"学习时间\"],\"y\":[\"考试成绩\"]}}]"} +{"prompt":"可视化{\"data\":[{\"AdvertisingBudget\":500,\"NewCustomers\":50},{\"AdvertisingBudget\":1000,\"NewCustomers\":100},{\"AdvertisingBudget\":1500,\"NewCustomers\":140},{\"AdvertisingBudget\":2000,\"NewCustomers\":180},{\"AdvertisingBudget\":2500,\"NewCustomers\":210},{\"AdvertisingBudget\":3000,\"NewCustomers\":245}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"AdvertisingBudget\"],\"y\":[\"NewCustomers\"]}}]"} +{"prompt":"推荐图表{\"data\":[{\"城市\":\"A\",\"人口\":500000,\"绿化率\":30},{\"城市\":\"B\",\"人口\":1000000,\"绿化率\":25},{\"城市\":\"C\",\"人口\":1500000,\"绿化率\":20},{\"城市\":\"D\",\"人口\":2000000,\"绿化率\":18},{\"城市\":\"E\",\"人口\":2500000,\"绿化率\":15}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"人口\"],\"y\":[\"绿化率\"]}}]"} +{"prompt":"可视化{\"data\":[{\"食品\":\"A\",\"价格\":15,\"销量\":200},{\"食品\":\"B\",\"价格\":18,\"销量\":250},{\"食品\":\"C\",\"价格\":20,\"销量\":300},{\"食品\":\"D\",\"价格\":22,\"销量\":320},{\"食品\":\"E\",\"价格\":25,\"销量\":340}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"价格\"],\"y\":[\"销量\"]}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"Internet Usage\":70,\"Social Media Activity\":600,\"Age Group\":\"18-24\",\"Population Proportion\":15},{\"Internet Usage\":65,\"Social Media Activity\":400,\"Age Group\":\"25-34\",\"Population Proportion\":18},{\"Internet Usage\":55,\"Social Media Activity\":300,\"Age Group\":\"35-44\",\"Population Proportion\":20},{\"Internet Usage\":50,\"Social Media Activity\":200,\"Age Group\":\"45-54\",\"Population Proportion\":17},{\"Internet Usage\":40,\"Social Media Activity\":150,\"Age Group\":\"55-64\",\"Population Proportion\":15},{\"Internet Usage\":30,\"Social Media Activity\":80,\"Age Group\":\"65+\",\"Population Proportion\":15},{\"Internet Usage\":85,\"Social Media Activity\":700,\"Age Group\":\"16-17\",\"Population Proportion\":5},{\"Internet Usage\":78,\"Social Media Activity\":550,\"Age Group\":\"18-19\",\"Population Proportion\":10},{\"Internet Usage\":60,\"Social Media Activity\":350,\"Age Group\":\"20-21\",\"Population Proportion\":15},{\"Internet Usage\":57,\"Social Media Activity\":250,\"Age Group\":\"22-23\",\"Population Proportion\":12}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"Internet Usage\"],\"y\":[\"Social Media Activity\"],\"s\":[\"Age Group\"],\"size\":\"Population Proportion\"}}]"} +{"prompt":"展示{\"data\":[{\"房价\":20000,\"租金回报率\":4.5,\"城市\":\"北京\",\"人口\":2100},{\"房价\":18000,\"租金回报率\":3.8,\"城市\":\"上海\",\"人口\":2400},{\"房价\":17000,\"租金回报率\":4,\"城市\":\"深圳\",\"人口\":1300},{\"房价\":16000,\"租金回报率\":4.2,\"城市\":\"广州\",\"人口\":1500},{\"房价\":15000,\"租金回报率\":3.5,\"城市\":\"成都\",\"人口\":1600},{\"房价\":14000,\"租金回报率\":4.8,\"城市\":\"重庆\",\"人口\":1800},{\"房价\":13000,\"租金回报率\":3.6,\"城市\":\"武汉\",\"人口\":1100},{\"房价\":12000,\"租金回报率\":4.1,\"城市\":\"西安\",\"人口\":900},{\"房价\":11000,\"租金回报率\":4.4,\"城市\":\"杭州\",\"人口\":1050},{\"房价\":10000,\"租金回报率\":3.9,\"城市\":\"天津\",\"人口\":1300}]}","answer":"[{\"type\":\"scatter\",\"encode\":{\"x\":[\"房价\"],\"y\":[\"租金回报率\"],\"s\":[\"城市\"],\"size\":\"人口\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"frequency\":9,\"keyword\":\"AntV\"},{\"frequency\":8,\"keyword\":\"F2\"},{\"frequency\":8,\"keyword\":\"G2\"},{\"frequency\":8,\"keyword\":\"G6\"},{\"frequency\":8,\"keyword\":\"DataSet\"},{\"frequency\":8,\"keyword\":\"墨者学院\"},{\"frequency\":6,\"keyword\":\"Analysis\"},{\"frequency\":6,\"keyword\":\"Data Mining\"},{\"frequency\":6,\"keyword\":\"Data Vis\"},{\"frequency\":6,\"keyword\":\"Design\"},{\"frequency\":6,\"keyword\":\"Grammar\"},{\"frequency\":6,\"keyword\":\"Graphics\"},{\"frequency\":6,\"keyword\":\"Graph\"},{\"frequency\":6,\"keyword\":\"Hierarchy\"},{\"frequency\":6,\"keyword\":\"Labeling\"},{\"frequency\":6,\"keyword\":\"Layout\"},{\"frequency\":6,\"keyword\":\"Quantitative\"},{\"frequency\":6,\"keyword\":\"Relation\"},{\"frequency\":6,\"keyword\":\"Statistics\"},{\"frequency\":6,\"keyword\":\"可视化\"},{\"frequency\":6,\"keyword\":\"数据\"},{\"frequency\":6,\"keyword\":\"数据可视化\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"y\":\"frequency\",\"label\":\"数据可视化\"}}]"} +{"prompt":"{\"data\":[{\"value\":21,\"text\":\"天气\"},{\"value\":8.7,\"text\":\"预报\"},{\"value\":15.9,\"text\":\"气候\"},{\"value\":5.6,\"text\":\"季节\"},{\"value\":13.1,\"text\":\"温度\"},{\"value\":7.9,\"text\":\"湿度\"},{\"value\":14.5,\"text\":\"寒冷\"},{\"value\":6.5,\"text\":\"炎热\"},{\"value\":18.4,\"text\":\"暴雨\"},{\"value\":10.2,\"text\":\"晴天\"},{\"value\":9.5,\"text\":\"雷电\"},{\"value\":25.6,\"text\":\"气压\"},{\"value\":11.7,\"text\":\"云层\"},{\"value\":7.4,\"text\":\"风速\"},{\"value\":20.2,\"text\":\"温差\"},{\"value\":16.9,\"text\":\"湿润\"},{\"value\":12.3,\"text\":\"秋季\"},{\"value\":5.3,\"text\":\"霜冻\"},{\"value\":9.3,\"text\":\"暖阳\"},{\"value\":23.8,\"text\":\"陈述\"},{\"value\":17.2,\"text\":\"分析\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"可视化{\"data\":[{\"value\":11,\"text\":\"节日\"},{\"value\":9.4,\"text\":\"庆祝\"},{\"value\":14.3,\"text\":\"佳节\"},{\"value\":6.2,\"text\":\"传统\"},{\"value\":15.7,\"text\":\"团圆\"},{\"value\":7.6,\"text\":\"习俗\"},{\"value\":13.4,\"text\":\"纪念\"},{\"value\":5.1,\"text\":\"活动\"},{\"value\":18.2,\"text\":\"宴会\"},{\"value\":22.5,\"text\":\"节庆\"},{\"value\":10.8,\"text\":\"聚会\"},{\"value\":7.2,\"text\":\"欢乐\"},{\"value\":15.9,\"text\":\"欢庆\"},{\"value\":19.3,\"text\":\"送礼\"},{\"value\":12.7,\"text\":\"热闹\"},{\"value\":8.5,\"text\":\"装饰\"},{\"value\":17.1,\"text\":\"氛围\"},{\"value\":9,\"text\":\"祈福\"},{\"value\":20.8,\"text\":\"喜悦\"},{\"value\":13.8,\"text\":\"纷呈\"},{\"value\":11.6,\"text\":\"年味\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"value\":24.3,\"text\":\"健康\"},{\"value\":8.1,\"text\":\"锻炼\"},{\"value\":13.7,\"text\":\"饮食\"},{\"value\":6.8,\"text\":\"营养\"},{\"value\":10.6,\"text\":\"医生\"},{\"value\":7.5,\"text\":\"体检\"},{\"value\":16.7,\"text\":\"运动\"},{\"value\":5.6,\"text\":\"睡眠\"},{\"value\":20.5,\"text\":\"保健\"},{\"value\":14,\"text\":\"生活\"},{\"value\":9.2,\"text\":\"习惯\"},{\"value\":18.4,\"text\":\"长寿\"},{\"value\":11.1,\"text\":\"身心\"},{\"value\":5.3,\"text\":\"平衡\"},{\"value\":12.5,\"text\":\"营养\"},{\"value\":8.9,\"text\":\"患者\"},{\"value\":16.2,\"text\":\"调整\"},{\"value\":10.7,\"text\":\"放松\"},{\"value\":21.3,\"text\":\"检查\"},{\"value\":15,\"text\":\"健康管理\"},{\"value\":9.8,\"text\":\"养生\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"value\":11.9,\"text\":\"网络\"},{\"value\":7.8,\"text\":\"计算机\"},{\"value\":14.2,\"text\":\"连接\"},{\"value\":6.3,\"text\":\"信息\"},{\"value\":8.6,\"text\":\"下载\"},{\"value\":5.5,\"text\":\"数据\"},{\"value\":18.3,\"text\":\"安全\"},{\"value\":9.7,\"text\":\"技术\"},{\"value\":12.4,\"text\":\"互联网\"},{\"value\":20,\"text\":\"访问\"},{\"value\":16.8,\"text\":\"应用\"},{\"value\":13.5,\"text\":\"用户\"},{\"value\":7.2,\"text\":\"服务器\"},{\"value\":15.1,\"text\":\"协议\"},{\"value\":19.2,\"text\":\"开发\"},{\"value\":6.8,\"text\":\"终端\"},{\"value\":10.8,\"text\":\"联网\"},{\"value\":9,\"text\":\"拓扑\"},{\"value\":25.7,\"text\":\"基础\"},{\"value\":18.9,\"text\":\"云计算\"},{\"value\":16.1,\"text\":\"架构\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"展示{\"data\":[{\"value\":14.7,\"text\":\"梦\"},{\"value\":9.3,\"text\":\"心理\"},{\"value\":18.2,\"text\":\"寓言\"},{\"value\":5.8,\"text\":\"象征\"},{\"value\":10.5,\"text\":\"哲学\"},{\"value\":6.7,\"text\":\"幻想\"},{\"value\":12.3,\"text\":\"探索\"},{\"value\":8,\"text\":\"超自然\"},{\"value\":21.9,\"text\":\"幻想\"},{\"value\":16.5,\"text\":\"潜意识\"},{\"value\":11.4,\"text\":\"故事\"},{\"value\":7.1,\"text\":\"真实\"},{\"value\":25,\"text\":\"感受\"},{\"value\":6.4,\"text\":\"恢复\"},{\"value\":19.6,\"text\":\"梦境\"},{\"value\":8.5,\"text\":\"思维\"},{\"value\":13.7,\"text\":\"分析\"},{\"value\":5.2,\"text\":\"理解\"},{\"value\":9.8,\"text\":\"洞悉\"},{\"value\":22.1,\"text\":\"创造\"},{\"value\":17.4,\"text\":\"解码\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"可视化{\"data\":[{\"frequency\":9,\"keyword\":\"AntV\"},{\"frequency\":8,\"keyword\":\"F2\"},{\"frequency\":8,\"keyword\":\"G2\"},{\"frequency\":8,\"keyword\":\"G6\"},{\"frequency\":8,\"keyword\":\"DataSet\"},{\"frequency\":8,\"keyword\":\"墨者学院\"},{\"frequency\":6,\"keyword\":\"Analysis\"},{\"frequency\":6,\"keyword\":\"Data Mining\"},{\"frequency\":6,\"keyword\":\"Data Vis\"},{\"frequency\":6,\"keyword\":\"Design\"},{\"frequency\":6,\"keyword\":\"Grammar\"},{\"frequency\":6,\"keyword\":\"Graphics\"},{\"frequency\":6,\"keyword\":\"Graph\"},{\"frequency\":6,\"keyword\":\"Hierarchy\"},{\"frequency\":6,\"keyword\":\"Labeling\"},{\"frequency\":6,\"keyword\":\"Layout\"},{\"frequency\":6,\"keyword\":\"Quantitative\"},{\"frequency\":6,\"keyword\":\"Relation\"},{\"frequency\":6,\"keyword\":\"Statistics\"},{\"frequency\":6,\"keyword\":\"可视化\"},{\"frequency\":6,\"keyword\":\"数据\"},{\"frequency\":6,\"keyword\":\"数据可视化\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"y\":\"frequency\",\"label\":\"数据可视化\"}}]"} +{"prompt":"可视化{\"data\":[{\"value\":21,\"text\":\"天气\"},{\"value\":8.7,\"text\":\"预报\"},{\"value\":15.9,\"text\":\"气候\"},{\"value\":5.6,\"text\":\"季节\"},{\"value\":13.1,\"text\":\"温度\"},{\"value\":7.9,\"text\":\"湿度\"},{\"value\":14.5,\"text\":\"寒冷\"},{\"value\":6.5,\"text\":\"炎热\"},{\"value\":18.4,\"text\":\"暴雨\"},{\"value\":10.2,\"text\":\"晴天\"},{\"value\":9.5,\"text\":\"雷电\"},{\"value\":25.6,\"text\":\"气压\"},{\"value\":11.7,\"text\":\"云层\"},{\"value\":7.4,\"text\":\"风速\"},{\"value\":20.2,\"text\":\"温差\"},{\"value\":16.9,\"text\":\"湿润\"},{\"value\":12.3,\"text\":\"秋季\"},{\"value\":5.3,\"text\":\"霜冻\"},{\"value\":9.3,\"text\":\"暖阳\"},{\"value\":23.8,\"text\":\"陈述\"},{\"value\":17.2,\"text\":\"分析\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"value\":11,\"text\":\"节日\"},{\"value\":9.4,\"text\":\"庆祝\"},{\"value\":14.3,\"text\":\"佳节\"},{\"value\":6.2,\"text\":\"传统\"},{\"value\":15.7,\"text\":\"团圆\"},{\"value\":7.6,\"text\":\"习俗\"},{\"value\":13.4,\"text\":\"纪念\"},{\"value\":5.1,\"text\":\"活动\"},{\"value\":18.2,\"text\":\"宴会\"},{\"value\":22.5,\"text\":\"节庆\"},{\"value\":10.8,\"text\":\"聚会\"},{\"value\":7.2,\"text\":\"欢乐\"},{\"value\":15.9,\"text\":\"欢庆\"},{\"value\":19.3,\"text\":\"送礼\"},{\"value\":12.7,\"text\":\"热闹\"},{\"value\":8.5,\"text\":\"装饰\"},{\"value\":17.1,\"text\":\"氛围\"},{\"value\":9,\"text\":\"祈福\"},{\"value\":20.8,\"text\":\"喜悦\"},{\"value\":13.8,\"text\":\"纷呈\"},{\"value\":11.6,\"text\":\"年味\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"可视化{\"data\":[{\"value\":24.3,\"text\":\"健康\"},{\"value\":8.1,\"text\":\"锻炼\"},{\"value\":13.7,\"text\":\"饮食\"},{\"value\":6.8,\"text\":\"营养\"},{\"value\":10.6,\"text\":\"医生\"},{\"value\":7.5,\"text\":\"体检\"},{\"value\":16.7,\"text\":\"运动\"},{\"value\":5.6,\"text\":\"睡眠\"},{\"value\":20.5,\"text\":\"保健\"},{\"value\":14,\"text\":\"生活\"},{\"value\":9.2,\"text\":\"习惯\"},{\"value\":18.4,\"text\":\"长寿\"},{\"value\":11.1,\"text\":\"身心\"},{\"value\":5.3,\"text\":\"平衡\"},{\"value\":12.5,\"text\":\"营养\"},{\"value\":8.9,\"text\":\"患者\"},{\"value\":16.2,\"text\":\"调整\"},{\"value\":10.7,\"text\":\"放松\"},{\"value\":21.3,\"text\":\"检查\"},{\"value\":15,\"text\":\"健康管理\"},{\"value\":9.8,\"text\":\"养生\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"{\"data\":[{\"value\":11.9,\"text\":\"网络\"},{\"value\":7.8,\"text\":\"计算机\"},{\"value\":14.2,\"text\":\"连接\"},{\"value\":6.3,\"text\":\"信息\"},{\"value\":8.6,\"text\":\"下载\"},{\"value\":5.5,\"text\":\"数据\"},{\"value\":18.3,\"text\":\"安全\"},{\"value\":9.7,\"text\":\"技术\"},{\"value\":12.4,\"text\":\"互联网\"},{\"value\":20,\"text\":\"访问\"},{\"value\":16.8,\"text\":\"应用\"},{\"value\":13.5,\"text\":\"用户\"},{\"value\":7.2,\"text\":\"服务器\"},{\"value\":15.1,\"text\":\"协议\"},{\"value\":19.2,\"text\":\"开发\"},{\"value\":6.8,\"text\":\"终端\"},{\"value\":10.8,\"text\":\"联网\"},{\"value\":9,\"text\":\"拓扑\"},{\"value\":25.7,\"text\":\"基础\"},{\"value\":18.9,\"text\":\"云计算\"},{\"value\":16.1,\"text\":\"架构\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"展示{\"data\":[{\"value\":14.7,\"text\":\"梦\"},{\"value\":9.3,\"text\":\"心理\"},{\"value\":18.2,\"text\":\"寓言\"},{\"value\":5.8,\"text\":\"象征\"},{\"value\":10.5,\"text\":\"哲学\"},{\"value\":6.7,\"text\":\"幻想\"},{\"value\":12.3,\"text\":\"探索\"},{\"value\":8,\"text\":\"超自然\"},{\"value\":21.9,\"text\":\"幻想\"},{\"value\":16.5,\"text\":\"潜意识\"},{\"value\":11.4,\"text\":\"故事\"},{\"value\":7.1,\"text\":\"真实\"},{\"value\":25,\"text\":\"感受\"},{\"value\":6.4,\"text\":\"恢复\"},{\"value\":19.6,\"text\":\"梦境\"},{\"value\":8.5,\"text\":\"思维\"},{\"value\":13.7,\"text\":\"分析\"},{\"value\":5.2,\"text\":\"理解\"},{\"value\":9.8,\"text\":\"洞悉\"},{\"value\":22.1,\"text\":\"创造\"},{\"value\":17.4,\"text\":\"解码\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"可视化{\"data\":[{\"frequency\":9,\"keyword\":\"AntV\"},{\"frequency\":8,\"keyword\":\"F2\"},{\"frequency\":8,\"keyword\":\"G2\"},{\"frequency\":8,\"keyword\":\"G6\"},{\"frequency\":8,\"keyword\":\"DataSet\"},{\"frequency\":8,\"keyword\":\"墨者学院\"},{\"frequency\":6,\"keyword\":\"Analysis\"},{\"frequency\":6,\"keyword\":\"Data Mining\"},{\"frequency\":6,\"keyword\":\"Data Vis\"},{\"frequency\":6,\"keyword\":\"Design\"},{\"frequency\":6,\"keyword\":\"Grammar\"},{\"frequency\":6,\"keyword\":\"Graphics\"},{\"frequency\":6,\"keyword\":\"Graph\"},{\"frequency\":6,\"keyword\":\"Hierarchy\"},{\"frequency\":6,\"keyword\":\"Labeling\"},{\"frequency\":6,\"keyword\":\"Layout\"},{\"frequency\":6,\"keyword\":\"Quantitative\"},{\"frequency\":6,\"keyword\":\"Relation\"},{\"frequency\":6,\"keyword\":\"Statistics\"},{\"frequency\":6,\"keyword\":\"可视化\"},{\"frequency\":6,\"keyword\":\"数据\"},{\"frequency\":6,\"keyword\":\"数据可视化\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"y\":\"frequency\",\"label\":\"数据可视化\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"value\":21,\"text\":\"天气\"},{\"value\":8.7,\"text\":\"预报\"},{\"value\":15.9,\"text\":\"气候\"},{\"value\":5.6,\"text\":\"季节\"},{\"value\":13.1,\"text\":\"温度\"},{\"value\":7.9,\"text\":\"湿度\"},{\"value\":14.5,\"text\":\"寒冷\"},{\"value\":6.5,\"text\":\"炎热\"},{\"value\":18.4,\"text\":\"暴雨\"},{\"value\":10.2,\"text\":\"晴天\"},{\"value\":9.5,\"text\":\"雷电\"},{\"value\":25.6,\"text\":\"气压\"},{\"value\":11.7,\"text\":\"云层\"},{\"value\":7.4,\"text\":\"风速\"},{\"value\":20.2,\"text\":\"温差\"},{\"value\":16.9,\"text\":\"湿润\"},{\"value\":12.3,\"text\":\"秋季\"},{\"value\":5.3,\"text\":\"霜冻\"},{\"value\":9.3,\"text\":\"暖阳\"},{\"value\":23.8,\"text\":\"陈述\"},{\"value\":17.2,\"text\":\"分析\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"value\":11,\"text\":\"节日\"},{\"value\":9.4,\"text\":\"庆祝\"},{\"value\":14.3,\"text\":\"佳节\"},{\"value\":6.2,\"text\":\"传统\"},{\"value\":15.7,\"text\":\"团圆\"},{\"value\":7.6,\"text\":\"习俗\"},{\"value\":13.4,\"text\":\"纪念\"},{\"value\":5.1,\"text\":\"活动\"},{\"value\":18.2,\"text\":\"宴会\"},{\"value\":22.5,\"text\":\"节庆\"},{\"value\":10.8,\"text\":\"聚会\"},{\"value\":7.2,\"text\":\"欢乐\"},{\"value\":15.9,\"text\":\"欢庆\"},{\"value\":19.3,\"text\":\"送礼\"},{\"value\":12.7,\"text\":\"热闹\"},{\"value\":8.5,\"text\":\"装饰\"},{\"value\":17.1,\"text\":\"氛围\"},{\"value\":9,\"text\":\"祈福\"},{\"value\":20.8,\"text\":\"喜悦\"},{\"value\":13.8,\"text\":\"纷呈\"},{\"value\":11.6,\"text\":\"年味\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"可视化{\"data\":[{\"value\":24.3,\"text\":\"健康\"},{\"value\":8.1,\"text\":\"锻炼\"},{\"value\":13.7,\"text\":\"饮食\"},{\"value\":6.8,\"text\":\"营养\"},{\"value\":10.6,\"text\":\"医生\"},{\"value\":7.5,\"text\":\"体检\"},{\"value\":16.7,\"text\":\"运动\"},{\"value\":5.6,\"text\":\"睡眠\"},{\"value\":20.5,\"text\":\"保健\"},{\"value\":14,\"text\":\"生活\"},{\"value\":9.2,\"text\":\"习惯\"},{\"value\":18.4,\"text\":\"长寿\"},{\"value\":11.1,\"text\":\"身心\"},{\"value\":5.3,\"text\":\"平衡\"},{\"value\":12.5,\"text\":\"营养\"},{\"value\":8.9,\"text\":\"患者\"},{\"value\":16.2,\"text\":\"调整\"},{\"value\":10.7,\"text\":\"放松\"},{\"value\":21.3,\"text\":\"检查\"},{\"value\":15,\"text\":\"健康管理\"},{\"value\":9.8,\"text\":\"养生\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"{\"data\":[{\"value\":11.9,\"text\":\"网络\"},{\"value\":7.8,\"text\":\"计算机\"},{\"value\":14.2,\"text\":\"连接\"},{\"value\":6.3,\"text\":\"信息\"},{\"value\":8.6,\"text\":\"下载\"},{\"value\":5.5,\"text\":\"数据\"},{\"value\":18.3,\"text\":\"安全\"},{\"value\":9.7,\"text\":\"技术\"},{\"value\":12.4,\"text\":\"互联网\"},{\"value\":20,\"text\":\"访问\"},{\"value\":16.8,\"text\":\"应用\"},{\"value\":13.5,\"text\":\"用户\"},{\"value\":7.2,\"text\":\"服务器\"},{\"value\":15.1,\"text\":\"协议\"},{\"value\":19.2,\"text\":\"开发\"},{\"value\":6.8,\"text\":\"终端\"},{\"value\":10.8,\"text\":\"联网\"},{\"value\":9,\"text\":\"拓扑\"},{\"value\":25.7,\"text\":\"基础\"},{\"value\":18.9,\"text\":\"云计算\"},{\"value\":16.1,\"text\":\"架构\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"value\":14.7,\"text\":\"梦\"},{\"value\":9.3,\"text\":\"心理\"},{\"value\":18.2,\"text\":\"寓言\"},{\"value\":5.8,\"text\":\"象征\"},{\"value\":10.5,\"text\":\"哲学\"},{\"value\":6.7,\"text\":\"幻想\"},{\"value\":12.3,\"text\":\"探索\"},{\"value\":8,\"text\":\"超自然\"},{\"value\":21.9,\"text\":\"幻想\"},{\"value\":16.5,\"text\":\"潜意识\"},{\"value\":11.4,\"text\":\"故事\"},{\"value\":7.1,\"text\":\"真实\"},{\"value\":25,\"text\":\"感受\"},{\"value\":6.4,\"text\":\"恢复\"},{\"value\":19.6,\"text\":\"梦境\"},{\"value\":8.5,\"text\":\"思维\"},{\"value\":13.7,\"text\":\"分析\"},{\"value\":5.2,\"text\":\"理解\"},{\"value\":9.8,\"text\":\"洞悉\"},{\"value\":22.1,\"text\":\"创造\"},{\"value\":17.4,\"text\":\"解码\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"frequency\":9,\"keyword\":\"AntV\"},{\"frequency\":8,\"keyword\":\"F2\"},{\"frequency\":8,\"keyword\":\"G2\"},{\"frequency\":8,\"keyword\":\"G6\"},{\"frequency\":8,\"keyword\":\"DataSet\"},{\"frequency\":8,\"keyword\":\"墨者学院\"},{\"frequency\":6,\"keyword\":\"Analysis\"},{\"frequency\":6,\"keyword\":\"Data Mining\"},{\"frequency\":6,\"keyword\":\"Data Vis\"},{\"frequency\":6,\"keyword\":\"Design\"},{\"frequency\":6,\"keyword\":\"Grammar\"},{\"frequency\":6,\"keyword\":\"Graphics\"},{\"frequency\":6,\"keyword\":\"Graph\"},{\"frequency\":6,\"keyword\":\"Hierarchy\"},{\"frequency\":6,\"keyword\":\"Labeling\"},{\"frequency\":6,\"keyword\":\"Layout\"},{\"frequency\":6,\"keyword\":\"Quantitative\"},{\"frequency\":6,\"keyword\":\"Relation\"},{\"frequency\":6,\"keyword\":\"Statistics\"},{\"frequency\":6,\"keyword\":\"可视化\"},{\"frequency\":6,\"keyword\":\"数据\"},{\"frequency\":6,\"keyword\":\"数据可视化\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"y\":\"frequency\",\"label\":\"数据可视化\"}}]"} +{"prompt":"展示{\"data\":[{\"value\":21,\"text\":\"天气\"},{\"value\":8.7,\"text\":\"预报\"},{\"value\":15.9,\"text\":\"气候\"},{\"value\":5.6,\"text\":\"季节\"},{\"value\":13.1,\"text\":\"温度\"},{\"value\":7.9,\"text\":\"湿度\"},{\"value\":14.5,\"text\":\"寒冷\"},{\"value\":6.5,\"text\":\"炎热\"},{\"value\":18.4,\"text\":\"暴雨\"},{\"value\":10.2,\"text\":\"晴天\"},{\"value\":9.5,\"text\":\"雷电\"},{\"value\":25.6,\"text\":\"气压\"},{\"value\":11.7,\"text\":\"云层\"},{\"value\":7.4,\"text\":\"风速\"},{\"value\":20.2,\"text\":\"温差\"},{\"value\":16.9,\"text\":\"湿润\"},{\"value\":12.3,\"text\":\"秋季\"},{\"value\":5.3,\"text\":\"霜冻\"},{\"value\":9.3,\"text\":\"暖阳\"},{\"value\":23.8,\"text\":\"陈述\"},{\"value\":17.2,\"text\":\"分析\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"展示{\"data\":[{\"value\":11,\"text\":\"节日\"},{\"value\":9.4,\"text\":\"庆祝\"},{\"value\":14.3,\"text\":\"佳节\"},{\"value\":6.2,\"text\":\"传统\"},{\"value\":15.7,\"text\":\"团圆\"},{\"value\":7.6,\"text\":\"习俗\"},{\"value\":13.4,\"text\":\"纪念\"},{\"value\":5.1,\"text\":\"活动\"},{\"value\":18.2,\"text\":\"宴会\"},{\"value\":22.5,\"text\":\"节庆\"},{\"value\":10.8,\"text\":\"聚会\"},{\"value\":7.2,\"text\":\"欢乐\"},{\"value\":15.9,\"text\":\"欢庆\"},{\"value\":19.3,\"text\":\"送礼\"},{\"value\":12.7,\"text\":\"热闹\"},{\"value\":8.5,\"text\":\"装饰\"},{\"value\":17.1,\"text\":\"氛围\"},{\"value\":9,\"text\":\"祈福\"},{\"value\":20.8,\"text\":\"喜悦\"},{\"value\":13.8,\"text\":\"纷呈\"},{\"value\":11.6,\"text\":\"年味\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"value\":24.3,\"text\":\"健康\"},{\"value\":8.1,\"text\":\"锻炼\"},{\"value\":13.7,\"text\":\"饮食\"},{\"value\":6.8,\"text\":\"营养\"},{\"value\":10.6,\"text\":\"医生\"},{\"value\":7.5,\"text\":\"体检\"},{\"value\":16.7,\"text\":\"运动\"},{\"value\":5.6,\"text\":\"睡眠\"},{\"value\":20.5,\"text\":\"保健\"},{\"value\":14,\"text\":\"生活\"},{\"value\":9.2,\"text\":\"习惯\"},{\"value\":18.4,\"text\":\"长寿\"},{\"value\":11.1,\"text\":\"身心\"},{\"value\":5.3,\"text\":\"平衡\"},{\"value\":12.5,\"text\":\"营养\"},{\"value\":8.9,\"text\":\"患者\"},{\"value\":16.2,\"text\":\"调整\"},{\"value\":10.7,\"text\":\"放松\"},{\"value\":21.3,\"text\":\"检查\"},{\"value\":15,\"text\":\"健康管理\"},{\"value\":9.8,\"text\":\"养生\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"可视化{\"data\":[{\"value\":11.9,\"text\":\"网络\"},{\"value\":7.8,\"text\":\"计算机\"},{\"value\":14.2,\"text\":\"连接\"},{\"value\":6.3,\"text\":\"信息\"},{\"value\":8.6,\"text\":\"下载\"},{\"value\":5.5,\"text\":\"数据\"},{\"value\":18.3,\"text\":\"安全\"},{\"value\":9.7,\"text\":\"技术\"},{\"value\":12.4,\"text\":\"互联网\"},{\"value\":20,\"text\":\"访问\"},{\"value\":16.8,\"text\":\"应用\"},{\"value\":13.5,\"text\":\"用户\"},{\"value\":7.2,\"text\":\"服务器\"},{\"value\":15.1,\"text\":\"协议\"},{\"value\":19.2,\"text\":\"开发\"},{\"value\":6.8,\"text\":\"终端\"},{\"value\":10.8,\"text\":\"联网\"},{\"value\":9,\"text\":\"拓扑\"},{\"value\":25.7,\"text\":\"基础\"},{\"value\":18.9,\"text\":\"云计算\"},{\"value\":16.1,\"text\":\"架构\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"value\":14.7,\"text\":\"梦\"},{\"value\":9.3,\"text\":\"心理\"},{\"value\":18.2,\"text\":\"寓言\"},{\"value\":5.8,\"text\":\"象征\"},{\"value\":10.5,\"text\":\"哲学\"},{\"value\":6.7,\"text\":\"幻想\"},{\"value\":12.3,\"text\":\"探索\"},{\"value\":8,\"text\":\"超自然\"},{\"value\":21.9,\"text\":\"幻想\"},{\"value\":16.5,\"text\":\"潜意识\"},{\"value\":11.4,\"text\":\"故事\"},{\"value\":7.1,\"text\":\"真实\"},{\"value\":25,\"text\":\"感受\"},{\"value\":6.4,\"text\":\"恢复\"},{\"value\":19.6,\"text\":\"梦境\"},{\"value\":8.5,\"text\":\"思维\"},{\"value\":13.7,\"text\":\"分析\"},{\"value\":5.2,\"text\":\"理解\"},{\"value\":9.8,\"text\":\"洞悉\"},{\"value\":22.1,\"text\":\"创造\"},{\"value\":17.4,\"text\":\"解码\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"{\"data\":[{\"frequency\":9,\"keyword\":\"AntV\"},{\"frequency\":8,\"keyword\":\"F2\"},{\"frequency\":8,\"keyword\":\"G2\"},{\"frequency\":8,\"keyword\":\"G6\"},{\"frequency\":8,\"keyword\":\"DataSet\"},{\"frequency\":8,\"keyword\":\"墨者学院\"},{\"frequency\":6,\"keyword\":\"Analysis\"},{\"frequency\":6,\"keyword\":\"Data Mining\"},{\"frequency\":6,\"keyword\":\"Data Vis\"},{\"frequency\":6,\"keyword\":\"Design\"},{\"frequency\":6,\"keyword\":\"Grammar\"},{\"frequency\":6,\"keyword\":\"Graphics\"},{\"frequency\":6,\"keyword\":\"Graph\"},{\"frequency\":6,\"keyword\":\"Hierarchy\"},{\"frequency\":6,\"keyword\":\"Labeling\"},{\"frequency\":6,\"keyword\":\"Layout\"},{\"frequency\":6,\"keyword\":\"Quantitative\"},{\"frequency\":6,\"keyword\":\"Relation\"},{\"frequency\":6,\"keyword\":\"Statistics\"},{\"frequency\":6,\"keyword\":\"可视化\"},{\"frequency\":6,\"keyword\":\"数据\"},{\"frequency\":6,\"keyword\":\"数据可视化\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"y\":\"frequency\",\"label\":\"数据可视化\"}}]"} +{"prompt":"可视化{\"data\":[{\"value\":21,\"text\":\"天气\"},{\"value\":8.7,\"text\":\"预报\"},{\"value\":15.9,\"text\":\"气候\"},{\"value\":5.6,\"text\":\"季节\"},{\"value\":13.1,\"text\":\"温度\"},{\"value\":7.9,\"text\":\"湿度\"},{\"value\":14.5,\"text\":\"寒冷\"},{\"value\":6.5,\"text\":\"炎热\"},{\"value\":18.4,\"text\":\"暴雨\"},{\"value\":10.2,\"text\":\"晴天\"},{\"value\":9.5,\"text\":\"雷电\"},{\"value\":25.6,\"text\":\"气压\"},{\"value\":11.7,\"text\":\"云层\"},{\"value\":7.4,\"text\":\"风速\"},{\"value\":20.2,\"text\":\"温差\"},{\"value\":16.9,\"text\":\"湿润\"},{\"value\":12.3,\"text\":\"秋季\"},{\"value\":5.3,\"text\":\"霜冻\"},{\"value\":9.3,\"text\":\"暖阳\"},{\"value\":23.8,\"text\":\"陈述\"},{\"value\":17.2,\"text\":\"分析\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"{\"data\":[{\"value\":11,\"text\":\"节日\"},{\"value\":9.4,\"text\":\"庆祝\"},{\"value\":14.3,\"text\":\"佳节\"},{\"value\":6.2,\"text\":\"传统\"},{\"value\":15.7,\"text\":\"团圆\"},{\"value\":7.6,\"text\":\"习俗\"},{\"value\":13.4,\"text\":\"纪念\"},{\"value\":5.1,\"text\":\"活动\"},{\"value\":18.2,\"text\":\"宴会\"},{\"value\":22.5,\"text\":\"节庆\"},{\"value\":10.8,\"text\":\"聚会\"},{\"value\":7.2,\"text\":\"欢乐\"},{\"value\":15.9,\"text\":\"欢庆\"},{\"value\":19.3,\"text\":\"送礼\"},{\"value\":12.7,\"text\":\"热闹\"},{\"value\":8.5,\"text\":\"装饰\"},{\"value\":17.1,\"text\":\"氛围\"},{\"value\":9,\"text\":\"祈福\"},{\"value\":20.8,\"text\":\"喜悦\"},{\"value\":13.8,\"text\":\"纷呈\"},{\"value\":11.6,\"text\":\"年味\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"可视化{\"data\":[{\"value\":24.3,\"text\":\"健康\"},{\"value\":8.1,\"text\":\"锻炼\"},{\"value\":13.7,\"text\":\"饮食\"},{\"value\":6.8,\"text\":\"营养\"},{\"value\":10.6,\"text\":\"医生\"},{\"value\":7.5,\"text\":\"体检\"},{\"value\":16.7,\"text\":\"运动\"},{\"value\":5.6,\"text\":\"睡眠\"},{\"value\":20.5,\"text\":\"保健\"},{\"value\":14,\"text\":\"生活\"},{\"value\":9.2,\"text\":\"习惯\"},{\"value\":18.4,\"text\":\"长寿\"},{\"value\":11.1,\"text\":\"身心\"},{\"value\":5.3,\"text\":\"平衡\"},{\"value\":12.5,\"text\":\"营养\"},{\"value\":8.9,\"text\":\"患者\"},{\"value\":16.2,\"text\":\"调整\"},{\"value\":10.7,\"text\":\"放松\"},{\"value\":21.3,\"text\":\"检查\"},{\"value\":15,\"text\":\"健康管理\"},{\"value\":9.8,\"text\":\"养生\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"value\":11.9,\"text\":\"网络\"},{\"value\":7.8,\"text\":\"计算机\"},{\"value\":14.2,\"text\":\"连接\"},{\"value\":6.3,\"text\":\"信息\"},{\"value\":8.6,\"text\":\"下载\"},{\"value\":5.5,\"text\":\"数据\"},{\"value\":18.3,\"text\":\"安全\"},{\"value\":9.7,\"text\":\"技术\"},{\"value\":12.4,\"text\":\"互联网\"},{\"value\":20,\"text\":\"访问\"},{\"value\":16.8,\"text\":\"应用\"},{\"value\":13.5,\"text\":\"用户\"},{\"value\":7.2,\"text\":\"服务器\"},{\"value\":15.1,\"text\":\"协议\"},{\"value\":19.2,\"text\":\"开发\"},{\"value\":6.8,\"text\":\"终端\"},{\"value\":10.8,\"text\":\"联网\"},{\"value\":9,\"text\":\"拓扑\"},{\"value\":25.7,\"text\":\"基础\"},{\"value\":18.9,\"text\":\"云计算\"},{\"value\":16.1,\"text\":\"架构\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"value\":14.7,\"text\":\"梦\"},{\"value\":9.3,\"text\":\"心理\"},{\"value\":18.2,\"text\":\"寓言\"},{\"value\":5.8,\"text\":\"象征\"},{\"value\":10.5,\"text\":\"哲学\"},{\"value\":6.7,\"text\":\"幻想\"},{\"value\":12.3,\"text\":\"探索\"},{\"value\":8,\"text\":\"超自然\"},{\"value\":21.9,\"text\":\"幻想\"},{\"value\":16.5,\"text\":\"潜意识\"},{\"value\":11.4,\"text\":\"故事\"},{\"value\":7.1,\"text\":\"真实\"},{\"value\":25,\"text\":\"感受\"},{\"value\":6.4,\"text\":\"恢复\"},{\"value\":19.6,\"text\":\"梦境\"},{\"value\":8.5,\"text\":\"思维\"},{\"value\":13.7,\"text\":\"分析\"},{\"value\":5.2,\"text\":\"理解\"},{\"value\":9.8,\"text\":\"洞悉\"},{\"value\":22.1,\"text\":\"创造\"},{\"value\":17.4,\"text\":\"解码\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"frequency\":9,\"keyword\":\"AntV\"},{\"frequency\":8,\"keyword\":\"F2\"},{\"frequency\":8,\"keyword\":\"G2\"},{\"frequency\":8,\"keyword\":\"G6\"},{\"frequency\":8,\"keyword\":\"DataSet\"},{\"frequency\":8,\"keyword\":\"墨者学院\"},{\"frequency\":6,\"keyword\":\"Analysis\"},{\"frequency\":6,\"keyword\":\"Data Mining\"},{\"frequency\":6,\"keyword\":\"Data Vis\"},{\"frequency\":6,\"keyword\":\"Design\"},{\"frequency\":6,\"keyword\":\"Grammar\"},{\"frequency\":6,\"keyword\":\"Graphics\"},{\"frequency\":6,\"keyword\":\"Graph\"},{\"frequency\":6,\"keyword\":\"Hierarchy\"},{\"frequency\":6,\"keyword\":\"Labeling\"},{\"frequency\":6,\"keyword\":\"Layout\"},{\"frequency\":6,\"keyword\":\"Quantitative\"},{\"frequency\":6,\"keyword\":\"Relation\"},{\"frequency\":6,\"keyword\":\"Statistics\"},{\"frequency\":6,\"keyword\":\"可视化\"},{\"frequency\":6,\"keyword\":\"数据\"},{\"frequency\":6,\"keyword\":\"数据可视化\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"y\":\"frequency\",\"label\":\"数据可视化\"}}]"} +{"prompt":"展示{\"data\":[{\"value\":21,\"text\":\"天气\"},{\"value\":8.7,\"text\":\"预报\"},{\"value\":15.9,\"text\":\"气候\"},{\"value\":5.6,\"text\":\"季节\"},{\"value\":13.1,\"text\":\"温度\"},{\"value\":7.9,\"text\":\"湿度\"},{\"value\":14.5,\"text\":\"寒冷\"},{\"value\":6.5,\"text\":\"炎热\"},{\"value\":18.4,\"text\":\"暴雨\"},{\"value\":10.2,\"text\":\"晴天\"},{\"value\":9.5,\"text\":\"雷电\"},{\"value\":25.6,\"text\":\"气压\"},{\"value\":11.7,\"text\":\"云层\"},{\"value\":7.4,\"text\":\"风速\"},{\"value\":20.2,\"text\":\"温差\"},{\"value\":16.9,\"text\":\"湿润\"},{\"value\":12.3,\"text\":\"秋季\"},{\"value\":5.3,\"text\":\"霜冻\"},{\"value\":9.3,\"text\":\"暖阳\"},{\"value\":23.8,\"text\":\"陈述\"},{\"value\":17.2,\"text\":\"分析\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"value\":11,\"text\":\"节日\"},{\"value\":9.4,\"text\":\"庆祝\"},{\"value\":14.3,\"text\":\"佳节\"},{\"value\":6.2,\"text\":\"传统\"},{\"value\":15.7,\"text\":\"团圆\"},{\"value\":7.6,\"text\":\"习俗\"},{\"value\":13.4,\"text\":\"纪念\"},{\"value\":5.1,\"text\":\"活动\"},{\"value\":18.2,\"text\":\"宴会\"},{\"value\":22.5,\"text\":\"节庆\"},{\"value\":10.8,\"text\":\"聚会\"},{\"value\":7.2,\"text\":\"欢乐\"},{\"value\":15.9,\"text\":\"欢庆\"},{\"value\":19.3,\"text\":\"送礼\"},{\"value\":12.7,\"text\":\"热闹\"},{\"value\":8.5,\"text\":\"装饰\"},{\"value\":17.1,\"text\":\"氛围\"},{\"value\":9,\"text\":\"祈福\"},{\"value\":20.8,\"text\":\"喜悦\"},{\"value\":13.8,\"text\":\"纷呈\"},{\"value\":11.6,\"text\":\"年味\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"展示{\"data\":[{\"value\":24.3,\"text\":\"健康\"},{\"value\":8.1,\"text\":\"锻炼\"},{\"value\":13.7,\"text\":\"饮食\"},{\"value\":6.8,\"text\":\"营养\"},{\"value\":10.6,\"text\":\"医生\"},{\"value\":7.5,\"text\":\"体检\"},{\"value\":16.7,\"text\":\"运动\"},{\"value\":5.6,\"text\":\"睡眠\"},{\"value\":20.5,\"text\":\"保健\"},{\"value\":14,\"text\":\"生活\"},{\"value\":9.2,\"text\":\"习惯\"},{\"value\":18.4,\"text\":\"长寿\"},{\"value\":11.1,\"text\":\"身心\"},{\"value\":5.3,\"text\":\"平衡\"},{\"value\":12.5,\"text\":\"营养\"},{\"value\":8.9,\"text\":\"患者\"},{\"value\":16.2,\"text\":\"调整\"},{\"value\":10.7,\"text\":\"放松\"},{\"value\":21.3,\"text\":\"检查\"},{\"value\":15,\"text\":\"健康管理\"},{\"value\":9.8,\"text\":\"养生\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"value\":11.9,\"text\":\"网络\"},{\"value\":7.8,\"text\":\"计算机\"},{\"value\":14.2,\"text\":\"连接\"},{\"value\":6.3,\"text\":\"信息\"},{\"value\":8.6,\"text\":\"下载\"},{\"value\":5.5,\"text\":\"数据\"},{\"value\":18.3,\"text\":\"安全\"},{\"value\":9.7,\"text\":\"技术\"},{\"value\":12.4,\"text\":\"互联网\"},{\"value\":20,\"text\":\"访问\"},{\"value\":16.8,\"text\":\"应用\"},{\"value\":13.5,\"text\":\"用户\"},{\"value\":7.2,\"text\":\"服务器\"},{\"value\":15.1,\"text\":\"协议\"},{\"value\":19.2,\"text\":\"开发\"},{\"value\":6.8,\"text\":\"终端\"},{\"value\":10.8,\"text\":\"联网\"},{\"value\":9,\"text\":\"拓扑\"},{\"value\":25.7,\"text\":\"基础\"},{\"value\":18.9,\"text\":\"云计算\"},{\"value\":16.1,\"text\":\"架构\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"展示{\"data\":[{\"value\":14.7,\"text\":\"梦\"},{\"value\":9.3,\"text\":\"心理\"},{\"value\":18.2,\"text\":\"寓言\"},{\"value\":5.8,\"text\":\"象征\"},{\"value\":10.5,\"text\":\"哲学\"},{\"value\":6.7,\"text\":\"幻想\"},{\"value\":12.3,\"text\":\"探索\"},{\"value\":8,\"text\":\"超自然\"},{\"value\":21.9,\"text\":\"幻想\"},{\"value\":16.5,\"text\":\"潜意识\"},{\"value\":11.4,\"text\":\"故事\"},{\"value\":7.1,\"text\":\"真实\"},{\"value\":25,\"text\":\"感受\"},{\"value\":6.4,\"text\":\"恢复\"},{\"value\":19.6,\"text\":\"梦境\"},{\"value\":8.5,\"text\":\"思维\"},{\"value\":13.7,\"text\":\"分析\"},{\"value\":5.2,\"text\":\"理解\"},{\"value\":9.8,\"text\":\"洞悉\"},{\"value\":22.1,\"text\":\"创造\"},{\"value\":17.4,\"text\":\"解码\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"frequency\":9,\"keyword\":\"AntV\"},{\"frequency\":8,\"keyword\":\"F2\"},{\"frequency\":8,\"keyword\":\"G2\"},{\"frequency\":8,\"keyword\":\"G6\"},{\"frequency\":8,\"keyword\":\"DataSet\"},{\"frequency\":8,\"keyword\":\"墨者学院\"},{\"frequency\":6,\"keyword\":\"Analysis\"},{\"frequency\":6,\"keyword\":\"Data Mining\"},{\"frequency\":6,\"keyword\":\"Data Vis\"},{\"frequency\":6,\"keyword\":\"Design\"},{\"frequency\":6,\"keyword\":\"Grammar\"},{\"frequency\":6,\"keyword\":\"Graphics\"},{\"frequency\":6,\"keyword\":\"Graph\"},{\"frequency\":6,\"keyword\":\"Hierarchy\"},{\"frequency\":6,\"keyword\":\"Labeling\"},{\"frequency\":6,\"keyword\":\"Layout\"},{\"frequency\":6,\"keyword\":\"Quantitative\"},{\"frequency\":6,\"keyword\":\"Relation\"},{\"frequency\":6,\"keyword\":\"Statistics\"},{\"frequency\":6,\"keyword\":\"可视化\"},{\"frequency\":6,\"keyword\":\"数据\"},{\"frequency\":6,\"keyword\":\"数据可视化\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"y\":\"frequency\",\"label\":\"数据可视化\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"value\":21,\"text\":\"天气\"},{\"value\":8.7,\"text\":\"预报\"},{\"value\":15.9,\"text\":\"气候\"},{\"value\":5.6,\"text\":\"季节\"},{\"value\":13.1,\"text\":\"温度\"},{\"value\":7.9,\"text\":\"湿度\"},{\"value\":14.5,\"text\":\"寒冷\"},{\"value\":6.5,\"text\":\"炎热\"},{\"value\":18.4,\"text\":\"暴雨\"},{\"value\":10.2,\"text\":\"晴天\"},{\"value\":9.5,\"text\":\"雷电\"},{\"value\":25.6,\"text\":\"气压\"},{\"value\":11.7,\"text\":\"云层\"},{\"value\":7.4,\"text\":\"风速\"},{\"value\":20.2,\"text\":\"温差\"},{\"value\":16.9,\"text\":\"湿润\"},{\"value\":12.3,\"text\":\"秋季\"},{\"value\":5.3,\"text\":\"霜冻\"},{\"value\":9.3,\"text\":\"暖阳\"},{\"value\":23.8,\"text\":\"陈述\"},{\"value\":17.2,\"text\":\"分析\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"value\":11,\"text\":\"节日\"},{\"value\":9.4,\"text\":\"庆祝\"},{\"value\":14.3,\"text\":\"佳节\"},{\"value\":6.2,\"text\":\"传统\"},{\"value\":15.7,\"text\":\"团圆\"},{\"value\":7.6,\"text\":\"习俗\"},{\"value\":13.4,\"text\":\"纪念\"},{\"value\":5.1,\"text\":\"活动\"},{\"value\":18.2,\"text\":\"宴会\"},{\"value\":22.5,\"text\":\"节庆\"},{\"value\":10.8,\"text\":\"聚会\"},{\"value\":7.2,\"text\":\"欢乐\"},{\"value\":15.9,\"text\":\"欢庆\"},{\"value\":19.3,\"text\":\"送礼\"},{\"value\":12.7,\"text\":\"热闹\"},{\"value\":8.5,\"text\":\"装饰\"},{\"value\":17.1,\"text\":\"氛围\"},{\"value\":9,\"text\":\"祈福\"},{\"value\":20.8,\"text\":\"喜悦\"},{\"value\":13.8,\"text\":\"纷呈\"},{\"value\":11.6,\"text\":\"年味\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"展示{\"data\":[{\"value\":24.3,\"text\":\"健康\"},{\"value\":8.1,\"text\":\"锻炼\"},{\"value\":13.7,\"text\":\"饮食\"},{\"value\":6.8,\"text\":\"营养\"},{\"value\":10.6,\"text\":\"医生\"},{\"value\":7.5,\"text\":\"体检\"},{\"value\":16.7,\"text\":\"运动\"},{\"value\":5.6,\"text\":\"睡眠\"},{\"value\":20.5,\"text\":\"保健\"},{\"value\":14,\"text\":\"生活\"},{\"value\":9.2,\"text\":\"习惯\"},{\"value\":18.4,\"text\":\"长寿\"},{\"value\":11.1,\"text\":\"身心\"},{\"value\":5.3,\"text\":\"平衡\"},{\"value\":12.5,\"text\":\"营养\"},{\"value\":8.9,\"text\":\"患者\"},{\"value\":16.2,\"text\":\"调整\"},{\"value\":10.7,\"text\":\"放松\"},{\"value\":21.3,\"text\":\"检查\"},{\"value\":15,\"text\":\"健康管理\"},{\"value\":9.8,\"text\":\"养生\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"value\":11.9,\"text\":\"网络\"},{\"value\":7.8,\"text\":\"计算机\"},{\"value\":14.2,\"text\":\"连接\"},{\"value\":6.3,\"text\":\"信息\"},{\"value\":8.6,\"text\":\"下载\"},{\"value\":5.5,\"text\":\"数据\"},{\"value\":18.3,\"text\":\"安全\"},{\"value\":9.7,\"text\":\"技术\"},{\"value\":12.4,\"text\":\"互联网\"},{\"value\":20,\"text\":\"访问\"},{\"value\":16.8,\"text\":\"应用\"},{\"value\":13.5,\"text\":\"用户\"},{\"value\":7.2,\"text\":\"服务器\"},{\"value\":15.1,\"text\":\"协议\"},{\"value\":19.2,\"text\":\"开发\"},{\"value\":6.8,\"text\":\"终端\"},{\"value\":10.8,\"text\":\"联网\"},{\"value\":9,\"text\":\"拓扑\"},{\"value\":25.7,\"text\":\"基础\"},{\"value\":18.9,\"text\":\"云计算\"},{\"value\":16.1,\"text\":\"架构\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"可视化{\"data\":[{\"value\":14.7,\"text\":\"梦\"},{\"value\":9.3,\"text\":\"心理\"},{\"value\":18.2,\"text\":\"寓言\"},{\"value\":5.8,\"text\":\"象征\"},{\"value\":10.5,\"text\":\"哲学\"},{\"value\":6.7,\"text\":\"幻想\"},{\"value\":12.3,\"text\":\"探索\"},{\"value\":8,\"text\":\"超自然\"},{\"value\":21.9,\"text\":\"幻想\"},{\"value\":16.5,\"text\":\"潜意识\"},{\"value\":11.4,\"text\":\"故事\"},{\"value\":7.1,\"text\":\"真实\"},{\"value\":25,\"text\":\"感受\"},{\"value\":6.4,\"text\":\"恢复\"},{\"value\":19.6,\"text\":\"梦境\"},{\"value\":8.5,\"text\":\"思维\"},{\"value\":13.7,\"text\":\"分析\"},{\"value\":5.2,\"text\":\"理解\"},{\"value\":9.8,\"text\":\"洞悉\"},{\"value\":22.1,\"text\":\"创造\"},{\"value\":17.4,\"text\":\"解码\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"{\"data\":[{\"frequency\":9,\"keyword\":\"AntV\"},{\"frequency\":8,\"keyword\":\"F2\"},{\"frequency\":8,\"keyword\":\"G2\"},{\"frequency\":8,\"keyword\":\"G6\"},{\"frequency\":8,\"keyword\":\"DataSet\"},{\"frequency\":8,\"keyword\":\"墨者学院\"},{\"frequency\":6,\"keyword\":\"Analysis\"},{\"frequency\":6,\"keyword\":\"Data Mining\"},{\"frequency\":6,\"keyword\":\"Data Vis\"},{\"frequency\":6,\"keyword\":\"Design\"},{\"frequency\":6,\"keyword\":\"Grammar\"},{\"frequency\":6,\"keyword\":\"Graphics\"},{\"frequency\":6,\"keyword\":\"Graph\"},{\"frequency\":6,\"keyword\":\"Hierarchy\"},{\"frequency\":6,\"keyword\":\"Labeling\"},{\"frequency\":6,\"keyword\":\"Layout\"},{\"frequency\":6,\"keyword\":\"Quantitative\"},{\"frequency\":6,\"keyword\":\"Relation\"},{\"frequency\":6,\"keyword\":\"Statistics\"},{\"frequency\":6,\"keyword\":\"可视化\"},{\"frequency\":6,\"keyword\":\"数据\"},{\"frequency\":6,\"keyword\":\"数据可视化\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"y\":\"frequency\",\"label\":\"数据可视化\"}}]"} +{"prompt":"{\"data\":[{\"value\":21,\"text\":\"天气\"},{\"value\":8.7,\"text\":\"预报\"},{\"value\":15.9,\"text\":\"气候\"},{\"value\":5.6,\"text\":\"季节\"},{\"value\":13.1,\"text\":\"温度\"},{\"value\":7.9,\"text\":\"湿度\"},{\"value\":14.5,\"text\":\"寒冷\"},{\"value\":6.5,\"text\":\"炎热\"},{\"value\":18.4,\"text\":\"暴雨\"},{\"value\":10.2,\"text\":\"晴天\"},{\"value\":9.5,\"text\":\"雷电\"},{\"value\":25.6,\"text\":\"气压\"},{\"value\":11.7,\"text\":\"云层\"},{\"value\":7.4,\"text\":\"风速\"},{\"value\":20.2,\"text\":\"温差\"},{\"value\":16.9,\"text\":\"湿润\"},{\"value\":12.3,\"text\":\"秋季\"},{\"value\":5.3,\"text\":\"霜冻\"},{\"value\":9.3,\"text\":\"暖阳\"},{\"value\":23.8,\"text\":\"陈述\"},{\"value\":17.2,\"text\":\"分析\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"value\":11,\"text\":\"节日\"},{\"value\":9.4,\"text\":\"庆祝\"},{\"value\":14.3,\"text\":\"佳节\"},{\"value\":6.2,\"text\":\"传统\"},{\"value\":15.7,\"text\":\"团圆\"},{\"value\":7.6,\"text\":\"习俗\"},{\"value\":13.4,\"text\":\"纪念\"},{\"value\":5.1,\"text\":\"活动\"},{\"value\":18.2,\"text\":\"宴会\"},{\"value\":22.5,\"text\":\"节庆\"},{\"value\":10.8,\"text\":\"聚会\"},{\"value\":7.2,\"text\":\"欢乐\"},{\"value\":15.9,\"text\":\"欢庆\"},{\"value\":19.3,\"text\":\"送礼\"},{\"value\":12.7,\"text\":\"热闹\"},{\"value\":8.5,\"text\":\"装饰\"},{\"value\":17.1,\"text\":\"氛围\"},{\"value\":9,\"text\":\"祈福\"},{\"value\":20.8,\"text\":\"喜悦\"},{\"value\":13.8,\"text\":\"纷呈\"},{\"value\":11.6,\"text\":\"年味\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"value\":24.3,\"text\":\"健康\"},{\"value\":8.1,\"text\":\"锻炼\"},{\"value\":13.7,\"text\":\"饮食\"},{\"value\":6.8,\"text\":\"营养\"},{\"value\":10.6,\"text\":\"医生\"},{\"value\":7.5,\"text\":\"体检\"},{\"value\":16.7,\"text\":\"运动\"},{\"value\":5.6,\"text\":\"睡眠\"},{\"value\":20.5,\"text\":\"保健\"},{\"value\":14,\"text\":\"生活\"},{\"value\":9.2,\"text\":\"习惯\"},{\"value\":18.4,\"text\":\"长寿\"},{\"value\":11.1,\"text\":\"身心\"},{\"value\":5.3,\"text\":\"平衡\"},{\"value\":12.5,\"text\":\"营养\"},{\"value\":8.9,\"text\":\"患者\"},{\"value\":16.2,\"text\":\"调整\"},{\"value\":10.7,\"text\":\"放松\"},{\"value\":21.3,\"text\":\"检查\"},{\"value\":15,\"text\":\"健康管理\"},{\"value\":9.8,\"text\":\"养生\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"value\":11.9,\"text\":\"网络\"},{\"value\":7.8,\"text\":\"计算机\"},{\"value\":14.2,\"text\":\"连接\"},{\"value\":6.3,\"text\":\"信息\"},{\"value\":8.6,\"text\":\"下载\"},{\"value\":5.5,\"text\":\"数据\"},{\"value\":18.3,\"text\":\"安全\"},{\"value\":9.7,\"text\":\"技术\"},{\"value\":12.4,\"text\":\"互联网\"},{\"value\":20,\"text\":\"访问\"},{\"value\":16.8,\"text\":\"应用\"},{\"value\":13.5,\"text\":\"用户\"},{\"value\":7.2,\"text\":\"服务器\"},{\"value\":15.1,\"text\":\"协议\"},{\"value\":19.2,\"text\":\"开发\"},{\"value\":6.8,\"text\":\"终端\"},{\"value\":10.8,\"text\":\"联网\"},{\"value\":9,\"text\":\"拓扑\"},{\"value\":25.7,\"text\":\"基础\"},{\"value\":18.9,\"text\":\"云计算\"},{\"value\":16.1,\"text\":\"架构\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"{\"data\":[{\"value\":14.7,\"text\":\"梦\"},{\"value\":9.3,\"text\":\"心理\"},{\"value\":18.2,\"text\":\"寓言\"},{\"value\":5.8,\"text\":\"象征\"},{\"value\":10.5,\"text\":\"哲学\"},{\"value\":6.7,\"text\":\"幻想\"},{\"value\":12.3,\"text\":\"探索\"},{\"value\":8,\"text\":\"超自然\"},{\"value\":21.9,\"text\":\"幻想\"},{\"value\":16.5,\"text\":\"潜意识\"},{\"value\":11.4,\"text\":\"故事\"},{\"value\":7.1,\"text\":\"真实\"},{\"value\":25,\"text\":\"感受\"},{\"value\":6.4,\"text\":\"恢复\"},{\"value\":19.6,\"text\":\"梦境\"},{\"value\":8.5,\"text\":\"思维\"},{\"value\":13.7,\"text\":\"分析\"},{\"value\":5.2,\"text\":\"理解\"},{\"value\":9.8,\"text\":\"洞悉\"},{\"value\":22.1,\"text\":\"创造\"},{\"value\":17.4,\"text\":\"解码\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"{\"data\":[{\"frequency\":9,\"keyword\":\"AntV\"},{\"frequency\":8,\"keyword\":\"F2\"},{\"frequency\":8,\"keyword\":\"G2\"},{\"frequency\":8,\"keyword\":\"G6\"},{\"frequency\":8,\"keyword\":\"DataSet\"},{\"frequency\":8,\"keyword\":\"墨者学院\"},{\"frequency\":6,\"keyword\":\"Analysis\"},{\"frequency\":6,\"keyword\":\"Data Mining\"},{\"frequency\":6,\"keyword\":\"Data Vis\"},{\"frequency\":6,\"keyword\":\"Design\"},{\"frequency\":6,\"keyword\":\"Grammar\"},{\"frequency\":6,\"keyword\":\"Graphics\"},{\"frequency\":6,\"keyword\":\"Graph\"},{\"frequency\":6,\"keyword\":\"Hierarchy\"},{\"frequency\":6,\"keyword\":\"Labeling\"},{\"frequency\":6,\"keyword\":\"Layout\"},{\"frequency\":6,\"keyword\":\"Quantitative\"},{\"frequency\":6,\"keyword\":\"Relation\"},{\"frequency\":6,\"keyword\":\"Statistics\"},{\"frequency\":6,\"keyword\":\"可视化\"},{\"frequency\":6,\"keyword\":\"数据\"},{\"frequency\":6,\"keyword\":\"数据可视化\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"y\":\"frequency\",\"label\":\"数据可视化\"}}]"} +{"prompt":"可视化{\"data\":[{\"value\":21,\"text\":\"天气\"},{\"value\":8.7,\"text\":\"预报\"},{\"value\":15.9,\"text\":\"气候\"},{\"value\":5.6,\"text\":\"季节\"},{\"value\":13.1,\"text\":\"温度\"},{\"value\":7.9,\"text\":\"湿度\"},{\"value\":14.5,\"text\":\"寒冷\"},{\"value\":6.5,\"text\":\"炎热\"},{\"value\":18.4,\"text\":\"暴雨\"},{\"value\":10.2,\"text\":\"晴天\"},{\"value\":9.5,\"text\":\"雷电\"},{\"value\":25.6,\"text\":\"气压\"},{\"value\":11.7,\"text\":\"云层\"},{\"value\":7.4,\"text\":\"风速\"},{\"value\":20.2,\"text\":\"温差\"},{\"value\":16.9,\"text\":\"湿润\"},{\"value\":12.3,\"text\":\"秋季\"},{\"value\":5.3,\"text\":\"霜冻\"},{\"value\":9.3,\"text\":\"暖阳\"},{\"value\":23.8,\"text\":\"陈述\"},{\"value\":17.2,\"text\":\"分析\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"可视化{\"data\":[{\"value\":11,\"text\":\"节日\"},{\"value\":9.4,\"text\":\"庆祝\"},{\"value\":14.3,\"text\":\"佳节\"},{\"value\":6.2,\"text\":\"传统\"},{\"value\":15.7,\"text\":\"团圆\"},{\"value\":7.6,\"text\":\"习俗\"},{\"value\":13.4,\"text\":\"纪念\"},{\"value\":5.1,\"text\":\"活动\"},{\"value\":18.2,\"text\":\"宴会\"},{\"value\":22.5,\"text\":\"节庆\"},{\"value\":10.8,\"text\":\"聚会\"},{\"value\":7.2,\"text\":\"欢乐\"},{\"value\":15.9,\"text\":\"欢庆\"},{\"value\":19.3,\"text\":\"送礼\"},{\"value\":12.7,\"text\":\"热闹\"},{\"value\":8.5,\"text\":\"装饰\"},{\"value\":17.1,\"text\":\"氛围\"},{\"value\":9,\"text\":\"祈福\"},{\"value\":20.8,\"text\":\"喜悦\"},{\"value\":13.8,\"text\":\"纷呈\"},{\"value\":11.6,\"text\":\"年味\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"{\"data\":[{\"value\":24.3,\"text\":\"健康\"},{\"value\":8.1,\"text\":\"锻炼\"},{\"value\":13.7,\"text\":\"饮食\"},{\"value\":6.8,\"text\":\"营养\"},{\"value\":10.6,\"text\":\"医生\"},{\"value\":7.5,\"text\":\"体检\"},{\"value\":16.7,\"text\":\"运动\"},{\"value\":5.6,\"text\":\"睡眠\"},{\"value\":20.5,\"text\":\"保健\"},{\"value\":14,\"text\":\"生活\"},{\"value\":9.2,\"text\":\"习惯\"},{\"value\":18.4,\"text\":\"长寿\"},{\"value\":11.1,\"text\":\"身心\"},{\"value\":5.3,\"text\":\"平衡\"},{\"value\":12.5,\"text\":\"营养\"},{\"value\":8.9,\"text\":\"患者\"},{\"value\":16.2,\"text\":\"调整\"},{\"value\":10.7,\"text\":\"放松\"},{\"value\":21.3,\"text\":\"检查\"},{\"value\":15,\"text\":\"健康管理\"},{\"value\":9.8,\"text\":\"养生\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"value\":11.9,\"text\":\"网络\"},{\"value\":7.8,\"text\":\"计算机\"},{\"value\":14.2,\"text\":\"连接\"},{\"value\":6.3,\"text\":\"信息\"},{\"value\":8.6,\"text\":\"下载\"},{\"value\":5.5,\"text\":\"数据\"},{\"value\":18.3,\"text\":\"安全\"},{\"value\":9.7,\"text\":\"技术\"},{\"value\":12.4,\"text\":\"互联网\"},{\"value\":20,\"text\":\"访问\"},{\"value\":16.8,\"text\":\"应用\"},{\"value\":13.5,\"text\":\"用户\"},{\"value\":7.2,\"text\":\"服务器\"},{\"value\":15.1,\"text\":\"协议\"},{\"value\":19.2,\"text\":\"开发\"},{\"value\":6.8,\"text\":\"终端\"},{\"value\":10.8,\"text\":\"联网\"},{\"value\":9,\"text\":\"拓扑\"},{\"value\":25.7,\"text\":\"基础\"},{\"value\":18.9,\"text\":\"云计算\"},{\"value\":16.1,\"text\":\"架构\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"{\"data\":[{\"value\":14.7,\"text\":\"梦\"},{\"value\":9.3,\"text\":\"心理\"},{\"value\":18.2,\"text\":\"寓言\"},{\"value\":5.8,\"text\":\"象征\"},{\"value\":10.5,\"text\":\"哲学\"},{\"value\":6.7,\"text\":\"幻想\"},{\"value\":12.3,\"text\":\"探索\"},{\"value\":8,\"text\":\"超自然\"},{\"value\":21.9,\"text\":\"幻想\"},{\"value\":16.5,\"text\":\"潜意识\"},{\"value\":11.4,\"text\":\"故事\"},{\"value\":7.1,\"text\":\"真实\"},{\"value\":25,\"text\":\"感受\"},{\"value\":6.4,\"text\":\"恢复\"},{\"value\":19.6,\"text\":\"梦境\"},{\"value\":8.5,\"text\":\"思维\"},{\"value\":13.7,\"text\":\"分析\"},{\"value\":5.2,\"text\":\"理解\"},{\"value\":9.8,\"text\":\"洞悉\"},{\"value\":22.1,\"text\":\"创造\"},{\"value\":17.4,\"text\":\"解码\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"frequency\":9,\"keyword\":\"AntV\"},{\"frequency\":8,\"keyword\":\"F2\"},{\"frequency\":8,\"keyword\":\"G2\"},{\"frequency\":8,\"keyword\":\"G6\"},{\"frequency\":8,\"keyword\":\"DataSet\"},{\"frequency\":8,\"keyword\":\"墨者学院\"},{\"frequency\":6,\"keyword\":\"Analysis\"},{\"frequency\":6,\"keyword\":\"Data Mining\"},{\"frequency\":6,\"keyword\":\"Data Vis\"},{\"frequency\":6,\"keyword\":\"Design\"},{\"frequency\":6,\"keyword\":\"Grammar\"},{\"frequency\":6,\"keyword\":\"Graphics\"},{\"frequency\":6,\"keyword\":\"Graph\"},{\"frequency\":6,\"keyword\":\"Hierarchy\"},{\"frequency\":6,\"keyword\":\"Labeling\"},{\"frequency\":6,\"keyword\":\"Layout\"},{\"frequency\":6,\"keyword\":\"Quantitative\"},{\"frequency\":6,\"keyword\":\"Relation\"},{\"frequency\":6,\"keyword\":\"Statistics\"},{\"frequency\":6,\"keyword\":\"可视化\"},{\"frequency\":6,\"keyword\":\"数据\"},{\"frequency\":6,\"keyword\":\"数据可视化\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"y\":\"frequency\",\"label\":\"数据可视化\"}}]"} +{"prompt":"可视化下列数据{\"data\":[{\"value\":21,\"text\":\"天气\"},{\"value\":8.7,\"text\":\"预报\"},{\"value\":15.9,\"text\":\"气候\"},{\"value\":5.6,\"text\":\"季节\"},{\"value\":13.1,\"text\":\"温度\"},{\"value\":7.9,\"text\":\"湿度\"},{\"value\":14.5,\"text\":\"寒冷\"},{\"value\":6.5,\"text\":\"炎热\"},{\"value\":18.4,\"text\":\"暴雨\"},{\"value\":10.2,\"text\":\"晴天\"},{\"value\":9.5,\"text\":\"雷电\"},{\"value\":25.6,\"text\":\"气压\"},{\"value\":11.7,\"text\":\"云层\"},{\"value\":7.4,\"text\":\"风速\"},{\"value\":20.2,\"text\":\"温差\"},{\"value\":16.9,\"text\":\"湿润\"},{\"value\":12.3,\"text\":\"秋季\"},{\"value\":5.3,\"text\":\"霜冻\"},{\"value\":9.3,\"text\":\"暖阳\"},{\"value\":23.8,\"text\":\"陈述\"},{\"value\":17.2,\"text\":\"分析\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"value\":11,\"text\":\"节日\"},{\"value\":9.4,\"text\":\"庆祝\"},{\"value\":14.3,\"text\":\"佳节\"},{\"value\":6.2,\"text\":\"传统\"},{\"value\":15.7,\"text\":\"团圆\"},{\"value\":7.6,\"text\":\"习俗\"},{\"value\":13.4,\"text\":\"纪念\"},{\"value\":5.1,\"text\":\"活动\"},{\"value\":18.2,\"text\":\"宴会\"},{\"value\":22.5,\"text\":\"节庆\"},{\"value\":10.8,\"text\":\"聚会\"},{\"value\":7.2,\"text\":\"欢乐\"},{\"value\":15.9,\"text\":\"欢庆\"},{\"value\":19.3,\"text\":\"送礼\"},{\"value\":12.7,\"text\":\"热闹\"},{\"value\":8.5,\"text\":\"装饰\"},{\"value\":17.1,\"text\":\"氛围\"},{\"value\":9,\"text\":\"祈福\"},{\"value\":20.8,\"text\":\"喜悦\"},{\"value\":13.8,\"text\":\"纷呈\"},{\"value\":11.6,\"text\":\"年味\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"可视化{\"data\":[{\"value\":24.3,\"text\":\"健康\"},{\"value\":8.1,\"text\":\"锻炼\"},{\"value\":13.7,\"text\":\"饮食\"},{\"value\":6.8,\"text\":\"营养\"},{\"value\":10.6,\"text\":\"医生\"},{\"value\":7.5,\"text\":\"体检\"},{\"value\":16.7,\"text\":\"运动\"},{\"value\":5.6,\"text\":\"睡眠\"},{\"value\":20.5,\"text\":\"保健\"},{\"value\":14,\"text\":\"生活\"},{\"value\":9.2,\"text\":\"习惯\"},{\"value\":18.4,\"text\":\"长寿\"},{\"value\":11.1,\"text\":\"身心\"},{\"value\":5.3,\"text\":\"平衡\"},{\"value\":12.5,\"text\":\"营养\"},{\"value\":8.9,\"text\":\"患者\"},{\"value\":16.2,\"text\":\"调整\"},{\"value\":10.7,\"text\":\"放松\"},{\"value\":21.3,\"text\":\"检查\"},{\"value\":15,\"text\":\"健康管理\"},{\"value\":9.8,\"text\":\"养生\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"展示{\"data\":[{\"value\":11.9,\"text\":\"网络\"},{\"value\":7.8,\"text\":\"计算机\"},{\"value\":14.2,\"text\":\"连接\"},{\"value\":6.3,\"text\":\"信息\"},{\"value\":8.6,\"text\":\"下载\"},{\"value\":5.5,\"text\":\"数据\"},{\"value\":18.3,\"text\":\"安全\"},{\"value\":9.7,\"text\":\"技术\"},{\"value\":12.4,\"text\":\"互联网\"},{\"value\":20,\"text\":\"访问\"},{\"value\":16.8,\"text\":\"应用\"},{\"value\":13.5,\"text\":\"用户\"},{\"value\":7.2,\"text\":\"服务器\"},{\"value\":15.1,\"text\":\"协议\"},{\"value\":19.2,\"text\":\"开发\"},{\"value\":6.8,\"text\":\"终端\"},{\"value\":10.8,\"text\":\"联网\"},{\"value\":9,\"text\":\"拓扑\"},{\"value\":25.7,\"text\":\"基础\"},{\"value\":18.9,\"text\":\"云计算\"},{\"value\":16.1,\"text\":\"架构\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"value\":14.7,\"text\":\"梦\"},{\"value\":9.3,\"text\":\"心理\"},{\"value\":18.2,\"text\":\"寓言\"},{\"value\":5.8,\"text\":\"象征\"},{\"value\":10.5,\"text\":\"哲学\"},{\"value\":6.7,\"text\":\"幻想\"},{\"value\":12.3,\"text\":\"探索\"},{\"value\":8,\"text\":\"超自然\"},{\"value\":21.9,\"text\":\"幻想\"},{\"value\":16.5,\"text\":\"潜意识\"},{\"value\":11.4,\"text\":\"故事\"},{\"value\":7.1,\"text\":\"真实\"},{\"value\":25,\"text\":\"感受\"},{\"value\":6.4,\"text\":\"恢复\"},{\"value\":19.6,\"text\":\"梦境\"},{\"value\":8.5,\"text\":\"思维\"},{\"value\":13.7,\"text\":\"分析\"},{\"value\":5.2,\"text\":\"理解\"},{\"value\":9.8,\"text\":\"洞悉\"},{\"value\":22.1,\"text\":\"创造\"},{\"value\":17.4,\"text\":\"解码\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"展示{\"data\":[{\"frequency\":9,\"keyword\":\"AntV\"},{\"frequency\":8,\"keyword\":\"F2\"},{\"frequency\":8,\"keyword\":\"G2\"},{\"frequency\":8,\"keyword\":\"G6\"},{\"frequency\":8,\"keyword\":\"DataSet\"},{\"frequency\":8,\"keyword\":\"墨者学院\"},{\"frequency\":6,\"keyword\":\"Analysis\"},{\"frequency\":6,\"keyword\":\"Data Mining\"},{\"frequency\":6,\"keyword\":\"Data Vis\"},{\"frequency\":6,\"keyword\":\"Design\"},{\"frequency\":6,\"keyword\":\"Grammar\"},{\"frequency\":6,\"keyword\":\"Graphics\"},{\"frequency\":6,\"keyword\":\"Graph\"},{\"frequency\":6,\"keyword\":\"Hierarchy\"},{\"frequency\":6,\"keyword\":\"Labeling\"},{\"frequency\":6,\"keyword\":\"Layout\"},{\"frequency\":6,\"keyword\":\"Quantitative\"},{\"frequency\":6,\"keyword\":\"Relation\"},{\"frequency\":6,\"keyword\":\"Statistics\"},{\"frequency\":6,\"keyword\":\"可视化\"},{\"frequency\":6,\"keyword\":\"数据\"},{\"frequency\":6,\"keyword\":\"数据可视化\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"y\":\"frequency\",\"label\":\"数据可视化\"}}]"} +{"prompt":"推荐图表{\"data\":[{\"value\":21,\"text\":\"天气\"},{\"value\":8.7,\"text\":\"预报\"},{\"value\":15.9,\"text\":\"气候\"},{\"value\":5.6,\"text\":\"季节\"},{\"value\":13.1,\"text\":\"温度\"},{\"value\":7.9,\"text\":\"湿度\"},{\"value\":14.5,\"text\":\"寒冷\"},{\"value\":6.5,\"text\":\"炎热\"},{\"value\":18.4,\"text\":\"暴雨\"},{\"value\":10.2,\"text\":\"晴天\"},{\"value\":9.5,\"text\":\"雷电\"},{\"value\":25.6,\"text\":\"气压\"},{\"value\":11.7,\"text\":\"云层\"},{\"value\":7.4,\"text\":\"风速\"},{\"value\":20.2,\"text\":\"温差\"},{\"value\":16.9,\"text\":\"湿润\"},{\"value\":12.3,\"text\":\"秋季\"},{\"value\":5.3,\"text\":\"霜冻\"},{\"value\":9.3,\"text\":\"暖阳\"},{\"value\":23.8,\"text\":\"陈述\"},{\"value\":17.2,\"text\":\"分析\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"可视化{\"data\":[{\"value\":11,\"text\":\"节日\"},{\"value\":9.4,\"text\":\"庆祝\"},{\"value\":14.3,\"text\":\"佳节\"},{\"value\":6.2,\"text\":\"传统\"},{\"value\":15.7,\"text\":\"团圆\"},{\"value\":7.6,\"text\":\"习俗\"},{\"value\":13.4,\"text\":\"纪念\"},{\"value\":5.1,\"text\":\"活动\"},{\"value\":18.2,\"text\":\"宴会\"},{\"value\":22.5,\"text\":\"节庆\"},{\"value\":10.8,\"text\":\"聚会\"},{\"value\":7.2,\"text\":\"欢乐\"},{\"value\":15.9,\"text\":\"欢庆\"},{\"value\":19.3,\"text\":\"送礼\"},{\"value\":12.7,\"text\":\"热闹\"},{\"value\":8.5,\"text\":\"装饰\"},{\"value\":17.1,\"text\":\"氛围\"},{\"value\":9,\"text\":\"祈福\"},{\"value\":20.8,\"text\":\"喜悦\"},{\"value\":13.8,\"text\":\"纷呈\"},{\"value\":11.6,\"text\":\"年味\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"##场景:你是一个可视化专家,通过我提供的可信赖的知识,和数据输入,推荐合理的图表配置{\"data\":[{\"value\":24.3,\"text\":\"健康\"},{\"value\":8.1,\"text\":\"锻炼\"},{\"value\":13.7,\"text\":\"饮食\"},{\"value\":6.8,\"text\":\"营养\"},{\"value\":10.6,\"text\":\"医生\"},{\"value\":7.5,\"text\":\"体检\"},{\"value\":16.7,\"text\":\"运动\"},{\"value\":5.6,\"text\":\"睡眠\"},{\"value\":20.5,\"text\":\"保健\"},{\"value\":14,\"text\":\"生活\"},{\"value\":9.2,\"text\":\"习惯\"},{\"value\":18.4,\"text\":\"长寿\"},{\"value\":11.1,\"text\":\"身心\"},{\"value\":5.3,\"text\":\"平衡\"},{\"value\":12.5,\"text\":\"营养\"},{\"value\":8.9,\"text\":\"患者\"},{\"value\":16.2,\"text\":\"调整\"},{\"value\":10.7,\"text\":\"放松\"},{\"value\":21.3,\"text\":\"检查\"},{\"value\":15,\"text\":\"健康管理\"},{\"value\":9.8,\"text\":\"养生\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"展示{\"data\":[{\"value\":11.9,\"text\":\"网络\"},{\"value\":7.8,\"text\":\"计算机\"},{\"value\":14.2,\"text\":\"连接\"},{\"value\":6.3,\"text\":\"信息\"},{\"value\":8.6,\"text\":\"下载\"},{\"value\":5.5,\"text\":\"数据\"},{\"value\":18.3,\"text\":\"安全\"},{\"value\":9.7,\"text\":\"技术\"},{\"value\":12.4,\"text\":\"互联网\"},{\"value\":20,\"text\":\"访问\"},{\"value\":16.8,\"text\":\"应用\"},{\"value\":13.5,\"text\":\"用户\"},{\"value\":7.2,\"text\":\"服务器\"},{\"value\":15.1,\"text\":\"协议\"},{\"value\":19.2,\"text\":\"开发\"},{\"value\":6.8,\"text\":\"终端\"},{\"value\":10.8,\"text\":\"联网\"},{\"value\":9,\"text\":\"拓扑\"},{\"value\":25.7,\"text\":\"基础\"},{\"value\":18.9,\"text\":\"云计算\"},{\"value\":16.1,\"text\":\"架构\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} +{"prompt":"展示{\"data\":[{\"value\":14.7,\"text\":\"梦\"},{\"value\":9.3,\"text\":\"心理\"},{\"value\":18.2,\"text\":\"寓言\"},{\"value\":5.8,\"text\":\"象征\"},{\"value\":10.5,\"text\":\"哲学\"},{\"value\":6.7,\"text\":\"幻想\"},{\"value\":12.3,\"text\":\"探索\"},{\"value\":8,\"text\":\"超自然\"},{\"value\":21.9,\"text\":\"幻想\"},{\"value\":16.5,\"text\":\"潜意识\"},{\"value\":11.4,\"text\":\"故事\"},{\"value\":7.1,\"text\":\"真实\"},{\"value\":25,\"text\":\"感受\"},{\"value\":6.4,\"text\":\"恢复\"},{\"value\":19.6,\"text\":\"梦境\"},{\"value\":8.5,\"text\":\"思维\"},{\"value\":13.7,\"text\":\"分析\"},{\"value\":5.2,\"text\":\"理解\"},{\"value\":9.8,\"text\":\"洞悉\"},{\"value\":22.1,\"text\":\"创造\"},{\"value\":17.4,\"text\":\"解码\"}]}","answer":"[{\"type\":\"wordCloud\",\"encode\":{\"label\":\"text\",\"y\":\"value\"}}]"} diff --git a/evaluations/datastes/recommend/heatmap/01_two_dim_one_measure.json b/evaluations/datastes/recommend/heatmap/01_two_dim_one_measure.json new file mode 100644 index 0000000..36d7f4a --- /dev/null +++ b/evaluations/datastes/recommend/heatmap/01_two_dim_one_measure.json @@ -0,0 +1,583 @@ +[ + { + "source": { + "metas": [ + { + "name": "budgetYear", + "dataType": "date" + }, + { + "name": "forecastYear", + "dataType": "date" + }, + { + "name": "value", + "dataType": "number" + } + ], + "data": [ + {"budgetYear": 1980, "forecastYear": 1980, "value": -0.103}, + {"budgetYear": 1980, "forecastYear": 1981, "value": -0.037}, + {"budgetYear": 1980, "forecastYear": 1982, "value": 0.01}, + {"budgetYear": 1980, "forecastYear": 1983, "value": 0.051}, + {"budgetYear": 1981, "forecastYear": 1980, "value": -0.192}, + {"budgetYear": 1981, "forecastYear": 1981, "value": -0.129} + ] + }, + "target": [ + { + "type": "heatmap", + "encode": { + "x": ["budgetYear"], + "y": ["forecastYear"], + "size": ["value"] + } + }, + { + "type": "scatter", + "encode": { + "x": ["budgetYear"], + "y": ["forecastYear"], + "size": ["value"] + } + } + ] +}, +{ + "source": { + "data": [ + { + "Entity": "All natural disasters", + "Year": 1900, + "Deaths": 1267360 + }, + { + "Entity": "All natural disasters", + "Year": 1901, + "Deaths": 200018 + }, + { + "Entity": "All natural disasters", + "Year": 1902, + "Deaths": 46037 + }, + { + "Entity": "All natural disasters", + "Year": 1903, + "Deaths": 6506 + }, + { + "Entity": "All natural disasters", + "Year": 1905, + "Deaths": 22758 + }, + { + "Entity": "All natural disasters", + "Year": 1906, + "Deaths": 42970 + }, + { + "Entity": "All natural disasters", + "Year": 1907, + "Deaths": 1325641 + }, + { + "Entity": "All natural disasters", + "Year": 1908, + "Deaths": 75033 + }, + { + "Entity": "All natural disasters", + "Year": 1909, + "Deaths": 1511524 + }, + { + "Entity": "All natural disasters", + "Year": 1910, + "Deaths": 148233 + }, + { + "Entity": "All natural disasters", + "Year": 1911, + "Deaths": 102408 + }, + { + "Entity": "All natural disasters", + "Year": 1912, + "Deaths": 52093 + }, + { + "Entity": "All natural disasters", + "Year": 1913, + "Deaths": 882 + }, + { + "Entity": "All natural disasters", + "Year": 1914, + "Deaths": 289 + }, + { + "Entity": "All natural disasters", + "Year": 1915, + "Deaths": 32167 + }, + { + "Entity": "All natural disasters", + "Year": 1916, + "Deaths": 300 + } + ], + "target": [ + { + "type": "heatmap", + "encode": { + "x": ["Entity"], + "y": ["Year"], + "size": ["Deaths"] + } + }, + { + "type": "scatter", + "encode": { + "x": ["Entity"], + "y": ["Year"], + "size": ["Deaths"] + } + } + ] + } +}, + { + "source": { + "metas": [ + { + "name": "年龄", + "dataType": "number" + }, + { + "name": "收入", + "dataType": "number" + }, + { + "name": "消费金额", + "dataType": "number" + } + ], + "data": [ + {"年龄": 25, "收入": 5000, "消费金额": 2000}, + {"年龄": 30, "收入": 7000, "消费金额": 3000}, + {"年龄": 35, "收入": 10000, "消费金额": 5000}, + {"年龄": 40, "收入": 15000, "消费金额": 7000}, + {"年龄": 45, "收入": 20000, "消费金额": 8000} + ] + }, + "target": [ + { + "type": "heatmap", + "encode": { + "x": ["年龄"], + "y": ["收入"], + "size": ["消费金额"] + } + }, + { + "type": "scatter", + "encode": { + "x": ["年龄"], + "y": ["收入"], + "size": ["消费金额"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "城市", + "dataType": "string" + }, + { + "name": "年份", + "dataType": "number" + }, + { + "name": "人口", + "dataType": "number" + } + ], + "data": [ + {"城市": "北京", "年份": 2010, "人口": 19612368}, + {"城市": "上海", "年份": 2010, "人口": 23019148}, + {"城市": "广州", "年份": 2010, "人口": 12700800}, + {"城市": "深圳", "年份": 2010, "人口": 10357813}, + {"城市": "成都", "年份": 2010, "人口": 14043972} + ] + }, + "target": [ + { + "type": "heatmap", + "encode": { + "x": ["城市"], + "y": ["年份"], + "size": ["人口"] + } + }, + { + "type": "scatter", + "encode": { + "x": ["城市"], + "y": ["年份"], + "size": ["人口"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Country", + "dataType": "string" + }, + { + "name": "Year", + "dataType": "number" + }, + { + "name": "GDP", + "dataType": "number" + } + ], + "data": [ + {"Country": "USA", "Year": 2020, "GDP": 21137518}, + {"Country": "China", "Year": 2020, "GDP": 14722801}, + {"Country": "Japan", "Year": 2020, "GDP": 5064873}, + {"Country": "Germany", "Year": 2020, "GDP": 3845630}, + {"Country": "India", "Year": 2020, "GDP": 2875142} + ] + }, + "target": [ + { + "type": "heatmap", + "encode": { + "x": ["Country"], + "y": ["Year"], + "size": ["GDP"] + } + }, + { + "type": "scatter", + "encode": { + "x": ["Country"], + "y": ["Year"], + "size": ["GDP"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "产品", + "dataType": "string" + }, + { + "name": "季度", + "dataType": "number" + }, + { + "name": "销售额", + "dataType": "number" + } + ], + "data": [ + {"产品": "手机", "季度": 1, "销售额": 100000}, + {"产品": "笔记本", "季度": 1, "销售额": 80000}, + {"产品": "平板", "季度": 1, "销售额": 40000}, + {"产品": "电视", "季度": 1, "销售额": 60000}, + {"产品": "耳机", "季度": 1, "销售额": 20000} + ] + }, + "target": [ + { + "type": "heatmap", + "encode": { + "x": ["产品"], + "y": ["季度"], + "size": ["销售额"] + } + }, + { + "type": "scatter", + "encode": { + "x": ["产品"], + "y": ["季度"], + "size": ["销售额"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "国家", + "dataType": "string" + }, + { + "name": "年份", + "dataType": "number" + }, + { + "name": "CO2 排放", + "dataType": "number" + } + ], + "data": [ + {"国家": "美国", "年份": 2015, "CO2 排放": 5000}, + {"国家": "中国", "年份": 2015, "CO2 排放": 10000}, + {"国家": "印度", "年份": 2015, "CO2 排放": 2500}, + {"国家": "俄罗斯", "年份": 2015, "CO2 排放": 1600}, + {"国家": "日本", "年份": 2015, "CO2 排放": 1200} + ] + }, + "target": [ + { + "type": "heatmap", + "encode": { + "x": ["国家"], + "y": ["年份"], + "size": ["CO2 排放"] + } + }, + { + "type": "scatter", + "encode": { + "x": ["国家"], + "y": ["年份"], + "size": ["CO2 排放"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Sector", + "dataType": "string" + }, + { + "name": "Year", + "dataType": "number" + }, + { + "name": "Profit", + "dataType": "number" + } + ], + "data": [ + {"Sector": "Technology", "Year": 2021, "Profit": 1500}, + {"Sector": "Healthcare", "Year": 2021, "Profit": 830}, + {"Sector": "Finance", "Year": 2021, "Profit": 970}, + {"Sector": "Energy", "Year": 2021, "Profit": 650}, + {"Sector": "Retail", "Year": 2021, "Profit": 510} + ] + }, + "target": [ + { + "type": "heatmap", + "encode": { + "x": ["Sector"], + "y": ["Year"], + "size": ["Profit"] + } + }, + { + "type": "scatter", + "encode": { + "x": ["Sector"], + "y": ["Year"], + "size": ["Profit"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "行业", + "dataType": "string" + }, + { + "name": "月份", + "dataType": "number" + }, + { + "name": "增长率", + "dataType": "number" + } + ], + "data": [ + {"行业": "科技", "月份": 1, "增长率": 5.2}, + {"行业": "医疗", "月份": 1, "增长率": 3.8}, + {"行业": "金融", "月份": 1, "增长率": 2.4}, + {"行业": "能源", "月份": 1, "增长率": 1.9}, + {"行业": "零售", "月份": 1, "增长率": 4.1} + ] + }, + "target": [ + { + "type": "heatmap", + "encode": { + "x": ["行业"], + "y": ["月份"], + "size": ["增长率"] + } + }, + { + "type": "scatter", + "encode": { + "x": ["行业"], + "y": ["月份"], + "size": ["增长率"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "City", + "dataType": "string" + }, + { + "name": "Year", + "dataType": "number" + }, + { + "name": "Temperature", + "dataType": "number" + } + ], + "data": [ + {"City": "London", "Year": 2018, "Temperature": 15.5}, + {"City": "Paris", "Year": 2018, "Temperature": 17.0}, + {"City": "New York", "Year": 2018, "Temperature": 22.1}, + {"City": "Tokyo", "Year": 2018, "Temperature": 19.3}, + {"City": "Sydney", "Year": 2018, "Temperature": 23.1} + ] + }, + "target": [ + { + "type": "heatmap", + "encode": { + "x": ["City"], + "y": ["Year"], + "size": ["Temperature"] + } + }, + { + "type": "scatter", + "encode": { + "x": ["City"], + "y": ["Year"], + "size": ["Temperature"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Country", + "dataType": "string" + }, + { + "name": "Year", + "dataType": "number" + }, + { + "name": "Unemployment", + "dataType": "number" + } + ], + "data": [ + {"Country": "USA", "Year": 2019, "Unemployment": 3.5}, + {"Country": "Canada", "Year": 2019, "Unemployment": 5.7}, + {"Country": "Germany", "Year": 2019, "Unemployment": 3.2}, + {"Country": "UK", "Year": 2019, "Unemployment": 3.8}, + {"Country": "France", "Year": 2019, "Unemployment": 8.5} + ] + }, + "target": [ + { + "type": "heatmap", + "encode": { + "x": ["Country"], + "y": ["Year"], + "size": ["Unemployment"] + } + }, + { + "type": "scatter", + "encode": { + "x": ["Country"], + "y": ["Year"], + "size": ["Unemployment"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "月", + "dataType": "number" + }, + { + "name": "类别", + "dataType": "string" + }, + { + "name": "销量", + "dataType": "number" + } + ], + "data": [ + {"月": 1, "类别": "A", "销量": 305}, + {"月": 1, "类别": "B", "销量": 220}, + {"月": 2, "类别": "A", "销量": 310}, + {"月": 2, "类别": "B", "销量": 215}, + {"月": 3, "类别": "A", "销量": 275}, + {"月": 3, "类别": "B", "销量": 230}, + {"月": 4, "类别": "A", "销量": 295}, + {"月": 4, "类别": "B", "销量": 240} + ] + }, + "target": [ + { + "type": "heatmap", + "encode": { + "x": ["月"], + "y": ["类别"], + "size": ["销量"] + } + }, + { + "type": "scatter", + "encode": { + "x": ["月"], + "y": ["类别"], + "size": ["销量"] + } + } + ] + } +] diff --git a/evaluations/datastes/recommend/histogram/01_values.json b/evaluations/datastes/recommend/histogram/01_values.json new file mode 100644 index 0000000..113fa50 --- /dev/null +++ b/evaluations/datastes/recommend/histogram/01_values.json @@ -0,0 +1,290 @@ + +[ + { + "source": { + "data": [ + { "grades": 85 }, + { "grades": 90 }, + { "grades": 88 }, + { "grades": 92 }, + { "grades": 75 }, + { "grades": 80 } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": ["grades"] + } + } + ] + }, + { + "source": { + "data": [ + { "age": 23 }, + { "age": 20 }, + { "age": 25 }, + { "age": 30 }, + { "age": 27 }, + { "age": 35 } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": ["age"] + } + } + ] + }, + { + "source": { + "data": [ + { "revenue": 200000 }, + { "revenue": 150000 }, + { "revenue": 300000 }, + { "revenue": 250000 }, + { "revenue": 100000 } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": ["revenue"] + } + } + ] + }, + { + "source": { + "data": [ + { "temperature": 15.6 }, + { "temperature": 18.2 }, + { "temperature": 17.8 }, + { "temperature": 20.1 }, + { "temperature": 16.4 } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": ["temperature"] + } + } + ] + }, + { + "source": { + "data": [ + { "duration": 60 }, + { "duration": 45 }, + { "duration": 50 }, + { "duration": 70 }, + { "duration": 65 } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": ["duration"] + } + } + ] + }, + { + "source": { + "data": [ + { "重量": 2.5 }, + { "重量": 3.0 }, + { "重量": 3.5 }, + { "重量": 4.0 }, + { "重量": 3.2 } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": ["重量"] + } + } + ] + }, + { + "source": { + "data": [ + { "speed": 120 }, + { "speed": 135 }, + { "speed": 110 }, + { "speed": 125 }, + { "speed": 140 } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": ["speed"] + } + } + ] + }, + { + "source": { + "data": [ + { "生产率": 98 }, + { "生产率": 95 }, + { "生产率": 100 }, + { "生产率": 93 }, + { "生产率": 97 } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": ["生产率"] + } + } + ] + }, + { + "source": { + "data": [ + { "humidity": 55 }, + { "humidity": 60 }, + { "humidity": 57 }, + { "humidity": 53 }, + { "humidity": 59 } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": ["humidity"] + } + } + ] + }, + { + "source": { + "data": [ + { "水费": 48 }, + { "水费": 50 }, + { "水费": 45 }, + { "水费": 52 }, + { "水费": 47 } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": ["水费"] + } + } + ] + }, + { + "source": { + "data": [ + { "distance": 5.0 }, + { "distance": 7.2 }, + { "distance": 8.1 }, + { "distance": 6.4 }, + { "distance": 5.6 } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": ["distance"] + } + } + ] + }, + { + "source": { + "data": [ + { "温度": 36.5 }, + { "温度": 37.0 }, + { "温度": 36.8 }, + { "温度": 37.1 }, + { "温度": 36.9 } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": ["温度"] + } + } + ] + }, + { + "source": { + "data": [ + { "speed": 50 }, + { "speed": 55 }, + { "speed": 52 }, + { "speed": 56 }, + { "speed": 54 } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": ["speed"] + } + } + ] + }, + { + "source": { + "data": [ + { "时长": 77 }, + { "时长": 84 }, + { "时长": 72 }, + { "时长": 80 }, + { "时长": 76 } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": ["时长"] + } + } + ] + }, + { + "source": { + "data": [ + { "price": 250 }, + { "price": 300 }, + { "price": 275 }, + { "price": 260 }, + { "price": 290 } + ] + }, + "target": [ + { + "type": "histogram", + "encode": { + "y": ["price"] + } + } + ] + } +] diff --git a/evaluations/datastes/recommend/line/01_base.json b/evaluations/datastes/recommend/line/01_base.json new file mode 100644 index 0000000..6cb3bd5 --- /dev/null +++ b/evaluations/datastes/recommend/line/01_base.json @@ -0,0 +1,554 @@ +[ +{ + "source": { + "metas": [ + { + "name": "月份", + "dataType": "string" + }, + { + "name": "降雨量", + "dataType": "number" + } + ], + "data": [ + { + "月份": "一月", + "降雨量": 30 + }, + { + "月份": "二月", + "降雨量": 28 + }, + { + "月份": "三月", + "降雨量": 45 + }, + { + "月份": "四月", + "降雨量": 60 + }, + { + "月份": "五月", + "降雨量": 75 + }, + { + "月份": "六月", + "降雨量": 90 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "月份" + ], + "y": [ + "降雨量" + ] + } + } + ] +}, +{ + "source": { + "data": [{ + "time": "2015/05/28 16:00:00", + "count": "1" + }, + { + "time": "2015/05/28 19:00:00", + "count": "1" + }, + { + "time": "2015/05/29 04:00:00", + "count": "3" + }, + { + "time": "2015/05/29 08:00:00", + "count": "1" + }, + { + "time": "2015/05/29 09:00:00", + "count": "1" + }, + { + "time": "2015/05/29 13:00:00", + "count": "3" + }, + { + "time": "2015/05/29 17:00:00", + "count": "1" + }, + { + "time": "2015/05/29 19:00:00", + "count": "1" + }, + { + "time": "2015/05/30 00:00:00", + "count": "10" + }, + { + "time": "2015/05/30 09:00:00", + "count": "1" + }, + { + "time": "2015/05/30 11:00:00", + "count": "2" + }] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "time" + ], + "y": [ + "count" + ] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "季度", + "dataType": "string" + }, + { + "name": "销售额", + "dataType": "number" + } + ], + "data": [ + { + "季度": "Q1", + "销售额": 20000 + }, + { + "季度": "Q2", + "销售额": 25000 + }, + { + "季度": "Q3", + "销售额": 30000 + }, + { + "季度": "Q4", + "销售额": 35000 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "季度" + ], + "y": [ + "销售额" + ] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "日期", + "dataType": "date" + }, + { + "name": "温度", + "dataType": "number" + } + ], + "data": [ + { + "日期": "2023-01-01", + "温度": -5 + }, + { + "日期": "2023-02-01", + "温度": 0 + }, + { + "日期": "2023-03-01", + "温度": 5 + }, + { + "日期": "2023-04-01", + "温度": 10 + }, + { + "日期": "2023-05-01", + "温度": 15 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "日期" + ], + "y": [ + "温度" + ] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "星期", + "dataType": "string" + }, + { + "name": "访客数", + "dataType": "number" + } + ], + "data": [ + { + "星期": "周一", + "访客数": 200 + }, + { + "星期": "周二", + "访客数": 180 + }, + { + "星期": "周三", + "访客数": 230 + }, + { + "星期": "周四", + "访客数": 250 + }, + { + "星期": "周五", + "访客数": 300 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "星期" + ], + "y": [ + "访客数" + ] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "月份", + "dataType": "string" + }, + { + "name": "电量消耗", + "dataType": "number" + } + ], + "data": [ + { + "月份": "一月", + "电量消耗": 150 + }, + { + "月份": "二月", + "电量消耗": 140 + }, + { + "月份": "三月", + "电量消耗": 145 + }, + { + "月份": "四月", + "电量消耗": 155 + }, + { + "月份": "五月", + "电量消耗": 165 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "月份" + ], + "y": [ + "电量消耗" + ] + } + } + ] +}, +{ + "source": { + "data": [ + { + "时间": "2023-07-15T08:00:00", + "流量": 120 + }, + { + "时间": "2023-07-15T09:00:00", + "流量": 132 + }, + { + "时间": "2023-07-15T10:00:00", + "流量": 128 + }, + { + "时间": "2023-07-15T11:00:00", + "流量": 150 + }, + { + "时间": "2023-07-15T12:00:00", + "流量": 170 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "时间" + ], + "y": [ + "流量" + ] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "日期", + "dataType": "date" + }, + { + "name": "步数", + "dataType": "number" + } + ], + "data": [ + { + "日期": "2023/04/01", + "步数": 3000 + }, + { + "日期": "2023/04/02", + "步数": 5000 + }, + { + "日期": "2023/04/03", + "步数": 4000 + }, + { + "日期": "2023/04/04", + "步数": 4500 + }, + { + "日期": "2023/04/05", + "步数": 6000 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "日期" + ], + "y": [ + "步数" + ] + } + } + ] +}, +{ + "source": { + "data": [ + { + "timestamp": "2023-11-01", + "视图": 100 + }, + { + "timestamp": "2023-11-02", + "视图": 110 + }, + { + "timestamp": "2023-11-03", + "视图": 105 + }, + { + "timestamp": "2023-11-04", + "视图": 120 + }, + { + "timestamp": "2023-11-05", + "视图": 130 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "timestamp" + ], + "y": [ + "视图" + ] + } + } + ] +}, +{ + "source": { + "data": [ + { + "时段": "早上", + "顾客": 50 + }, + { + "时段": "中午", + "顾客": 80 + }, + { + "时段": "下午", + "顾客": 70 + }, + { + "时段": "晚上", + "顾客": 90 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "时段" + ], + "y": [ + "顾客" + ] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "学期", + "dataType": "string" + }, + { + "name": "学员人数", + "dataType": "number" + } + ], + "data": [ + { + "学期": "秋季", + "学员人数": 300 + }, + { + "学期": "冬季", + "学员人数": 280 + }, + { + "学期": "春季", + "学员人数": 320 + }, + { + "学期": "夏季", + "学员人数": 350 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "学期" + ], + "y": [ + "学员人数" + ] + } + } + ] +}, +{ + "source": { + "data": [ + { + "日期": "2023/02/01", + "降水量": 25 + }, + { + "日期": "2023/02/02", + "降水量": 30 + }, + { + "日期": "2023/02/03", + "降水量": 18 + }, + { + "日期": "2023/02/04", + "降水量": 20 + }, + { + "日期": "2023/02/05", + "降水量": 22 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "日期" + ], + "y": [ + "降水量" + ] + } + } + ] +} +] diff --git a/evaluations/datastes/recommend/line/02_multi_measure.json b/evaluations/datastes/recommend/line/02_multi_measure.json new file mode 100644 index 0000000..1718c73 --- /dev/null +++ b/evaluations/datastes/recommend/line/02_multi_measure.json @@ -0,0 +1,475 @@ +[ + { + "source": { + "data": [ + { + "dateCollected": "2023-03-16", + "temperature": 22.5, + "humidity": 60.5 + }, + { + "dateCollected": "2023-03-17", + "temperature": 25.1, + "humidity": 55.2 + }, + { + "dateCollected": "2023-03-18", + "temperature": 18.3, + "humidity": 65.7 + }, + { + "dateCollected": "2023-03-19", + "temperature": 20.7, + "humidity": 70.3 + }, + { + "dateCollected": "2023-03-20", + "temperature": 24.8, + "humidity": 50.1 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": ["dateCollected"], + "y": ["temperature", "humidity"] + } + } + ] + }, + { + "source": { + "data": [ + { + "time": "04/01/2023", + "sales": 10000, + "profit": 2000 + }, + { + "time": "04/02/2023", + "sales": 20000, + "profit": 3000 + }, + { + "time": "04/03/2023", + "sales": 30000, + "profit": 4000 + }, + { + "time": "04/04/2023", + "sales": 40000, + "profit": 5000 + }, + { + "time": "04/05/2023", + "sales": 50000, + "profit": 6000 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": ["time"], + "y": ["sales", "profit"] + } + } + ] + }, + { + "source": { + "data": [ + { + "制造日期": "2023-01-01", + "成本": 123, + "售价": 567 + }, + { + "制造日期": "2023-01-02", + "成本": 345, + "售价": 1098 + }, + { + "制造日期": "2023-01-03", + "成本": 567, + "售价": 1234 + }, + { + "制造日期": "2023-01-04", + "成本": 789, + "售价": 1456 + }, + { + "制造日期": "2023-01-05", + "成本": 901, + "售价": 1678 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "制造日期" + ], + "y": [ + "成本", + "售价" + ] + } + } + ] +}, +{ + "source": { + "data": [ + { + "销售日期": "2023-05-01", + "收入": 423, + "支出": 123 + }, + { + "销售日期": "2023-05-02", + "收入": 489, + "支出": 178 + }, + { + "销售日期": "2023-05-03", + "收入": 512, + "支出": 230 + }, + { + "销售日期": "2023-05-04", + "收入": 678, + "支出": 340 + }, + { + "销售日期": "2023-05-05", + "收入": 789, + "支出": 450 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "销售日期" + ], + "y": [ + "收入", + "支出" + ] + } + } + ] + }, + { + "source": { + "data": [ + { + "日期": "01/06/2023", + "温度": 22, + "湿度": 68 + }, + { + "日期": "02/06/2023", + "温度": 24, + "湿度": 70 + }, + { + "日期": "03/06/2023", + "温度": 26, + "湿度": 74 + }, + { + "日期": "04/06/2023", + "温度": 27, + "湿度": 72 + }, + { + "日期": "05/06/2023", + "温度": 25, + "湿度": 69 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "日期" + ], + "y": [ + "温度", + "湿度" + ] + } + } + ] + }, + { + "source": { + "data": [ + { "date": "1854-04-01", "wounds": 0, "other": 110, "disease": 110 }, + { "date": "1854-05-01", "wounds": 0, "other": 95, "disease": 105 }, + { "date": "1854-06-01", "wounds": 0, "other": 40, "disease": 95 }, + { "date": "1854-07-01", "wounds": 0, "other": 140, "disease": 520 }, + { "date": "1854-08-01", "wounds": 20, "other": 150, "disease": 800 }, + { "date": "1854-09-01", "wounds": 220, "other": 230, "disease": 740 }, + { "date": "1854-10-01", "wounds": 305, "other": 310, "disease": 600 }, + { "date": "1854-11-01", "wounds": 480, "other": 290, "disease": 820 }, + { "date": "1854-12-01", "wounds": 295, "other": 310, "disease": 1100 }, + { "date": "1855-01-01", "wounds": 230, "other": 460, "disease": 1440 }, + { "date": "1855-02-01", "wounds": 180, "other": 520, "disease": 1270 }, + { "date": "1855-03-01", "wounds": 155, "other": 350, "disease": 935 }, + { "date": "1855-04-01", "wounds": 195, "other": 195, "disease": 560 }, + { "date": "1855-05-01", "wounds": 180, "other": 155, "disease": 550 }, + { "date": "1855-06-01", "wounds": 330, "other": 130, "disease": 650 }, + { "date": "1855-07-01", "wounds": 260, "other": 130, "disease": 430 }, + { "date": "1855-08-01", "wounds": 290, "other": 110, "disease": 490 }, + { "date": "1855-09-01", "wounds": 355, "other": 100, "disease": 290 }, + { "date": "1855-10-01", "wounds": 135, "other": 95, "disease": 245 }, + { "date": "1855-11-01", "wounds": 100, "other": 140, "disease": 325 }, + { "date": "1855-12-01", "wounds": 40, "other": 120, "disease": 215 }, + { "date": "1856-01-01", "wounds": 0, "other": 160, "disease": 160 }, + { "date": "1856-02-01", "wounds": 0, "other": 100, "disease": 100 }, + { "date": "1856-03-01", "wounds": 0, "other": 125, "disease": 90 } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": ["date"], + "y": ["wounds", "other", "disease"] + } + } + ] +}, + { + "source": { + "data": [ + { + "Survey Date": "2023/08/01", + "Satisfaction": 4.5, + "Recommend": 3.8 + }, + { + "Survey Date": "2023/08/02", + "Satisfaction": 4.7, + "Recommend": 4.0 + }, + { + "Survey Date": "2023/08/03", + "Satisfaction": 4.6, + "Recommend": 3.9 + }, + { + "Survey Date": "2023/08/04", + "Satisfaction": 4.8, + "Recommend": 4.1 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": [ + "Survey Date" + ], + "y": [ + "Satisfaction", + "Recommend" + ] + } + } + ] + }, + { + "source": { + "data": [ + {"日期": "2023-01-01", "销售额": 1500, "成本": 700}, + {"日期": "2023-01-02", "销售额": 1800, "成本": 750}, + {"日期": "2023-01-03", "销售额": 1200, "成本": 650}, + {"日期": "2023-01-04", "销售额": 1700, "成本": 800}, + {"日期": "2023-01-05", "销售额": 2000, "成本": 850} + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": ["日期"], + "y": ["销售额", "成本"] + } + } + ] + }, + { + "source": { + "data": [ + {"date": "2023-06-15", "views": 2500, "clicks": 150}, + {"date": "2023-06-16", "views": 2700, "clicks": 180}, + {"date": "2023-06-17", "views": 3000, "clicks": 210}, + {"date": "2023-06-18", "views": 3200, "clicks": 230}, + {"date": "2023-06-19", "views": 3100, "clicks": 220} + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": ["date"], + "y": ["views", "clicks"] + } + } + ] + }, + { + "source": { + "data": [ + {"day": "01-Apr-2023", "temperature": 25, "humidity": 80}, + {"day": "02-Apr-2023", "temperature": 27, "humidity": 82}, + {"day": "03-Apr-2023", "temperature": 26, "humidity": 79}, + {"day": "04-Apr-2023", "temperature": 28, "humidity": 84}, + {"day": "05-Apr-2023", "temperature": 30, "humidity": 85} + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": ["day"], + "y": ["temperature", "humidity"] + } + } + ] + }, + { + "source": { + "data": [ + {"timestamp": "2023/03/20", "users": 500, "new_users": 50}, + {"timestamp": "2023/03/21", "users": 550, "new_users": 45}, + {"timestamp": "2023/03/22", "users": 600, "new_users": 60}, + {"timestamp": "2023/03/23", "users": 580, "new_users": 55}, + {"timestamp": "2023/03/24", "users": 620, "new_users": 65} + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": ["timestamp"], + "y": ["users", "new_users"] + } + } + ] + }, + { + "source": { + "data": [ + {"week": "20230601", "profit": 8000, "loss": 3000}, + {"week": "20230602", "profit": 8200, "loss": 3400}, + {"week": "20230603", "profit": 7900, "loss": 3200}, + {"week": "20230604", "profit": 8500, "loss": 3100}, + {"week": "20230605", "profit": 8700, "loss": 2900} + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": ["week"], + "y": ["profit", "loss"] + } + } + ] + }, + { + "source": { + "data": [ + {"date": "1/03/2023", "rainfall": 10, "snowfall": 0}, + {"date": "2/03/2023", "rainfall": 15, "snowfall": 0}, + {"date": "3/03/2023", "rainfall": 5, "snowfall": 3}, + {"date": "4/03/2023", "rainfall": 0, "snowfall": 10}, + {"date": "5/03/2023", "rainfall": 12, "snowfall": 1} + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": ["date"], + "y": ["rainfall", "snowfall"] + } + } + ] + }, + { + "source": { + "data": [ + {"quarter": "Q1 2023", "revenue": 20000, "expenses": 12000}, + {"quarter": "Q2 2023", "revenue": 22000, "expenses": 13000}, + {"quarter": "Q3 2023", "revenue": 25000, "expenses": 15000}, + {"quarter": "Q4 2023", "revenue": 27000, "expenses": 16000} + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": ["quarter"], + "y": ["revenue", "expenses"] + } + } + ] + }, + { + "source": { + "data": [ + {"month": "January", "production": 500, "defects": 5}, + {"month": "February", "production": 550, "defects": 6}, + {"month": "March", "production": 600, "defects": 7}, + {"month": "April", "production": 580, "defects": 6}, + {"month": "May", "production": 620, "defects": 8} + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": ["month"], + "y": ["production", "defects"] + } + } + ] + }, + { + "source": { + "data": [ + {"date": "2023.11.01", "score_math": 80, "score_english": 85, "score_music": 80, "score_writing": 85}, + {"date": "2023.11.02", "score_math": 78, "score_english": 90, "score_music": 80, "score_writing": 85}, + {"date": "2023.11.03", "score_math": 85, "score_english": 87, "score_music": 80, "score_writing": 85}, + {"date": "2023.11.04", "score_math": 90, "score_english": 82, "score_music": 80, "score_writing": 85}, + {"date": "2023.11.05", "score_math": 88, "score_english": 89, "score_music": 80, "score_writing": 85} + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": ["date"], + "y": ["score_math", "score_english", "score_music", "score_writing"] + } + } + ] + } +] diff --git a/evaluations/datastes/recommend/line/03_split.json b/evaluations/datastes/recommend/line/03_split.json new file mode 100644 index 0000000..41f9bd4 --- /dev/null +++ b/evaluations/datastes/recommend/line/03_split.json @@ -0,0 +1,245 @@ +[ + { + "source": { + "data": [ + { + "symbol": "MSFT", + "date": "Jan 1 2000", + "price": 39.81 + }, + { + "symbol": "MSFT", + "date": "Feb 1 2000", + "price": 36.35 + }, + { + "symbol": "MSFT", + "date": "Mar 1 2000", + "price": 43.22 + }, + { + "symbol": "MSFT", + "date": "Apr 1 2000", + "price": 28.37 + }, + { + "symbol": "MSFT", + "date": "May 1 2000", + "price": 25.45 + }, + { + "symbol": "MSFT", + "date": "Jun 1 2000", + "price": 32.54 + }, + { + "symbol": "MSFT", + "date": "Jul 1 2000", + "price": 28.4 + }, + { + "symbol": "MSFT", + "date": "Aug 1 2000", + "price": 28.4 + }, + { + "symbol": "MSFT", + "date": "Sep 1 2000", + "price": 24.53 + }, + { + "symbol": "MSFT", + "date": "Oct 1 2000", + "price": 28.02 + }, + { + "symbol": "MSFT", + "date": "Nov 1 2000", + "price": 23.34 + }, + { + "symbol": "MSFT", + "date": "Dec 1 2000", + "price": 17.65 + } + ] + }, + "target": [ + { + "type": "line", + "encode": { + "x": ["date"], + "y": ["price"], + "s": ["symbol"] + } + }, + { + "type": "area", + "encode": { + "x": ["date"], + "y": ["price"], + "s": ["symbol"] + } + } + ] + }, + { + "source": { + "data": [ + { "城市": "北京", "日期": "2020-01", "温度": -5 }, + { "城市": "北京", "日期": "2020-02", "温度": 0}, + { "城市": "北京", "日期": "2020-03", "温度": 8}, + { "城市": "北京", "日期": "2020-04", "温度": 15}, + { "城市": "北京", "日期": "2020-05", "温度": 20}, + { "城市": "北京", "日期": "2020-06", "温度": 25} + ] + }, + "target": [ + { "type": "line", "encode": { "x": ["日期"], "y": ["温度"], "s": ["城市"] } }, + { "type": "area", "encode": { "x": ["日期"], "y": ["温度"], "s": ["城市"] } } + ] + }, + { + "source": { + "data": [ + { "产品": "手机", "时间": "2022-01", "销量": 1200 }, + { "产品": "手机", "时间": "2022-02", "销量": 1500 }, + { "产品": "手机", "时间": "2022-03", "销量": 1800 }, + { "产品": "手机", "时间": "2022-04", "销量": 1600 }, + { "产品": "手机", "时间": "2022-05", "销量": 2000 }, + { "产品": "手机", "时间": "2022-06", "销量": 1700 } + ] + }, + "target": [ + { "type": "line", "encode": { "x": ["时间"], "y": ["销量"], "s": ["产品"] } }, + { "type": "area", "encode": { "x": ["时间"], "y": ["销量"], "s": ["产品"] } } + ] + }, + { + "source": { + "data": [ + { "category": "A", "quarter": "Q1 2021", "profit": 3000 }, + { "category": "A", "quarter": "Q2 2021", "profit": 4500 }, + { "category": "A", "quarter": "Q3 2021", "profit": 5000 }, + { "category": "A", "quarter": "Q4 2021", "profit": 4800 } + ] + }, + "target": [ + { "type": "line", "encode": { "x": ["quarter"], "y": ["profit"], "s": ["category"] } }, + { "type": "area", "encode": { "x": ["quarter"], "y": ["profit"], "s": ["category"] } } + ] + }, + { + "source": { + "data": [ + { "国家": "中国", "年份": "2015", "GDP增长": 6.9 }, + { "国家": "中国", "年份": "2016", "GDP增长": 6.7 }, + { "国家": "中国", "年份": "2017", "GDP增长": 6.9 }, + { "国家": "中国", "年份": "2018", "GDP增长": 6.6 }, + { "国家": "中国", "年份": "2019", "GDP增长": 6.0 } + ] + }, + "target": [ + { "type": "line", "encode": { "x": ["年份"], "y": ["GDP增长"], "s": ["国家"] } }, + { "type": "area", "encode": { "x": ["年份"], "y": ["GDP增长"], "s": ["国家"] } } + ] + }, + { + "source": { + "data": [ + { "region": "North", "year": "2020", "sales": 7000 }, + { "region": "North", "year": "2021", "sales": 8500 }, + { "region": "North", "year": "2022", "sales": 9200 } + ] + }, + "target": [ + { "type": "line", "encode": { "x": ["year"], "y": ["sales"], "s": ["region"] } }, + { "type": "area", "encode": { "x": ["year"], "y": ["sales"], "s": ["region"] } } + ] + }, + { + "source": { + "data": [ + { "公司": "TechCorp", "月度": "2021-07", "盈利": 450 }, + { "公司": "TechCorp", "月度": "2021-08", "盈利": 520 }, + { "公司": "TechCorp", "月度": "2021-09", "盈利": 480 }, + { "公司": "TechCorp", "月度": "2021-10", "盈利": 530 }, + { "公司": "TechCorp", "月度": "2021-11", "盈利": 600 } + ] + }, + "target": [ + { "type": "line", "encode": { "x": ["月度"], "y": ["盈利"], "s": ["公司"] } }, + { "type": "area", "encode": { "x": ["月度"], "y": ["盈利"], "s": ["公司"] } } + ] + }, + { + "source": { + "data": [ + { "sector": "Education", "date": "2021-Q1", "budget": 320 }, + { "sector": "Education", "date": "2021-Q2", "budget": 400 }, + { "sector": "Education", "date": "2021-Q3", "budget": 450 }, + { "sector": "Education", "date": "2021-Q4", "budget": 390 } + ] + }, + "target": [ + { "type": "line", "encode": { "x": ["date"], "y": ["budget"], "s": ["sector"] } }, + { "type": "area", "encode": { "x": ["date"], "y": ["budget"], "s": ["sector"] } } + ] + }, + { + "source": { + "data": [ + { "地区": "南方", "季度": "2020-Q1", "税收": 5000 }, + { "地区": "南方", "季度": "2020-Q2", "税收": 5300 }, + { "地区": "南方", "季度": "2020-Q3", "税收": 5800 }, + { "地区": "南方", "季度": "2020-Q4", "税收": 5600 } + ] + }, + "target": [ + { "type": "line", "encode": { "x": ["季度"], "y": ["税收"], "s": ["地区"] } }, + { "type": "area", "encode": { "x": ["季度"], "y": ["税收"], "s": ["地区"] } } + ] + }, + { + "source": { + "data": [ + { "城市": "上海", "时间": "Jan 2021", "游客数": 120 }, + { "城市": "上海", "时间": "Feb 2021", "游客数": 110 }, + { "城市": "上海", "时间": "Mar 2021", "游客数": 130 }, + { "城市": "上海", "时间": "Apr 2021", "游客数": 150 } + ] + }, + "target": [ + { "type": "line", "encode": { "x": ["时间"], "y": ["游客数"], "s": ["城市"] } }, + { "type": "area", "encode": { "x": ["时间"], "y": ["游客数"], "s": ["城市"] } } + ] + }, + { + "source": { + "data": [ + { "subject": "Math", "semester": "S1 2019", "score": 85 }, + { "subject": "Math", "semester": "S2 2019", "score": 87 }, + { "subject": "Math", "semester": "S1 2020", "score": 90 }, + { "subject": "Math", "semester": "S2 2020", "score": 88 } + ] + }, + "target": [ + { "type": "line", "encode": { "x": ["semester"], "y": ["score"], "s": ["subject"] } }, + { "type": "area", "encode": { "x": ["semester"], "y": ["score"], "s": ["subject"] } } + ] + }, + { + "source": { + "data": [ + { "类别": "电子产品", "月份": "2022-01", "库存量": 600 }, + { "类别": "电子产品", "月份": "2022-02", "库存量": 580 }, + { "类别": "电子产品", "月份": "2022-03", "库存量": 620 }, + { "类别": "电子产品", "月份": "2022-04", "库存量": 610 } + ] + }, + "target": [ + { "type": "line", "encode": { "x": ["月份"], "y": ["库存量"], "s": ["类别"] } }, + { "type": "area", "encode": { "x": ["月份"], "y": ["库存量"], "s": ["类别"] } } + ] + } +] diff --git a/evaluations/datastes/recommend/map/01_long_lat.json b/evaluations/datastes/recommend/map/01_long_lat.json new file mode 100644 index 0000000..74e67fa --- /dev/null +++ b/evaluations/datastes/recommend/map/01_long_lat.json @@ -0,0 +1,268 @@ +[ + { + "source": { + "data": [ + {"name": "Kingston upon Thames", "cx": -0.28691465719243003, "cy": 51.387893353778395}, + {"name": "Croydon", "cx": -0.08716546101532906, "cy": 51.355317416374}, + {"name": "Bromley", "cx": 0.051536586180461884, "cy": 51.37198402033694}, + {"name": "Hounslow", "cx": -0.3671516396902454, "cy": 51.46838045919461}, + {"name": "Ealing", "cx": -0.331019323573572, "cy": 51.52247610268018}, + {"name": "Havering", "cx": 0.22111695897456907, "cy": 51.564368109593914}, + {"name": "Hillingdon", "cx": -0.4456619192134244, "cy": 51.54147118065276}, + {"name": "Harrow", "cx": -0.34127462993183943, "cy": 51.59771852185307}, + {"name": "Brent", "cx": -0.2678117446868589, "cy": 51.558554439571225}, + {"name": "Barnet", "cx": -0.2100178905687616, "cy": 51.61601840050092}, + {"name": "Lambeth", "cx": -0.11827879184555543, "cy": 51.45307915598091}, + {"name": "Southwark", "cx": -0.07460248417459615, "cy": 51.47313736252929}, + {"name": "Lewisham", "cx": -0.020251210147097444, "cy": 51.44808622366465}, + {"name": "Greenwich", "cx": 0.05623854022441538, "cy": 51.47280349330009}, + {"name": "Bexley", "cx": 0.14034521936844538, "cy": 51.45881060129503}, + {"name": "Enfield", "cx": -0.08726531756552813, "cy": 51.650991897325454}, + {"name": "Waltham Forest", "cx": -0.012645389036967391, "cy": 51.59402179942259}, + {"name": "Redbridge", "cx": 0.07586498666349965, "cy": 51.58566980239283}, + {"name": "Sutton", "cx": -0.1775706458949663, "cy": 51.36208881322784}, + {"name": "Richmond upon Thames", "cx": -0.312989912939369, "cy": 51.44217087768007}, + {"name": "Merton", "cx": -0.19724686451592524, "cy": 51.40994982121643}, + {"name": "Wandsworth", "cx": -0.18644255213923716, "cy": 51.45135372974042}, + {"name": "Hammersmith and Fulham", "cx": -0.22312501860130696, "cy": 51.49760349773975}, + {"name": "Kensington and Chelsea", "cx": -0.1926146417708775, "cy": 51.50326858912867}, + {"name": "Westminster", "cx": -0.16129707300361068, "cy": 51.513897745031734}, + {"name": "Camden", "cx": -0.15741523389534484, "cy": 51.54639253962996}, + {"name": "Tower Hamlets", "cx": -0.03246795051939853, "cy": 51.515056063777294}, + {"name": "Islington", "cx": -0.10744657464865907, "cy": 51.54550386068218}, + {"name": "Hackney", "cx": -0.06564515736890775, "cy": 51.54976532427057}, + {"name": "Haringey", "cx": -0.10747319126297968, "cy": 51.59037386425316}, + {"name": "Newham", "cx": 0.036385305135703754, "cy": 51.52834280272405}, + {"name": "Barking and Dagenham", "cx": 0.13352186486629006, "cy": 51.545272267046116}, + {"name": "City of London", "cx": -0.09232371387227843, "cy": 51.51529009582889} + ] + }, + "target": [ + { + "type": "map", + "encode": { + "x": ["cx"], + "y": ["cy"], + "label": ["name"] + } + } + ] + }, + { + "source": { + "data": [ + { + "景点": "石屋洞", + "longitude": 120.130638, + "latitude": 30.219835 + }, + { + "景点": "满觉陇", + "longitude": 120.128125, + "latitude": 30.219386 + }, + { "景点": "杨梅岭", "longitude": 120.118362, "latitude": 30.217175 }, + { "景点": "理安寺", "longitude": 120.112958, "latitude": 30.207319 }, + { "景点": "九溪烟树", "longitude": 120.11335, "latitude": 30.202395 }, + { "景点": "飞来峰", "longitude": 120.100549, "latitude": 30.236875 }, + { "景点": "灵隐寺", "longitude": 120.101406, "latitude": 30.240826 }, + { "景点": "天竺三寺", "longitude": 120.105337, "latitude": 30.236818 }, + { "景点": "杭州植物园", "longitude": 120.116979, "latitude": 30.252876 }, + { "景点": "杭州花圃", "longitude": 120.127654, "latitude": 30.245663 }, + { "景点": "苏堤", "longitude": 120.135764, "latitude": 30.251448 }, + { "景点": "虎跑公园", "longitude": 120.130095, "latitude": 30.207505 }, + { "景点": "玉皇飞云", "longitude": 120.145323, "latitude": 30.214993 }, + { "景点": "长桥公园", "longitude": 120.155057, "latitude": 30.232985 } + ] + }, + "target": [ + { + "type": "map", + "encode": { + "x": ["longitude"], + "y": ["latitude"], + "label": ["景点"] + } + } + ] + }, + { + "source": { + "data": [ + {"name": "Kingston upon Thames", "cx": -0.2869, "cy": 51.3879}, + {"name": "Croydon", "cx": -0.0872, "cy": 51.3553}, + {"name": "Bromley", "cx": 0.0515, "cy": 51.3720}, + {"name": "Hounslow", "cx": -0.3672, "cy": 51.4684}, + {"name": "Ealing", "cx": -0.3310, "cy": 51.5225}, + {"name": "Havering", "cx": 0.2211, "cy": 51.5644} + ] + }, + "target": [ + { + "type": "map", + "encode": { + "x": ["cx"], + "y": ["cy"], + "label": ["name"] + } + } + ] + }, + { + "source": { + "data": [ + {"City": "New York", "population_density": 27000, "longitude": -74.006, "latitude": 40.7128}, + {"City": "Los Angeles", "population_density": 8304, "longitude": -118.2437, "latitude": 34.0522}, + {"City": "Chicago", "population_density": 11900, "longitude": -87.6298, "latitude": 41.8781} + ] + }, + "target": [ + { + "type": "map", + "encode": { + "x": ["longitude"], + "y": ["latitude"], + "label": ["City"] + } + } + ] + }, + { + "source": { + "data": [ + {"国家": "中国", "GDP": 14300000000000, "longitude": 104.1954, "latitude": 35.8617}, + {"国家": "美国", "GDP": 21430000000000, "longitude": -95.7129, "latitude": 37.0902}, + {"国家": "日本", "GDP": 5080000000000, "longitude": 138.2529, "latitude": 36.2048} + ] + }, + "target": [ + { + "type": "map", + "encode": { + "x": ["longitude"], + "y": ["latitude"], + "label": ["国家"], + "color": ["GDP"] + } + } + ] + }, + { + "source": { + "data": [ + {"Region": "California", "output": 423967, "longitude": -119.4179, "latitude": 36.7783}, + {"Region": "Texas", "output": 695662, "longitude": -99.9018, "latitude": 31.9686}, + {"Region": "Alaska", "output": 1717850, "longitude": -149.4937, "latitude": 64.2008} + ] + }, + "target": [ + { + "type": "map", + "encode": { + "x": ["longitude"], + "y": ["latitude"], + "label": ["Region"], + "color": ["output"] + } + } + ] + }, + { + "source": { + "data": [ + {"城市": "上海", "PM2.5": 56, "longitude": 121.4737, "latitude": 31.2304}, + {"城市": "北京", "PM2.5": 70, "longitude": 116.4074, "latitude": 39.9042}, + {"城市": "广州", "PM2.5": 42, "longitude": 113.2644, "latitude": 23.1291} + ] + }, + "target": [ + { + "type": "map", + "encode": { + "x": ["longitude"], + "y": ["latitude"], + "label": ["城市"], + "color": ["PM2.5"] + } + } + ] + }, + { + "source": { + "data": [ + {"Landmark": "Eiffel Tower", "visitors_per_year": 7000000, "longitude": 2.2945, "latitude": 48.8584}, + {"Landmark": "Colosseum", "visitors_per_year": 5500000, "longitude": 12.4924, "latitude": 41.8902}, + {"Landmark": "Statue of Liberty", "visitors_per_year": 4300000, "longitude": -74.0445, "latitude": 40.6892} + ] + }, + "target": [ + { + "type": "map", + "encode": { + "x": ["longitude"], + "y": ["latitude"], + "label": ["Landmark"], + "color": ["visitors_per_year"] + } + } + ] + }, + { + "source": { + "data": [ + {"地区": "西湖区", "AQI": 42, "longitude": 120.1474, "latitude": 30.2729}, + {"地区": "拱墅区", "AQI": 45, "longitude": 120.1492, "latitude": 30.3188}, + {"地区": "滨江区", "AQI": 50, "longitude": 120.2106, "latitude": 30.2066} + ] + }, + "target": [ + { + "type": "map", + "encode": { + "x": ["longitude"], + "y": ["latitude"], + "label": ["地区"], + "color": ["AQI"] + } + } + ] + }, + { + "source": { + "data": [ + {"median_income": 74000, "longitude": -84.7519, "latitude": 49.2827}, + {"median_income": 62000, "longitude": -71.2082, "latitude": 46.8139}, + {"median_income": 80000, "longitude": -122.6587, "latitude": 53.7267} + ] + }, + "target": [ + { + "type": "map", + "encode": { + "x": ["longitude"], + "y": ["latitude"], + "color": ["median_income"] + } + } + ] + }, + { + "source": { + "data": [ + {"城市": "东京", "longitude": 139.6917, "latitude": 35.6895}, + {"城市": "大阪", "longitude": 135.5023, "latitude": 34.6937}, + {"城市": "名古屋", "longitude": 136.9066, "latitude": 35.1814} + ] + }, + "target": [ + { + "type": "map", + "encode": { + "x": ["longitude"], + "y": ["latitude"], + "label": ["城市"] + } + } + ] + } +] diff --git a/evaluations/datastes/recommend/mind-map/01_base.json b/evaluations/datastes/recommend/mind-map/01_base.json new file mode 100644 index 0000000..78e7f71 --- /dev/null +++ b/evaluations/datastes/recommend/mind-map/01_base.json @@ -0,0 +1,219 @@ +[ + { + "source": { + "data": [ + { "parent": "台风形成的因素", "child": "温暖的海水" }, + { "parent": "台风形成的因素", "child": "气压分布" }, + { "parent": "台风形成的因素", "child": "湿度水平" }, + { "parent": "台风形成的因素", "child": "风的切变" }, + { "parent": "地理环境", "child": "大陆架的形状与深度" }, + { "parent": "地理环境", "child": "海洋暖流的分布" }, + { "parent": "地理环境", "child": "热带地区的气候特征" }, + { "parent": "地理环境", "child": "岛屿的影响" } + ] + }, + "target": [{ + "type": "mind_map", + "encode": { + "source": "parent", + "target": "child" + } + }] + }, + { + "source": { + "data": [ + { "主题": "Modeling Methods", "子主题": "Classification" }, + { "主题": "Modeling Methods", "子主题": "Regression" }, + { "主题": "Modeling Methods", "子主题": "Consensus" }, + { "主题": "Classification", "子主题": "Logistic regression" }, + { "主题": "Classification", "子主题": "Linear discriminant analysis" }, + { "主题": "Classification", "子主题": "Rules" }, + { "主题": "Classification", "子主题": "Decision trees" }, + { "主题": "Classification", "子主题": "Naive Bayes" }, + { "主题": "Classification", "子主题": "K nearest neighbor" }, + { "主题": "Regression", "子主题": "Multiple linear regression" }, + { "主题": "Regression", "子主题": "Partial least squares" }, + { "主题": "Regression", "子主题": "Multi-layer feedforward neural network" }, + { "主题": "Regression", "子主题": "General regression neural network" }, + { "主题": "Consensus", "子主题": "Models diversity" }, + { "主题": "Consensus", "子主题": "Methods" }, + { "主题": "Consensus", "子主题": "Common" }, + { "主题": "Models diversity", "子主题": "Different initializations" }, + { "主题": "Models diversity", "子主题": "Different parameter choices" }, + { "主题": "Models diversity", "子主题": "Different architectures" }, + { "主题": "Models diversity", "子主题": "Different modeling methods" }, + { "主题": "Methods", "子主题": "Classifier selection" }, + { "主题": "Methods", "子主题": "Classifier fusion" }, + { "主题": "Common", "子主题": "Bagging" }, + { "主题": "Common", "子主题": "Boosting" } + ] + }, + "target": [{ + "type": "mind_map", + "encode": { + "source": "主题", + "target": "子主题" + } + }] + }, + { + "source": { + "data": [ + { "parent": "健康生活方式", "child": "均衡饮食" }, + { "parent": "健康生活方式", "child": "定期锻炼" }, + { "parent": "健康生活方式", "child": "充足睡眠" }, + { "parent": "均衡饮食", "child": "多吃水果蔬菜" }, + { "parent": "均衡饮食", "child": "减少糖分摄入" }, + { "parent": "定期锻炼", "child": "有氧运动" }, + { "parent": "定期锻炼", "child": "力量训练" } + ] + }, + "target": [{ + "type": "mind_map", + "encode": { + "source": "parent", + "target": "child" + } + }] + }, + { + "source": { + "data": [ + { "category": "Artificial Intelligence", "subcategory": "Machine Learning" }, + { "category": "Artificial Intelligence", "subcategory": "Natural Language Processing" }, + { "category": "Artificial Intelligence", "subcategory": "Robotics" }, + { "category": "Machine Learning", "subcategory": "Supervised Learning" }, + { "category": "Machine Learning", "subcategory": "Unsupervised Learning" }, + { "category": "Natural Language Processing", "subcategory": "Sentiment Analysis" }, + { "category": "Natural Language Processing", "subcategory": "Machine Translation" } + ] + }, + "target": [{ + "type": "mind_map", + "encode": { + "source": "category", + "target": "subcategory" + } + }] + }, + { + "source": { + "data": [ + { "topic": "Programming Languages", "subtopic": "Compiled Languages" }, + { "topic": "Programming Languages", "subtopic": "Interpreted Languages" }, + { "topic": "Compiled Languages", "subtopic": "C" }, + { "topic": "Compiled Languages", "subtopic": "C++" }, + { "topic": "Interpreted Languages", "subtopic": "Python" }, + { "topic": "Interpreted Languages", "subtopic": "JavaScript" } + ] + }, + "target": [{ + "type": "mind_map", + "encode": { + "source": "topic", + "target": "subtopic" + } + }] + }, + { + "source": { + "data": [ + { "层级": "企业架构", "子层级": "战略层" }, + { "层级": "企业架构", "子层级": "业务层" }, + { "层级": "企业架构", "子层级": "应用层" }, + { "层级": "企业架构", "子层级": "技术层" }, + { "子层级": "战略层", "子子层级": "战略规划" }, + { "子层级": "业务层", "子子层级": "业务流程优化" }, + { "子层级": "应用层", "子子层级": "软件开发" }, + { "子层级": "技术层", "子子层级": "基础设施管理" } + ] + }, + "target": [{ + "type": "mind_map", + "encode": { + "source": "层级", + "target": "子层级" + } + }] + }, + { + "source": { + "data": [ + { "header": "Human Anatomy", "node": "Skeletal System" }, + { "header": "Human Anatomy", "node": "Muscular System" }, + { "header": "Human Anatomy", "node": "Nervous System" }, + { "node": "Skeletal System", "subnode": "Cranium" }, + { "node": "Skeletal System", "subnode": "Spine" }, + { "node": "Muscular System", "subnode": "Cardiac Muscles" }, + { "node": "Muscular System", "subnode": "Skeletal Muscles" } + ] + }, + "target": [{ + "type": "mind_map", + "encode": { + "source": "header", + "target": "node" + } + }] + }, + { + "source": { + "data": [ + { "主题": "旅行计划", "子构思": "目的地" }, + { "主题": "旅行计划", "子构思": "行程安排" }, + { "主题": "旅行计划", "子构思": "预算法则" }, + { "子构思": "目的地", "细节": "风景名胜" }, + { "子构思": "目的地", "细节": "特色美食" }, + { "子构思": "行程安排", "细节": "每日计划" }, + { "子构思": "行程安排", "细节": "交通方式" } + ] + }, + "target": [{ + "type": "mind_map", + "encode": { + "source": "主题", + "target": "子构思" + } + }] + }, + { + "source": { + "data": [ + { "category": "Finance", "subcategory": "Investment" }, + { "category": "Finance", "subcategory": "Insurance" }, + { "category": "Investment", "subcategory": "Stocks" }, + { "category": "Investment", "subcategory": "Bonds" }, + { "category": "Insurance", "subcategory": "Life Insurance" }, + { "category": "Insurance", "subcategory": "Health Insurance" } + ] + }, + "target": [{ + "type": "mind_map", + "encode": { + "source": "category", + "target": "subcategory" + } + }] + }, + { + "source": { + "data": [ + { "主题": "教育体系", "子主题": "小学教育" }, + { "主题": "教育体系", "子主题": "中学教育" }, + { "主题": "教育体系", "子主题": "高等教育" }, + { "子主题": "小学教育", "子子主题": "基础科目" }, + { "子主题": "小学教育", "子子主题": "课外活动" }, + { "子主题": "中学教育", "子子主题": "理科" }, + { "子主题": "中学教育", "子子主题": "文科" } + ] + }, + "target": [{ + "type": "mind_map", + "encode": { + "source": "主题", + "target": "子主题" + } + }] + } +] diff --git a/evaluations/datastes/recommend/multiple-axes/01_base.json b/evaluations/datastes/recommend/multiple-axes/01_base.json new file mode 100644 index 0000000..3c560ff --- /dev/null +++ b/evaluations/datastes/recommend/multiple-axes/01_base.json @@ -0,0 +1,1174 @@ +[ +{ + "source": { + "metas": [ + { + "name": "生产日期", + "dataType": "string" + }, + { + "name": "单价", + "dataType": "number" + }, + { + "name": "数量", + "dataType": "number" + } + ], + "data": [ + { + "生产日期": "2023-03-01", + "单价": 1234500, + "数量": 45 + }, + { + "生产日期": "2023-03-02", + "单价": 2345600, + "数量": 56 + }, + { + "生产日期": "2023-03-03", + "单价": 3456700, + "数量": 67 + }, + { + "生产日期": "2023-03-04", + "单价": 4567800, + "数量": 78 + }, + { + "生产日期": "2023-03-05", + "单价": 5678900, + "数量": 89 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": ["生产日期"], + "y": ["单价"], + "y2": ["数量"] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "有效期至", + "dataType": "string" + }, + { + "name": "成本价", + "dataType": "number" + }, + { + "name": "折扣率", + "dataType": "number" + } + ], + "data": [ + { + "有效期至": "2023/04/01", + "成本价": 6543210, + "折扣率": 20 + }, + { + "有效期至": "2023/04/02", + "成本价": 5432100, + "折扣率": 30 + }, + { + "有效期至": "2023/04/03", + "成本价": 4321000, + "折扣率": 40 + }, + { + "有效期至": "2023/04/04", + "成本价": 3210000, + "折扣率": 50 + }, + { + "有效期至": "2023/04/05", + "成本价": 2100000, + "折扣率": 60 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": ["有效期至"], + "y": ["成本价"], + "y2": ["折扣率"] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "发布时间", + "dataType": "string" + }, + { + "name": "点击量", + "dataType": "number" + }, + { + "name": "点赞数", + "dataType": "number" + } + ], + "data": [ + { + "发布时间": "2023/02/06", + "点击量": 4500, + "点赞数": 150 + }, + { + "发布时间": "2023/02/07", + "点击量": 5600, + "点赞数": 200 + }, + { + "发布时间": "2023/02/08", + "点击量": 6700, + "点赞数": 250 + }, + { + "发布时间": "2023/02/09", + "点击量": 7800, + "点赞数": 300 + }, + { + "发布时间": "2023/02/10", + "点击量": 8900, + "点赞数": 350 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": ["发布时间"], + "y": ["点击量"], + "y2": ["点赞数"] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "发表时间", + "dataType": "string" + }, + { + "name": "评论数", + "dataType": "number" + }, + { + "name": "转发数", + "dataType": "number" + } + ], + "data": [ + { + "发表时间": "2023-03-11", + "评论数": 1200, + "转发数": 450 + }, + { + "发表时间": "2023-03-12", + "评论数": 1300, + "转发数": 500 + }, + { + "发表时间": "2023-03-13", + "评论数": 1400, + "转发数": 550 + }, + { + "发表时间": "2023-03-14", + "评论数": 1500, + "转发数": 600 + }, + { + "发表时间": "2023-03-15", + "评论数": 1600, + "转发数": 650 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": ["发表时间"], + "y": ["评论数"], + "y2": ["转发数"] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "Date", + "dataType": "string" + }, + { + "name": "Visitors", + "dataType": "number" + }, + { + "name": "Conversions", + "dataType": "number" + } + ], + "data": [ + { + "Date": "01/03/2023", + "Visitors": 1000, + "Conversions": 50 + }, + { + "Date": "02/03/2023", + "Visitors": 1500, + "Conversions": 75 + }, + { + "Date": "03/03/2023", + "Visitors": 2000, + "Conversions": 100 + }, + { + "Date": "04/03/2023", + "Visitors": 2500, + "Conversions": 125 + }, + { + "Date": "05/03/2023", + "Visitors": 3000, + "Conversions": 150 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": ["Date"], + "y": ["Visitors"], + "y2": ["Conversions"] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "日期", + "dataType": "string" + }, + { + "name": "销售额", + "dataType": "number" + }, + { + "name": "客户数", + "dataType": "number" + } + ], + "data": [ + { + "日期": "2023-01-15", + "销售额": 80000, + "客户数": 1500 + }, + { + "日期": "2023-01-16", + "销售额": 85000, + "客户数": 1600 + }, + { + "日期": "2023-01-17", + "销售额": 90000, + "客户数": 1700 + }, + { + "日期": "2023-01-18", + "销售额": 95000, + "客户数": 1800 + }, + { + "日期": "2023-01-19", + "销售额": 100000, + "客户数": 1900 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": ["日期"], + "y": ["销售额"], + "y2": ["客户数"] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "有效期至", + "dataType": "string" + }, + { + "name": "成本价", + "dataType": "number" + }, + { + "name": "折扣率", + "dataType": "number" + } + ], + "data": [ + { + "有效期至": "2023-04-06", + "成本价": 5678901, + "折扣率": 45 + }, + { + "有效期至": "2023-04-07", + "成本价": 6789012, + "折扣率": 67 + }, + { + "有效期至": "2023-04-08", + "成本价": 7890123, + "折扣率": 89 + }, + { + "有效期至": "2023-04-09", + "成本价": 8901234, + "折扣率": 10 + }, + { + "有效期至": "2023-04-10", + "成本价": 9012345, + "折扣率": 23 + } + ] + }, + "target": [ + { + "type": "mutiple", + "encode": { + "x": [ + "有效期至" + ], + "y": [ + "成本价" + ], + "y2": [ + "折扣率" + ] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "有效期至", + "dataType": "string" + }, + { + "name": "折扣率", + "dataType": "number" + }, + { + "name": "库存量", + "dataType": "number" + }, + { + "name": "运费", + "dataType": "number" + } + ], + "data": [ + { + "有效期至": "2023/01/06", + "折扣率": 0.23, + "库存量": 34.5, + "运费": 130.7 + }, + { + "有效期至": "2023/01/07", + "折扣率": 0.67, + "库存量": 67.8, + "运费": 170.9 + }, + { + "有效期至": "2023/01/08", + "折扣率": 0.54, + "库存量": 12.3, + "运费": 76.4 + }, + { + "有效期至": "2023/01/09", + "折扣率": 0.89, + "库存量": 45.6, + "运费": 190.5 + }, + { + "有效期至": "2023/01/10", + "折扣率": 0.16, + "库存量": 98.7, + "运费": 50.2 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": [ + "有效期至" + ], + "y": [ + "折扣率" + ], + "y2": [ + "库存量", + "运费" + ] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "Date", + "dataType": "string" + }, + { + "name": "Temperature", + "dataType": "number" + }, + { + "name": "Humidity", + "dataType": "number" + } + ], + "data": [ + { + "Date": "2023年4月1日", + "Temperature": 22, + "Humidity": 60 + }, + { + "Date": "2023年4月2日", + "Temperature": 25, + "Humidity": 55 + }, + { + "Date": "2023年4月3日", + "Temperature": 21, + "Humidity": 65 + }, + { + "Date": "2023年4月4日", + "Temperature": 23, + "Humidity": 70 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": ["Date"], + "y": ["Temperature"], + "y2": ["Humidity"] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "Date", + "dataType": "string" + }, + { + "name": "CaloriesBurned", + "dataType": "number" + }, + { + "name": "Humidity", + "dataType": "number" + } + ], + "data": [ + { + "Date": "01-04-2023", + "CaloriesBurned": 500, + "Steps": 7000 + }, + { + "Date": "02-04-2023", + "CaloriesBurned": 520, + "Steps": 7100 + }, + { + "Date": "03-04-2023", + "CaloriesBurned": 530, + "Steps": 7200 + }, + { + "Date": "04-04-2023", + "CaloriesBurned": 550, + "Steps": 7300 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": ["Date"], + "y": ["CaloriesBurned"], + "y2": ["Steps"] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "商品类别", + "dataType": "string" + }, + { + "name": "利润", + "dataType": "number" + }, + { + "name": "折扣率", + "dataType": "number" + } + ], + "data": [ + { + "商品类别": "电器", + "利润": 550, + "折扣率": 0.72 + }, + { + "商品类别": "电子产品", + "利润": 650, + "折扣率": 0.77 + }, + { + "商品类别": "户外用品", + "利润": 750, + "折扣率": 0.82 + }, + { + "商品类别": "家居用品", + "利润": 850, + "折扣率": 0.87 + }, + { + "商品类别": "其他", + "利润": 950, + "折扣率": 0.92 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": [ + "商品类别" + ], + "y": [ + "利润" + ], + "y2": [ + "折扣率" + ] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "City", + "dataType": "string" + }, + { + "name": "Population", + "dataType": "number" + }, + { + "name": "Area", + "dataType": "number" + } + ], + "data": [ + { + "City": "New York", + "Population": 8419600, + "Area": 780 + }, + { + "City": "Los Angeles", + "Population": 3980400, + "Area": 1300 + }, + { + "City": "Chicago", + "Population": 2716000, + "Area": 606 + }, + { + "City": "Houston", + "Population": 2328000, + "Area": 1700 + }, + { + "City": "Phoenix", + "Population": 1690000, + "Area": 1340 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": [ + "City" + ], + "y": [ + "Population" + ], + "y2": [ + "Area" + ] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "月份", + "dataType": "string" + }, + { + "name": "收入", + "dataType": "number" + }, + { + "name": "花费", + "dataType": "number" + } + ], + "data": [ + { + "月份": "一月", + "收入": 10000, + "花费": 8000 + }, + { + "月份": "二月", + "收入": 11000, + "花费": 8500 + }, + { + "月份": "三月", + "收入": 12500, + "花费": 9000 + }, + { + "月份": "四月", + "收入": 13000, + "花费": 9500 + }, + { + "月份": "五月", + "收入": 13500, + "花费": 10000 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": [ + "月份" + ], + "y": [ + "收入" + ], + "y2": [ + "花费" + ] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "Category", + "dataType": "string" + }, + { + "name": "Sales", + "dataType": "number" + }, + { + "name": "Returns", + "dataType": "number" + } + ], + "data": [ + { + "Category": "Books", + "Sales": 15000, + "Returns": 500 + }, + { + "Category": "Clothing", + "Sales": 20000, + "Returns": 1000 + }, + { + "Category": "Food", + "Sales": 25000, + "Returns": 1500 + }, + { + "Category": "Toys", + "Sales": 30000, + "Returns": 2000 + }, + { + "Category": "Furniture", + "Sales": 35000, + "Returns": 2500 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": [ + "Category" + ], + "y": [ + "Sales" + ], + "y2": [ + "Returns" + ] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "程序语言", + "dataType": "string" + }, + { + "name": "使用人数", + "dataType": "number" + }, + { + "name": "项目数", + "dataType": "number" + } + ], + "data": [ + { + "程序语言": "Python", + "使用人数": 8500000, + "项目数": 42000 + }, + { + "程序语言": "Java", + "使用人数": 10400000, + "项目数": 39000 + }, + { + "程序语言": "JavaScript", + "使用人数": 10800000, + "项目数": 49000 + }, + { + "程序语言": "C++", + "使用人数": 5900000, + "项目数": 27000 + }, + { + "程序语言": "C#", + "使用人数": 5000000, + "项目数": 23000 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": [ + "程序语言" + ], + "y": [ + "使用人数" + ], + "y2": [ + "项目数" + ] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "Region", + "dataType": "string" + }, + { + "name": "GDP", + "dataType": "number" + }, + { + "name": "Population", + "dataType": "number" + } + ], + "data": [ + { + "Region": "North America", + "GDP": 22800000, + "Population": 579000000 + }, + { + "Region": "Europe", + "GDP": 19800000, + "Population": 742000000 + }, + { + "Region": "Asia", + "GDP": 28900000, + "Population": 4463000000 + }, + { + "Region": "South America", + "GDP": 3520000, + "Population": 428000000 + }, + { + "Region": "Africa", + "GDP": 2500000, + "Population": 1340000000 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": [ + "Region" + ], + "y": [ + "GDP" + ], + "y2": [ + "Population" + ] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "州名", + "dataType": "string" + }, + { + "name": "工作岗位", + "dataType": "number" + }, + { + "name": "失业率", + "dataType": "number" + } + ], + "data": [ + { + "州名": "加州", + "工作岗位": 17000000, + "失业率": 4.1 + }, + { + "州名": "得州", + "工作岗位": 12000000, + "失业率": 3.7 + }, + { + "州名": "佛罗里达州", + "工作岗位": 9500000, + "失业率": 3.3 + }, + { + "州名": "纽约州", + "工作岗位": 9200000, + "失业率": 4.0 + }, + { + "州名": "伊利诺伊州", + "工作岗位": 6000000, + "失业率": 4.5 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": [ + "州名" + ], + "y": [ + "工作岗位" + ], + "y2": [ + "失业率" + ] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "Company", + "dataType": "string" + }, + { + "name": "MarketCap", + "dataType": "number" + }, + { + "name": "Employees", + "dataType": "number" + } + ], + "data": [ + { + "Company": "Apple", + "MarketCap": 2200000, + "Employees": 147000 + }, + { + "Company": "Microsoft", + "MarketCap": 2000000, + "Employees": 181000 + }, + { + "Company": "Amazon", + "MarketCap": 1700000, + "Employees": 1335000 + }, + { + "Company": "Google", + "MarketCap": 1800000, + "Employees": 156500 + }, + { + "Company": "Facebook", + "MarketCap": 900000, + "Employees": 58604 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": [ + "Company" + ], + "y": [ + "MarketCap" + ], + "y2": [ + "Employees" + ] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "车型", + "dataType": "string" + }, + { + "name": "销售量", + "dataType": "number" + }, + { + "name": "市场份额", + "dataType": "number" + } + ], + "data": [ + { + "车型": "轿车", + "销售量": 3000000, + "市场份额": 0.45 + }, + { + "车型": "SUV", + "销售量": 3500000, + "市场份额": 0.52 + }, + { + "车型": "卡车", + "销售量": 400000, + "市场份额": 0.03 + }, + { + "车型": "电动车", + "销售量": 500000, + "市场份额": 0.07 + }, + { + "车型": "混动", + "销售量": 200000, + "市场份额": 0.03 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": [ + "车型" + ], + "y": [ + "销售量" + ], + "y2": [ + "市场份额" + ] + } + } + ] +}, +{ + "source": { + "metas": [ + { + "name": "Country", + "dataType": "string" + }, + { + "name": "Exports", + "dataType": "number" + }, + { + "name": "Imports", + "dataType": "number" + } + ], + "data": [ + { + "Country": "China", + "Exports": 2345000, + "Imports": 1980000 + }, + { + "Country": "USA", + "Exports": 1500000, + "Imports": 2300000 + }, + { + "Country": "Germany", + "Exports": 1400000, + "Imports": 1200000 + }, + { + "Country": "Japan", + "Exports": 1300000, + "Imports": 1400000 + }, + { + "Country": "South Korea", + "Exports": 880000, + "Imports": 550000 + } + ] + }, + "target": [ + { + "type": "multiple", + "encode": { + "x": [ + "Country" + ], + "y": [ + "Exports" + ], + "y2": [ + "Imports" + ] + } + } + ] +} +] diff --git a/evaluations/datastes/recommend/network-graph/01_base.json b/evaluations/datastes/recommend/network-graph/01_base.json new file mode 100644 index 0000000..58e4394 --- /dev/null +++ b/evaluations/datastes/recommend/network-graph/01_base.json @@ -0,0 +1,188 @@ +[ + { + "source": { + "data": [ + { "出发": "北京总部", "到达": "上海旗舰店" }, + { "出发": "北京总部", "到达": "南京旗舰店" }, + { "出发": "北京总部", "到达": "杭州旗舰店" }, + { "出发": "南京旗舰店", "到达": "扬州门店" }, + { "出发": "南京旗舰店", "到达": "盐城门店" }, + { "出发": "南京旗舰店", "到达": "南通门店" }, + { "出发": "南京旗舰店", "到达": "苏州门店" }, + { "出发": "杭州旗舰店", "到达": "湖州门店" }, + { "出发": "杭州旗舰店", "到达": "金华门店" }, + { "出发": "杭州旗舰店", "到达": "宁波门店" } + ] + }, + "target": { + "type": "network_graph", + "encode": { + "source": "出发", + "target": "到达" + } + } + }, + { + "source": { + "data": [ + { "source": "哈利·波特", "target": "赫敏·格兰杰", "relation": "朋友" }, + { "source": "哈利·波特", "target": "罗恩·韦斯莱", "relation": "朋友" }, + { "source": "哈利·波特", "target": "伏地魔", "relation": "敌人" }, + { "source": "伏地魔", "target": "哈利·波特", "relation": "试图杀死" } + ] + }, + "target": { + "type": "network_graph", + "encode": { + "source": "source", + "target": "target", + "label": "relation" + } + } + }, + { + "source": { + "data": [ + { "起点": "伦敦", "终点": "曼彻斯特"}, + { "起点": "曼彻斯特", "终点": "利兹"}, + { "起点": "利兹", "终点": "约克"}, + { "起点": "约克", "终点": "纽卡斯尔"}, + { "起点": "纽卡斯尔", "终点": "爱丁堡"}, + { "起点": "爱丁堡", "终点": "格拉斯哥"} + ] + }, + "target": { + "type": "network_graph", + "encode": { + "source": "起点", + "target": "终点" + } + } + }, + { + "source": { + "data": [ + { "source": "Rome", "target": "Milan"}, + { "source": "Milan", "target": "Venice"}, + { "source": "Venice", "target": "Florence"}, + { "source": "Florence", "target": "Rome"}, + { "source": "Rome", "target": "Naples"}, + { "source": "Naples", "target": "Sicily"} + ] + }, + "target": { + "type": "network_graph", + "encode": { + "source": "source", + "target": "target" + } + } + }, + { + "source": { + "data": [ + { "发源地": "长江", "流经": "武汉"}, + { "发源地": "长江", "流经": "南京"}, + { "发源地": "长江", "流经": "上海"}, + { "发源地": "黄河", "流经": "郑州"}, + { "发源地": "黄河", "流经": "济南"} + ] + }, + "target": { + "type": "network_graph", + "encode": { + "source": "发源地", + "target": "流经" + } + } + }, + { + "source": { + "data": [ + { "start": "New York", "end": "Chicago"}, + { "start": "Chicago", "end": "Los Angeles"}, + { "start": "Los Angeles", "end": "San Francisco"}, + { "start": "San Francisco", "end": "Las Vegas"}, + { "start": "Las Vegas", "end": "Seattle"} + ] + }, + "target": { + "type": "network_graph", + "encode": { + "source": "start", + "target": "end" + } + } + }, + { + "source": { + "data": [ + { "起始地": "东京", "目的地": "大阪", "交通工具": "新干线" }, + { "起始地": "大阪", "目的地": "京都", "交通工具": "新干线" }, + { "起始地": "京都", "目的地": "名古屋", "交通工具": "新干线" }, + { "起始地": "名古屋", "目的地": "东京", "交通工具": "新干线" } + ] + }, + "target": { + "type": "network_graph", + "encode": { + "source": "起始地", + "target": "目的地", + "label": "交通工具" + } + } + }, + { + "source": { + "data": [ + { "actor": "Leonardo DiCaprio", "co_actor": "Kate Winslet", "movie": "Titanic" }, + { "actor": "Leonardo DiCaprio", "co_actor": "Tom Hanks", "movie": "Catch Me If You Can" }, + { "actor": "Tom Hanks", "co_actor": "Meg Ryan", "movie": "You've Got Mail" }, + { "actor": "Tom Hanks", "co_actor": "Robin Wright", "movie": "Forrest Gump" } + ] + }, + "target": { + "type": "network_graph", + "encode": { + "source": "actor", + "target": "co_actor", + "label": "movie" + } + } + }, + { + "source": { + "data": [ + { "发送人": "张伟", "接收人": "李强", "邮件类型": "工作" }, + { "发送人": "李强", "接收人": "王芳", "邮件类型": "私人" }, + { "发送人": "王芳", "接收人": "张伟", "邮件类型": "工作" }, + { "发送人": "张伟", "接收人": "王芳", "邮件类型": "私人" } + ] + }, + "target": { + "type": "network_graph", + "encode": { + "source": "发送人", + "target": "接收人", + "label": "邮件类型" + } + } + }, + { + "source": { + "data": [ + { "developer": "Microsoft", "product": "Windows"}, + { "developer": "Apple", "product": "macOS"}, + { "developer": "Google", "product": "Android"}, + { "developer": "Ubuntu", "product": "Linux"} + ] + }, + "target": { + "type": "network_graph", + "encode": { + "source": "developer", + "target": "product" + } + } + } +] diff --git a/evaluations/datastes/recommend/pie/01_base.json b/evaluations/datastes/recommend/pie/01_base.json new file mode 100644 index 0000000..b2a3622 --- /dev/null +++ b/evaluations/datastes/recommend/pie/01_base.json @@ -0,0 +1,408 @@ +[ + { + "source": { + "data": [ + { "type": "微博", "value": 93.33 }, + { "type": "其他", "value": 6.67 }, + { "type": "论坛", "value": 4.77 }, + { "type": "网站", "value": 1.44 }, + { "type": "微信", "value": 1.12 }, + { "type": "客户端", "value": 1.05 }, + { "type": "新闻", "value": 0.81 }, + { "type": "视频", "value": 0.39 }, + { "type": "博客", "value": 0.37 }, + { "type": "报刊", "value": 0.17 } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": ["type"], + "y": ["value"] + } + } + ] + }, + { + "source": { + "data": [ + { "category": "北京", "percentage": 30.0 }, + { "category": "上海", "percentage": 25.0 }, + { "category": "广州", "percentage": 20.0 }, + { "category": "深圳", "percentage": 15.0 }, + { "category": "其他", "percentage": 10.0 } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": ["category"], + "y": ["percentage"] + } + } + ] + }, + { + "source": { + "data": [ + { "product": "Laptop", "market_share": 45.0 }, + { "product": "Tablet", "market_share": 20.0 }, + { "product": "Smartphone", "market_share": 25.0 }, + { "product": "Desktop", "market_share": 10.0 } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": ["product"], + "y": ["market_share"] + } + } + ] + }, + { + "source": { + "data": [ + { "渠道": "线上", "占比": 55.0 }, + { "渠道": "线下", "占比": 45.0 } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": ["渠道"], + "y": ["占比"] + } + } + ] + }, + { + "source": { + "data": [ + { "sector": "Healthcare", "fraction": 12.5 }, + { "sector": "Technology", "fraction": 20.0 }, + { "sector": "Finance", "fraction": 15.0 }, + { "sector": "Energy", "fraction": 10.0 }, + { "sector": "Consumer Goods", "fraction": 42.5 } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": ["sector"], + "y": ["fraction"] + } + } + ] + }, + { + "source": { + "data": [ + { "品牌": "可口可乐", "市场份额": 38.0 }, + { "品牌": "百事可乐", "市场份额": 34.0 }, + { "品牌": "7喜", "市场份额": 18.0 }, + { "品牌": "其他", "市场份额": 10.0 } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": ["品牌"], + "y": ["市场份额"] + } + } + ] + }, + { + "source": { + "data": [ + { "platform": "Windows", "users": 80.0 }, + { "platform": "MacOS", "users": 15.0 }, + { "platform": "Linux", "users": 5.0 } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": ["platform"], + "y": ["users"] + } + } + ] + }, + { + "source": { + "data": [ + { "语言": "Python", "比例": 50.0 }, + { "语言": "Java", "比例": 25.0 }, + { "语言": "JavaScript", "比例": 15.0 }, + { "语言": "其他", "比例": 10.0 } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": ["语言"], + "y": ["比例"] + } + } + ] + }, + { + "source": { + "data": [ + { "continent": "Asia", "proportion": 60.0 }, + { "continent": "Africa", "proportion": 15.0 }, + { "continent": "Europe", "proportion": 10.0 }, + { "continent": "America", "proportion": 10.0 }, + { "continent": "Oceania", "proportion": 5.0 } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": ["continent"], + "y": ["proportion"] + } + } + ] + }, + { + "source": { + "data": [ + { "交通方式": "私人汽车", "份额": 70.0 }, + { "交通方式": "公共交通", "份额": 20.0 }, + { "交通方式": "步行", "份额": 10.0 } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": ["交通方式"], + "y": ["份额"] + } + } + ] + }, + { + "source": { + "data": [ + { "genre": "Fiction", "sales": 40.0 }, + { "genre": "Non-Fiction", "sales": 30.0 }, + { "genre": "Comics", "sales": 10.0 }, + { "genre": "Science", "sales": 20.0 } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": ["genre"], + "y": ["sales"] + } + } + ] + }, + { + "source": { + "data": [ + { "文化活动": "电影", "人数": 60000 }, + { "文化活动": "音乐会", "人数": 20000 }, + { "文化活动": "艺术展览", "人数": 15000 }, + { "文化活动": "戏剧", "人数": 12000 } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": ["文化活动"], + "y": ["人数"] + } + } + ] + }, + { + "source": { + "data": [ + { "产品类别": "电子产品", "销售额": 500000 }, + { "产品类别": "家具", "销售额": 150000 }, + { "产品类别": "服饰", "销售额": 100000 }, + { "产品类别": "食品", "销售额": 250000 }, + { "产品类别": "书籍", "销售额": 50000 } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": ["产品类别"], + "y": ["销售额"] + } + } + ] + }, + { + "source": { + "data": [ + { "Payment Method": "Credit Card", "Amount": 75000 }, + { "Payment Method": "Cash", "Amount": 125000 }, + { "Payment Method": "Digital Wallet", "Amount": 52000 }, + { "Payment Method": "Bank Transfer", "Amount": 43000 } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": ["Payment Method"], + "y": ["Amount"] + } + } + ] + }, + { + "source": { + "data": [ + { "Energy Source": "Solar", "Usage": 1500 }, + { "Energy Source": "Wind", "Usage": 800 }, + { "Energy Source": "Hydro", "Usage": 2000 }, + { "Energy Source": "Nuclear", "Usage": 2500 }, + { "Energy Source": "Coal", "Usage": 3000 } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": ["Energy Source"], + "y": ["Usage"] + } + } + ] + }, + { + "source": { + "data": [ + { "社交媒体平台": "微信", "用户数": 800000 }, + { "社交媒体平台": "微博", "用户数": 300000 }, + { "社交媒体平台": "豆瓣", "用户数": 120000 }, + { "社交媒体平台": "知乎", "用户数": 130000 } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": ["社交媒体平台"], + "y": ["用户数"] + } + } + ] + }, + { + "source": { + "data": [ + { "Transport Mode": "Bicycle", "Count": 15000 }, + { "Transport Mode": "Bus", "Count": 60000 }, + { "Transport Mode": "Tram", "Count": 30000 }, + { "Transport Mode": "Train", "Count": 50000 } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": ["Transport Mode"], + "y": ["Count"] + } + } + ] + }, + { + "source": { + "data": [ + { "水果": "苹果", "数量": 30000 }, + { "水果": "香蕉", "数量": 25000 }, + { "水果": "橙子", "数量": 20000 }, + { "水果": "葡萄", "数量": 15000 } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": ["水果"], + "y": ["数量"] + } + } + ] + }, + { + "source": { + "data": [ + { "Beverage": "Coffee", "Volume": 120000 }, + { "Beverage": "Tea", "Volume": 80000 }, + { "Beverage": "Juice", "Volume": 40000 }, + { "Beverage": "Soda", "Volume": 30000 } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": ["Beverage"], + "y": ["Volume"] + } + } + ] + }, + { + "source": { + "data": [ + { "宠物类别": "猫", "数量": 5000 }, + { "宠物类别": "狗", "数量": 8000 }, + { "宠物类别": "鸟", "数量": 2000 }, + { "宠物类别": "鱼", "数量": 4000 } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": ["宠物类别"], + "y": ["数量"] + } + } + ] + }, + { + "source": { + "data": [ + { "Cuisine Type": "Italian", "Number of Restaurants": 120 }, + { "Cuisine Type": "Chinese", "Number of Restaurants": 300 }, + { "Cuisine Type": "Mexican", "Number of Restaurants": 150 }, + { "Cuisine Type": "Indian", "Number of Restaurants": 100 } + ] + }, + "target": [ + { + "type": "pie", + "encode": { + "x": ["Cuisine Type"], + "y": ["Number of Restaurants"] + } + } + ] + } +] diff --git a/evaluations/datastes/recommend/progress/01_base.json b/evaluations/datastes/recommend/progress/01_base.json new file mode 100644 index 0000000..c9c1a90 --- /dev/null +++ b/evaluations/datastes/recommend/progress/01_base.json @@ -0,0 +1,172 @@ +[ + { + "source": { + "data": [ + { + "10分钟内响应率": 85, + "10分钟内响应率_目标": 90 + } + ] + }, + "target": { + "type": "progress", + "encode": { + "y": ["10分钟内响应率"], + "target": ["10分钟内响应率_目标"] + } + } + }, + { + "source": { + "data": [ + { + "当月成本使用": 5000, + "月度预算": 10000 + } + ] + }, + "target": { + "type": "progress", + "encode": { + "y": ["当月成本使用"], + "target": ["月度预算"] + } + } + }, + { + "source": { + "data": [ + { + "CPU使用率": 75, + "CPU使用率_上限": 100 + } + ] + }, + "target": { + "type": "progress", + "encode": { + "y": ["CPU使用率"], + "target": ["CPU使用率_上限"] + } + } + }, + { + "source": { + "data": [ + { + "Daily Sales": 300, + "Sales Target": 500 + } + ] + }, + "target": { + "type": "progress", + "encode": { + "y": ["Daily Sales"], + "target": ["Sales Target"] + } + } + }, + { + "source": { + "data": [ + { + "项目完成情况": 40, + "项目完成目标": 100 + } + ] + }, + "target": { + "type": "progress", + "encode": { + "y": ["项目完成情况"], + "target": ["项目完成目标"] + } + } + }, + { + "source": { + "data": [ + { + "Battery Level": 60, + "Full Capacity": 100 + } + ] + }, + "target": { + "type": "progress", + "encode": { + "y": ["Battery Level"], + "target": ["Full Capacity"] + } + } + }, + { + "source": { + "data": [ + { + "季度利润": 200000, + "利润目标": 500000 + } + ] + }, + "target": { + "type": "progress", + "encode": { + "y": ["季度利润"], + "target": ["利润目标"] + } + } + }, + { + "source": { + "data": [ + { + "Project Completion Rate": 70, + "Target Completion Rate": 100 + } + ] + }, + "target": { + "type": "progress", + "encode": { + "y": ["Project Completion Rate"], + "target": ["Target Completion Rate"] + } + } + }, + { + "source": { + "data": [ + { + "库存利用率": 80, + "库存满负荷": 100 + } + ] + }, + "target": { + "type": "progress", + "encode": { + "y": ["库存利用率"], + "target": ["库存满负荷"] + } + } + }, + { + "source": { + "data": [ + { + "Subscription Growth": 350, + "Growth Target": 500 + } + ] + }, + "target": { + "type": "progress", + "encode": { + "y": ["Subscription Growth"], + "target": ["Growth Target"] + } + } + } +] diff --git a/evaluations/datastes/recommend/radar/01_single_item.json b/evaluations/datastes/recommend/radar/01_single_item.json new file mode 100644 index 0000000..18131ba --- /dev/null +++ b/evaluations/datastes/recommend/radar/01_single_item.json @@ -0,0 +1,255 @@ +[ + { + "source": { + "data": [ + { + "Development": 60, + "Marketing": 50, + "Users": 40, + "Test": 60, + "Language": 70, + "Technology": 50, + "Support": 30, + "Sales": 60, + "UX": 50 + } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "y": ["Development", "Marketing", "Users", "Test", "Language", "Technology", "Support", "Sales", "UX"] + } + }] + }, + { + "source": { + "data": [ + { + "开发": 70, + "市场": 65, + "用户": 40, + "测试": 75, + "语言": 85, + "技术": 60, + "支持": 45, + "销售": 55, + "用户体验": 70 + } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "y": ["开发", "市场", "用户", "测试", "语言", "技术", "支持", "销售", "用户体验"] + } + }] + }, + { + "source": { + "data": [ + { + "Development": 80, + "Marketing": 70, + "Customers": 60, + "Testing": 90, + "Communication": 75, + "Innovation": 85, + "Service": 55, + "Revenue": 65, + "Design": 80 + } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "y": ["Development", "Marketing", "Customers", "Testing", "Communication", "Innovation", "Service", "Revenue", "Design"] + } + }] + }, + { + "source": { + "data": [ + { + "运营": 60, + "市场分析": 70, + "用户粘性": 50, + "迭代": 80, + "沟通": 65, + "创造力": 75, + "客户服务": 80, + "利润": 55, + "视觉设计": 90 + } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "y": ["运营", "市场分析", "用户粘性", "迭代", "沟通", "创造力", "客户服务", "利润", "视觉设计"] + } + }] + }, + { + "source": { + "data": [ + { + "Engineering": 75, + "Promotion": 65, + "Client Base": 55, + "Auditing": 65, + "Diversity": 80, + "Efficiency": 70, + "Help Desk": 60, + "Growth": 85, + "Aesthetics": 75 + } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "y": ["Engineering", "Promotion", "Client Base", "Auditing", "Diversity", "Efficiency", "Help Desk", "Growth", "Aesthetics"] + } + }] + }, + { + "source": { + "data": [ + { + "战略": 85, + "广告": 60, + "客户反馈": 70, + "质量控制": 90, + "多样性": 65, + "产品研发": 75, + "技术支持": 80, + "盈利": 60, + "界面设计": 85 + } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "y": ["战略", "广告", "客户反馈", "质量控制", "多样性", "产品研发", "技术支持", "盈利", "界面设计"] + } + }] + }, + { + "source": { + "data": [ + { + "Strategy": 90, + "Social Media": 75, + "Satisfaction": 85, + "Verification": 80, + "Culture": 70, + "Project Development": 80, + "Online Support": 60, + "Finance": 70, + "Art Direction": 95 + } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "y": ["Strategy", "Social Media", "Satisfaction", "Verification", "Culture", "Project Development", "Online Support", "Finance", "Art Direction"] + } + }] + }, + { + "source": { + "data": [ + { + "产品设计": 65, + "传播": 70, + "客户关系": 60, + "测试验证": 85, + "文化": 75, + "项目管理": 90, + "技术服务": 85, + "财务指标": 65, + "艺术表现": 80 + } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "y": ["产品设计", "传播", "客户关系", "测试验证", "文化", "项目管理", "技术服务", "财务指标", "艺术表现"] + } + }] + }, + { + "source": { + "data": [ + { + "Leadership": 95, + "Digital Marketing": 85, + "User Base": 75, + "Risk Management": 90, + "Ethics": 80, + "Innovation Strategy": 85, + "Customer Assistance": 75, + "Profitability": 90, + "Visual Craft": 80 + } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "y": ["Leadership", "Digital Marketing", "User Base", "Risk Management", "Ethics", "Innovation Strategy", "Customer Assistance", "Profitability", "Visual Craft"] + } + }] + }, + { + "source": { + "data": [ + { + "领导力": 85, + "社交推广": 75, + "用户基础": 65, + "风险控制": 70, + "道德标准": 90, + "创新策略": 80, + "客户援助": 70, + "盈利能力": 85, + "视觉功夫": 75 + } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "y": ["领导力", "社交推广", "用户基础", "风险控制", "道德标准", "创新策略", "客户援助", "盈利能力", "视觉功夫"] + } + }] + }, + { + "source": { + "data": [ + { + "Data Analysis": 80, + "Public Relations": 85, + "Customer Retention": 90, + "Regulatory Compliance": 75, + "Inclusivity": 70, + "Tech Evolution": 95, + "Help Line": 70, + "Economics": 60, + "Creative Design": 85 + } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "y": ["Data Analysis", "Public Relations", "Customer Retention", "Regulatory Compliance", "Inclusivity", "Tech Evolution", "Help Line", "Economics", "Creative Design"] + } + }] + } +] diff --git a/evaluations/datastes/recommend/radar/02_measure_dimension.json b/evaluations/datastes/recommend/radar/02_measure_dimension.json new file mode 100644 index 0000000..05fc3cf --- /dev/null +++ b/evaluations/datastes/recommend/radar/02_measure_dimension.json @@ -0,0 +1,205 @@ +[ + { + "source": { + "data": [ + { "skill": "Design", "score": 70 }, + { "skill": "Development", "score": 60 }, + { "skill": "Marketing", "score": 50 }, + { "skill": "Users", "score": 40 }, + { "skill": "Test", "score": 60 }, + { "skill": "Language", "score": 70 }, + { "skill": "Technology", "score": 50 }, + { "skill": "Support", "score": 30 }, + { "skill": "Sales", "score": 60 }, + { "skill": "UX", "score": 50 } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "x": ["skill"], + "y": ["score"] + } + }] + }, + { + "source": { + "data": [ + { "skill": "沟通", "score": 75 }, + { "skill": "领导", "score": 88 }, + { "skill": "解决问题", "score": 65 }, + { "skill": "团队合作", "score": 92 }, + { "skill": "创新", "score": 78 } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "x": ["skill"], + "y": ["score"] + } + }] + }, + { + "source": { + "data": [ + { "skill": "Communication", "score": 82 }, + { "skill": "Leadership", "score": 90 }, + { "skill": "Problem Solving", "score": 70 }, + { "skill": "Teamwork", "score": 85 }, + { "skill": "Creativity", "score": 80 } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "x": ["skill"], + "y": ["score"] + } + }] + }, + { + "source": { + "data": [ + { "skill": "数据分析", "score": 63 }, + { "skill": "编程", "score": 55 }, + { "skill": "项目管理", "score": 77 }, + { "skill": "市场研究", "score": 70 }, + { "skill": "财务管理", "score": 60 } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "x": ["skill"], + "y": ["score"] + } + }] + }, + { + "source": { + "data": [ + { "skill": "Data Analysis", "score": 68 }, + { "skill": "Coding", "score": 72 }, + { "skill": "Project Management", "score": 90 }, + { "skill": "Market Research", "score": 65 }, + { "skill": "Financial Management", "score": 73 } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "x": ["skill"], + "y": ["score"] + } + }] + }, + { + "source": { + "data": [ + { "ability": "学习能力", "score": 85 }, + { "ability": "适应性", "score": 78 }, + { "ability": "时间管理", "score": 80 }, + { "ability": "危机管理", "score": 75 }, + { "ability": "冲突解决", "score": 82 } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "x": ["ability"], + "y": ["score"] + } + }] + }, + { + "source": { + "data": [ + { "能力": "Learning Ability", "表现": 88 }, + { "能力": "Adaptability", "表现": 75 }, + { "能力": "Time Management", "表现": 82 }, + { "能力": "Crisis Management", "表现": 79 }, + { "能力": "Conflict Resolution", "表现": 84 } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "x": ["能力"], + "y": ["表现"] + } + }] + }, + { + "source": { + "data": [ + { "aspect": "客户满意度", "score": 89 }, + { "aspect": "服务质量", "score": 85 }, + { "aspect": "产品创新", "score": 80 }, + { "aspect": "运营效率", "score": 78 }, + { "aspect": "品牌认知", "score": 83 } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "x": ["aspect"], + "y": ["score"] + } + }] + }, + { + "source": { + "data": [ + { "评分维度": "Customer Satisfaction", "打分": 91 }, + { "评分维度": "Service Quality", "打分": 86 }, + { "评分维度": "Product Innovation", "打分": 84 }, + { "评分维度": "Operational Efficiency", "打分": 75 }, + { "评分维度": "Brand Awareness", "打分": 79 } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "x": ["评分维度"], + "y": ["打分"] + } + }] + }, + { + "source": { + "data": [ + { "特性": "可用性", "分数": 90 }, + { "特性": "安全性", "分数": 88 }, + { "特性": "灵活性", "分数": 76 }, + { "特性": "可扩展性", "分数": 83 }, + { "特性": "易用性", "分数": 85 } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "x": ["特性"], + "y": ["分数"] + } + }] + }, + { + "source": { + "data": [ + { "attribute": "Usability", "score": 87 }, + { "attribute": "Security", "score": 89 }, + { "attribute": "Flexibility", "score": 80 }, + { "attribute": "Scalability", "score": 82 }, + { "attribute": "Ease of Use", "score": 86 } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "x": ["attribute"], + "y": ["score"] + } + }] + } +] diff --git a/evaluations/datastes/recommend/radar/03_split.json b/evaluations/datastes/recommend/radar/03_split.json new file mode 100644 index 0000000..a26de77 --- /dev/null +++ b/evaluations/datastes/recommend/radar/03_split.json @@ -0,0 +1,276 @@ +[ + { + "source": { + "data": [ + { "item": "Design", "gender": "女", "score": 70 }, + { "item": "Design", "gender": "男", "score": 30 }, + { "skill": "Development", "gender": "女", "score": 60 }, + { "skill": "Development", "gender": "男", "score": 70 }, + { "skill": "Marketing", "gender": "女", "score": 50 }, + { "skill": "Marketing", "gender": "男", "score": 60 }, + { "skill": "Users", "gender": "女", "score": 40 }, + { "skill": "Users", "gender": "男", "score": 50 }, + { "skill": "Test", "gender": "女", "score": 60 }, + { "skill": "Test", "gender": "男", "score": 70 }, + { "skill": "Language", "gender": "女", "score": 70 }, + { "skill": "Language", "gender": "男", "score": 50 }, + { "skill": "Technology", "gender": "女", "score": 50 }, + { "skill": "Technology", "gender": "男", "score": 40 }, + { "skill": "Support", "gender": "女", "score": 30 }, + { "skill": "Support", "gender": "男", "score": 40 }, + { "skill": "Sales", "gender": "女", "score": 60 }, + { "skill": "Sales", "gender": "男", "score": 40 }, + { "skill": "UX", "gender": "女", "score": 50 }, + { "skill": "UX", "gender": "男", "score": 60 } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "x": ["skill"], + "y": ["score"], + "s": ["gender"] + } + }] + }, + { + "source": { + "data": [ + { "指标": "生产效率", "类别": "甲", "分数": 80 }, + { "指标": "生产效率", "类别": "乙", "分数": 85 }, + { "指标": "产品质量", "类别": "甲", "分数": 90 }, + { "指标": "产品质量", "类别": "乙", "分数": 88 }, + { "指标": "创新能力", "类别": "甲", "分数": 86 }, + { "指标": "创新能力", "类别": "乙", "分数": 82 }, + { "指标": "市场份额", "类别": "甲", "分数": 75 }, + { "指标": "市场份额", "类别": "乙", "分数": 78 }, + { "指标": "客户满意度", "类别": "甲", "分数": 92 }, + { "指标": "客户满意度", "类别": "乙", "分数": 89 } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "x": ["指标"], + "y": ["分数"], + "s": ["类别"] + } + }] + }, + { + "source": { + "data": [ + { "attribute": "Communication", "team": "Alpha", "score": 75 }, + { "attribute": "Communication", "team": "Beta", "score": 80 }, + { "attribute": "Teamwork", "team": "Alpha", "score": 82 }, + { "attribute": "Teamwork", "team": "Beta", "score": 78 }, + { "attribute": "Problem Solving", "team": "Alpha", "score": 88 }, + { "attribute": "Problem Solving", "team": "Beta", "score": 84 }, + { "attribute": "Project Management", "team": "Alpha", "score": 79 }, + { "attribute": "Project Management", "team": "Beta", "score": 77 }, + { "attribute": "Technical Skills", "team": "Alpha", "score": 85 }, + { "attribute": "Technical Skills", "team": "Beta", "score": 83 } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "x": ["attribute"], + "y": ["score"], + "s": ["team"] + } + }] + }, + { + "source": { + "data": [ + { "维度": "性价比", "商品": "A", "评分": 90 }, + { "维度": "性价比", "商品": "B", "评分": 85 }, + { "维度": "外观设计", "商品": "A", "评分": 88 }, + { "维度": "外观设计", "商品": "B", "评分": 82 }, + { "维度": "功能性", "商品": "A", "评分": 84 }, + { "维度": "功能性", "商品": "B", "评分": 86 }, + { "维度": "耐用性", "商品": "A", "评分": 87 }, + { "维度": "耐用性", "商品": "B", "评分": 80 }, + { "维度": "环保性", "商品": "A", "评分": 82 }, + { "维度": "环保性", "商品": "B", "评分": 79 } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "x": ["维度"], + "y": ["评分"], + "s": ["商品"] + } + }] + }, + { + "source": { + "data": [ + { "aspect": "Efficiency", "department": "Sales", "score": 78 }, + { "aspect": "Efficiency", "department": "Marketing", "score": 76 }, + { "aspect": "Creativity", "department": "Sales", "score": 82 }, + { "aspect": "Creativity", "department": "Marketing", "score": 85 }, + { "aspect": "Reliability", "department": "Sales", "score": 80 }, + { "aspect": "Reliability", "department": "Marketing", "score": 81 }, + { "aspect": "Customer Service", "department": "Sales", "score": 89 }, + { "aspect": "Customer Service", "department": "Marketing", "score": 90 }, + { "aspect": "Adaptability", "department": "Sales", "score": 77 }, + { "aspect": "Adaptability", "department": "Marketing", "score": 79 } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "x": ["aspect"], + "y": ["score"], + "s": ["department"] + } + }] + }, + { + "source": { + "data": [ + { "属性": "服务质量", "类别": "一类", "得分": 78 }, + { "属性": "服务质量", "类别": "二类", "得分": 82 }, + { "属性": "价格优势", "类别": "一类", "得分": 80 }, + { "属性": "价格优势", "类别": "二类", "得分": 77 }, + { "属性": "市场反馈", "类别": "一类", "得分": 85 }, + { "属性": "市场反馈", "类别": "二类", "得分": 88 }, + { "属性": "售后服务", "类别": "一类", "得分": 79 }, + { "属性": "售后服务", "类别": "二类", "得分": 81 }, + { "属性": "品牌影响力", "类别": "一类", "得分": 84 }, + { "属性": "品牌影响力", "类别": "二类", "得分": 83 } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "x": ["属性"], + "y": ["得分"], + "s": ["类别"] + } + }] + }, + { + "source": { + "data": [ + { "factor": "Quality", "brand": "X", "score": 88 }, + { "factor": "Quality", "brand": "Y", "score": 86 }, + { "factor": "Design", "brand": "X", "score": 84 }, + { "factor": "Design", "brand": "Y", "score": 82 }, + { "factor": "Durability", "brand": "X", "score": 87 }, + { "factor": "Durability", "brand": "Y", "score": 85 }, + { "factor": "Ease of Use", "brand": "X", "score": 83 }, + { "factor": "Ease of Use", "brand": "Y", "score": 81 }, + { "factor": "Innovation", "brand": "X", "score": 90 }, + { "factor": "Innovation", "brand": "Y", "score": 89 } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "x": ["factor"], + "y": ["score"], + "s": ["brand"] + } + }] + }, + { + "source": { + "data": [ + { "指标": "工作效率", "员工": "A", "分数": 95 }, + { "指标": "工作效率", "员工": "B", "分数": 88 }, + { "指标": "团队合作", "员工": "A", "分数": 92 }, + { "指标": "团队合作", "员工": "B", "分数": 90 }, + { "指标": "时间管理", "员工": "A", "分数": 85 }, + { "指标": "时间管理", "员工": "B", "分数": 83 }, + { "指标": "创造力", "员工": "A", "分数": 89 }, + { "指标": "创造力", "员工": "B", "分数": 87 }, + { "指标": "可靠性", "员工": "A", "分数": 91 }, + { "指标": "可靠性", "员工": "B", "分数": 84 } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "x": ["指标"], + "y": ["分数"], + "s": ["员工"] + } + }] + }, + { + "source": { + "data": [ + { "dimension": "Efficiency", "entity": "Unit1", "rating": 84 }, + { "dimension": "Efficiency", "entity": "Unit2", "rating": 81 }, + { "dimension": "Innovation", "entity": "Unit1", "rating": 86 }, + { "dimension": "Innovation", "entity": "Unit2", "rating": 85 }, + { "dimension": "Cost Control", "entity": "Unit1", "rating": 78 }, + { "dimension": "Cost Control", "entity": "Unit2", "rating": 80 }, + { "dimension": "Flexibility", "entity": "Unit1", "rating": 79 }, + { "dimension": "Flexibility", "entity": "Unit2", "rating": 77 }, + { "dimension": "Responsiveness", "entity": "Unit1", "rating": 83 }, + { "dimension": "Responsiveness", "entity": "Unit2", "rating": 82 } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "x": ["dimension"], + "y": ["rating"], + "s": ["entity"] + } + }] + }, + { + "source": { + "data": [ + { "方面": "创新性", "团队": "第一", "得分": 85 }, + { "方面": "创新性", "团队": "第二", "得分": 82 }, + { "方面": "执行力", "团队": "第一", "得分": 83 }, + { "方面": "执行力", "团队": "第二", "得分": 80 }, + { "方面": "合作能力", "团队": "第一", "得分": 89 }, + { "方面": "合作能力", "团队": "第二", "得分": 87 }, + { "方面": "技术能力", "团队": "第一", "得分": 84 }, + { "方面": "技术能力", "团队": "第二", "得分": 82 }, + { "方面": "领导力", "团队": "第一", "得分": 88 }, + { "方面": "领导力", "团队": "第二", "得分": 86 } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "x": ["方面"], + "y": ["得分"], + "s": ["团队"] + } + }] + }, + { + "source": { + "data": [ + { "category": "Speed", "division": "North", "score": 79 }, + { "category": "Speed", "division": "South", "score": 82 }, + { "category": "Quality", "division": "North", "score": 88 }, + { "category": "Quality", "division": "South", "score": 85 }, + { "category": "Service", "division": "North", "score": 90 }, + { "category": "Service", "division": "South", "score": 87 }, + { "category": "Value", "division": "North", "score": 84 }, + { "category": "Value", "division": "South", "score": 80 }, + { "category": "Innovation", "division": "North", "score": 81 }, + { "category": "Innovation", "division": "South", "score": 83 } + ] + }, + "target": [{ + "type": "radar", + "encode": { + "x": ["category"], + "y": ["score"], + "s": ["division"] + } + }] + } +] diff --git a/evaluations/datastes/recommend/scatter/01_two_measure_correlate.json b/evaluations/datastes/recommend/scatter/01_two_measure_correlate.json new file mode 100644 index 0000000..4a2d822 --- /dev/null +++ b/evaluations/datastes/recommend/scatter/01_two_measure_correlate.json @@ -0,0 +1,381 @@ +[ + { + "source": { + "data": [ + {"排队时间":3, "满意度": 8}, + {"排队时间":4, "满意度": 9}, + {"排队时间":6, "满意度": 9}, + {"排队时间":6, "满意度": 8}, + {"排队时间":7, "满意度": 7}, + {"排队时间":7, "满意度": 3}, + {"排队时间":9, "满意度": 6}, + {"排队时间":10, "满意度": 5}, + {"排队时间":11, "满意度": 5}, + {"排队时间":12, "满意度": 4}, + {"排队时间":13, "满意度": 4}, + {"排队时间":13, "满意度": 3}, + {"排队时间":14, "满意度": 1}, + {"排队时间":15, "满意度": 1} + ] + }, + "targe": [ + { + "type": "scatter", + "encode": { + "x": ["排队时间"], + "y": ["满意度"] + } + } + ] + }, + { + "source": { + "data": [ + {"study_time": 2, "exam_score": 55}, + {"study_time": 3, "exam_score": 60}, + {"study_time": 4, "exam_score": 65}, + {"study_time": 5, "exam_score": 70}, + {"study_time": 6, "exam_score": 75}, + {"study_time": 7, "exam_score": 80}, + {"study_time": 8, "exam_score": 85}, + {"study_time": 9, "exam_score": 90}, + {"study_time": 10, "exam_score": 95}, + {"study_time": 11, "exam_score": 97} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["study_time"], + "y": ["exam_score"] + } + } + ] + }, + { + "source": { + "data": [ + {"温度": 20, "冰淇淋销售量": 75}, + {"温度": 22, "冰淇淋销售量": 80}, + {"温度": 25, "冰淇淋销售量": 85}, + {"温度": 28, "冰淇淋销售量": 90}, + {"温度": 30, "冰淇淋销售量": 100}, + {"温度": 32, "冰淇淋销售量": 110}, + {"温度": 35, "冰淇淋销售量": 130}, + {"温度": 37, "冰淇淋销售量": 150} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["温度"], + "y": ["冰淇淋销售量"] + } + } + ] + }, + { + "source": { + "data": [ + {"广告费用": 1000, "销售额": 5000}, + {"广告费用": 1500, "销售额": 5500}, + {"广告费用": 2000, "销售额": 6000}, + {"广告费用": 2500, "销售额": 6500}, + {"广告费用": 3000, "销售额": 7000}, + {"广告费用": 3500, "销售额": 7400}, + {"广告费用": 4000, "销售额": 7800}, + {"广告费用": 4500, "销售额": 8200} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["广告费用"], + "y": ["销售额"] + } + } + ] + }, + { + "source": { + "data": [ + {"hours_of_sleep": 5, "concentration_levels": 60}, + {"hours_of_sleep": 6, "concentration_levels": 65}, + {"hours_of_sleep": 7, "concentration_levels": 70}, + {"hours_of_sleep": 8, "concentration_levels": 75}, + {"hours_of_sleep": 9, "concentration_levels": 80}, + {"hours_of_sleep": 10, "concentration_levels": 85}, + {"hours_of_sleep": 11, "concentration_levels": 84}, + {"hours_of_sleep": 12, "concentration_levels": 82} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["hours_of_sleep"], + "y": ["concentration_levels"] + } + } + ] + }, + { + "source": { + "data": [ + {"步行距离": 1, "卡路里消耗": 100}, + {"步行距离": 2, "卡路里消耗": 200}, + {"步行距离": 3, "卡路里消耗": 300}, + {"步行距离": 4, "卡路里消耗": 380}, + {"步行距离": 5, "卡路里消耗": 450}, + {"步行距离": 6, "卡路里消耗": 500}, + {"步行距离": 7, "卡路里消耗": 550} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["步行距离"], + "y": ["卡路里消耗"] + } + } + ] + }, + { + "source": { + "data": [ + {"学习时长": 2, "记忆力得分": 50}, + {"学习时长": 3, "记忆力得分": 60}, + {"学习时长": 4, "记忆力得分": 65}, + {"学习时长": 5, "记忆力得分": 70}, + {"学习时长": 6, "记忆力得分": 75}, + {"学习时长": 7, "记忆力得分": 77}, + {"学习时长": 8, "记忆力得分": 80} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["学习时长"], + "y": ["记忆力得分"] + } + } + ] + }, + { + "source": { + "data": [ + {"time_spent_watching_tv": 1, "physical_activity_level": 80}, + {"time_spent_watching_tv": 2, "physical_activity_level": 78}, + {"time_spent_watching_tv": 3, "physical_activity_level": 70}, + {"time_spent_watching_tv": 4, "physical_activity_level": 65}, + {"time_spent_watching_tv": 5, "physical_activity_level": 60}, + {"time_spent_watching_tv": 6, "physical_activity_level": 55}, + {"time_spent_watching_tv": 10, "physical_activity_level": 55}, + {"time_spent_watching_tv": 4, "physical_activity_level": 70} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["time_spent_watching_tv"], + "y": ["physical_activity_level"] + } + } + ] + }, + { + "source": { + "data": [ + {"Temperature": 23, "IceCreamSales": 450}, + {"Temperature": 25, "IceCreamSales": 470}, + {"Temperature": 28, "IceCreamSales": 500}, + {"Temperature": 30, "IceCreamSales": 530}, + {"Temperature": 32, "IceCreamSales": 600}, + {"Temperature": 35, "IceCreamSales": 650} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["Temperature"], + "y": ["IceCreamSales"] + } + } + ] + }, + { + "source": { + "data": [ + {"学习时间": 1, "考试成绩": 55}, + {"学习时间": 2, "考试成绩": 65}, + {"学习时间": 3, "考试成绩": 70}, + {"学习时间": 4, "考试成绩": 80}, + {"学习时间": 5, "考试成绩": 85}, + {"学习时间": 6, "考试成绩": 90} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["学习时间"], + "y": ["考试成绩"] + } + } + ] + }, + { + "source": { + "data": [ + {"Rainfall": 5, "CropYield": 200}, + {"Rainfall": 10, "CropYield": 230}, + {"Rainfall": 15, "CropYield": 250}, + {"Rainfall": 20, "CropYield": 270}, + {"Rainfall": 25, "CropYield": 290}, + {"Rainfall": 30, "CropYield": 310} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["Rainfall"], + "y": ["CropYield"] + } + } + ] + }, + { + "source": { + "data": [ + {"车速": 40, "燃油效率": 15}, + {"车速": 60, "燃油效率": 16}, + {"车速": 80, "燃油效率": 14}, + {"车速": 100, "燃油效率": 12}, + {"车速": 120, "燃油效率": 10}, + {"车速": 140, "燃油效率": 8} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["车速"], + "y": ["燃油效率"] + } + } + ] + }, + { + "source": { + "data": [ + {"HoursWorked": 20, "WeeklyIncome": 200}, + {"HoursWorked": 25, "WeeklyIncome": 250}, + {"HoursWorked": 30, "WeeklyIncome": 300}, + {"HoursWorked": 35, "WeeklyIncome": 350}, + {"HoursWorked": 40, "WeeklyIncome": 400}, + {"HoursWorked": 45, "WeeklyIncome": 450} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["HoursWorked"], + "y": ["WeeklyIncome"] + } + } + ] + }, + { + "source": { + "data": [ + {"咖啡摄入量": 1, "工作效率": 60}, + {"咖啡摄入量": 2, "工作效率": 65}, + {"咖啡摄入量": 3, "工作效率": 70}, + {"咖啡摄入量": 4, "工作效率": 68}, + {"咖啡摄入量": 5, "工作效率": 66}, + {"咖啡摄入量": 6, "工作效率": 63} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["咖啡摄入量"], + "y": ["工作效率"] + } + } + ] + }, + { + "source": { + "data": [ + {"Age": 25, "MonthlySavings": 100}, + {"Age": 30, "MonthlySavings": 200}, + {"Age": 35, "MonthlySavings": 300}, + {"Age": 40, "MonthlySavings": 400}, + {"Age": 45, "MonthlySavings": 350}, + {"Age": 50, "MonthlySavings": 320} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["Age"], + "y": ["MonthlySavings"] + } + } + ] + }, + { + "source": { + "data": [ + {"演讲时间": 5, "观众满意度": 6}, + {"演讲时间": 10, "观众满意度": 7}, + {"演讲时间": 15, "观众满意度": 8}, + {"演讲时间": 30, "观众满意度": 7}, + {"演讲时间": 45, "观众满意度": 5}, + {"演讲时间": 60, "观众满意度": 4} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["演讲时间"], + "y": ["观众满意度"] + } + } + ] + }, + { + "source": { + "data": [ + {"AdvertisingBudget": 500, "NewCustomers": 50}, + {"AdvertisingBudget": 1000, "NewCustomers": 100}, + {"AdvertisingBudget": 1500, "NewCustomers": 140}, + {"AdvertisingBudget": 2000, "NewCustomers": 180}, + {"AdvertisingBudget": 2500, "NewCustomers": 210}, + {"AdvertisingBudget": 3000, "NewCustomers": 245} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["AdvertisingBudget"], + "y": ["NewCustomers"] + } + } + ] + } +] diff --git a/evaluations/datastes/recommend/scatter/02_split.json b/evaluations/datastes/recommend/scatter/02_split.json new file mode 100644 index 0000000..f2f25e6 --- /dev/null +++ b/evaluations/datastes/recommend/scatter/02_split.json @@ -0,0 +1,411 @@ +[ + { + "source": { + "data": [ + {"Series":"I", "X":10.0, "Y":8.04}, + {"Series":"I", "X":8.0, "Y":6.95}, + {"Series":"I", "X":13.0, "Y":7.58}, + {"Series":"I", "X":9.0, "Y":8.81}, + {"Series":"I", "X":11.0, "Y":8.33}, + {"Series":"I", "X":14.0, "Y":9.96}, + {"Series":"I", "X":6.0, "Y":7.24}, + {"Series":"I", "X":4.0, "Y":4.26}, + {"Series":"II", "X":10.0, "Y":9.14}, + {"Series":"II", "X":8.0, "Y":8.14}, + {"Series":"II", "X":13.0, "Y":8.74}, + {"Series":"II", "X":9.0, "Y":8.77}, + {"Series":"II", "X":11.0, "Y":9.26}, + {"Series":"II", "X":14.0, "Y":8.10}, + {"Series":"II", "X":6.0, "Y":6.13}, + {"Series":"II", "X":4.0, "Y":3.10}, + {"Series":"III", "X":10.0, "Y":7.46}, + {"Series":"III", "X":8.0, "Y":6.77}, + {"Series":"III", "X":13.0, "Y":12.74}, + {"Series":"III", "X":9.0, "Y":7.11}, + {"Series":"III", "X":11.0, "Y":7.81}, + {"Series":"III", "X":14.0, "Y":8.84}, + {"Series":"III", "X":6.0, "Y":6.08}, + {"Series":"IV", "X":8.0, "Y":6.58}, + {"Series":"IV", "X":8.0, "Y":5.76}, + {"Series":"IV", "X":8.0, "Y":7.71}, + {"Series":"IV", "X":8.0, "Y":8.84}, + {"Series":"IV", "X":8.0, "Y":8.47}, + {"Series":"IV", "X":8.0, "Y":7.04}, + {"Series":"IV", "X":8.0, "Y":5.25}, + {"Series":"IV", "X":19.0, "Y":12.50} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["X"], + "x2": ["Y"], + "s": ["Series"] + } + } + ] +}, +{ + "source": { + "data": [ + {"食品": "A", "价格": 15, "销量": 200}, + {"食品": "B", "价格": 18, "销量": 250}, + {"食品": "C", "价格": 20, "销量": 300}, + {"食品": "D", "价格": 22, "销量": 320}, + {"食品": "E", "价格": 25, "销量": 340} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["价格"], + "y": ["销量"] + } + } + ] +}, +{ + "source": { + "data": [ + {"城市": "A", "人口": 500000, "绿化率": 30}, + {"城市": "B", "人口": 1000000, "绿化率": 25}, + {"城市": "C", "人口": 1500000, "绿化率": 20}, + {"城市": "D", "人口": 2000000, "绿化率": 18}, + {"城市": "E", "人口": 2500000, "绿化率": 15} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["人口"], + "y": ["绿化率"] + } + } + ] +}, + { + "source": { + "metas": [ + { + "name": "Category", + "dataType": "string" + }, + { + "name": "Age", + "dataType": "number" + }, + { + "name": "Income", + "dataType": "number" + } + ], + "data": [ + {"Category": "A", "Age": 25, "Income": 30000}, + {"Category": "A", "Age": 30, "Income": 40000}, + {"Category": "B", "Age": 35, "Income": 50000}, + {"Category": "B", "Age": 40, "Income": 60000}, + {"Category": "C", "Age": 45, "Income": 70000} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["Age"], + "y": ["Income"], + "s": ["Category"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "商品类型", + "dataType": "string" + }, + { + "name": "Weight", + "dataType": "number" + }, + { + "name": "Price", + "dataType": "number" + } + ], + "data": [ + {"商品类型": "Item1", "Weight": 5, "Price": 100}, + {"商品类型": "Item2", "Weight": 10, "Price": 200}, + {"商品类型": "Item3", "Weight": 15, "Price": 250}, + {"商品类型": "Item4", "Weight": 20, "Price": 300}, + {"商品类型": "Item5", "Weight": 25, "Price": 400} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["Weight"], + "y": ["Price"], + "s": ["商品类型"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "城市", + "dataType": "string" + }, + { + "name": "人口", + "dataType": "number" + }, + { + "name": "公园数量", + "dataType": "number" + } + ], + "data": [ + {"城市": "城市A", "人口": 1000000, "公园数量": 50}, + {"城市": "城市B", "人口": 2000000, "公园数量": 80}, + {"城市": "城市C", "人口": 3000000, "公园数量": 100}, + {"城市": "城市D", "人口": 4000000, "公园数量": 150}, + {"城市": "城市E", "人口": 5000000, "公园数量": 200} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["人口"], + "y": ["公园数量"], + "s": ["城市"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "国家", + "dataType": "string" + }, + { + "name": "GDP", + "dataType": "number" + }, + { + "name": "人均收入", + "dataType": "number" + } + ], + "data": [ + {"国家": "Country1", "GDP": 5000, "人均收入": 30000}, + {"国家": "Country2", "GDP": 10000, "人均收入": 35000}, + {"国家": "Country3", "GDP": 15000, "人均收入": 40000}, + {"国家": "Country4", "GDP": 20000, "人均收入": 45000}, + {"国家": "Country5", "GDP": 25000, "人均收入": 50000} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["GDP"], + "y": ["人均收入"], + "s": ["国家"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "项目", + "dataType": "string" + }, + { + "name": "时间投入", + "dataType": "number" + }, + { + "name": "任务完成数量", + "dataType": "number" + } + ], + "data": [ + {"项目": "Project1", "时间投入": 10, "任务完成数量": 100}, + {"项目": "Project2", "时间投入": 20, "任务完成数量": 200}, + {"项目": "Project3", "时间投入": 30, "任务完成数量": 300}, + {"项目": "Project4", "时间投入": 40, "任务完成数量": 350}, + {"项目": "Project5", "时间投入": 50, "任务完成数量": 450} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["时间投入"], + "y": ["任务完成数量"], + "s": ["项目"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "公司", + "dataType": "string" + }, + { + "name": "员工人数", + "dataType": "number" + }, + { + "name": "营业额", + "dataType": "number" + } + ], + "data": [ + {"公司": "企业A", "员工人数": 50, "营业额": 500000}, + {"公司": "企业B", "员工人数": 100, "营业额": 1000000}, + {"公司": "企业C", "员工人数": 200, "营业额": 2000000}, + {"公司": "企业D", "员工人数": 300, "营业额": 3000000}, + {"公司": "企业E", "员工人数": 400, "营业额": 4000000} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["员工人数"], + "y": ["营业额"], + "s": ["公司"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "Subject", + "dataType": "string" + }, + { + "name": "Hours", + "dataType": "number" + }, + { + "name": "Scores", + "dataType": "number" + } + ], + "data": [ + {"Subject": "Math", "Hours": 5, "Scores": 80}, + {"Subject": "Science", "Hours": 10, "Scores": 85}, + {"Subject": "History", "Hours": 15, "Scores": 90}, + {"Subject": "Art", "Hours": 20, "Scores": 95}, + {"Subject": "PE", "Hours": 25, "Scores": 100} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["Hours"], + "y": ["Scores"], + "s": ["Subject"] + } + } + ] + }, + { + "source": { + "data": [ + {"创意类型": "新", "访问次数": 500, "购买量": 50}, + {"创意类型": "新", "访问次数": 1000, "购买量": 100}, + {"创意类型": "旧", "访问次数": 1500, "购买量": 150}, + {"创意类型": "旧", "访问次数": 2000, "购买量": 200}, + {"创意类型": "旧", "访问次数": 2500, "购买量": 250} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["访问次数"], + "y": ["购买量"], + "s": ["创意类型"] + } + } + ] + }, + { + "source": { + "metas": [ + { + "name": "性别", + "dataType": "string" + }, + { + "name": "用户满意度", + "dataType": "number" + }, + { + "name": "销售量", + "dataType": "number" + } + ], + "data": [ + {"性别": "男", "用户满意度": 60, "销售量": 500}, + {"性别": "男", "用户满意度": 70, "销售量": 600}, + {"性别": "女", "用户满意度": 80, "销售量": 700}, + {"性别": "女", "用户满意度": 90, "销售量": 800}, + {"性别": "男", "用户满意度": 100, "销售量": 900} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["用户满意度"], + "y": ["销售量"], + "s": ["性别"] + } + } + ] + }, + { + "source": { + "data": [ + {"Programming Language": "Python", "Popularity": 90, "Number of Users": 500000}, + {"Programming Language": "Java", "Popularity": 85, "Number of Users": 450000}, + {"Programming Language": "C++", "Popularity": 80, "Number of Users": 400000}, + {"Programming Language": "JavaScript", "Popularity": 95, "Number of Users": 600000}, + {"Programming Language": "Ruby", "Popularity": 70, "Number of Users": 350000} + ] + }, + "target": [ + { + "type": "scatter", + "encode": { + "x": ["Popularity"], + "y": ["Number of Users"], + "s": ["Programming Language"] + } + } + ] + } +] diff --git a/evaluations/datastes/recommend/scatter/03_split_and_size.json b/evaluations/datastes/recommend/scatter/03_split_and_size.json new file mode 100644 index 0000000..4fadbd2 --- /dev/null +++ b/evaluations/datastes/recommend/scatter/03_split_and_size.json @@ -0,0 +1,277 @@ +[ + { + "source": { + "data": [ + {"使用率": 75, "平均点击次数": 300, "业务分类": "电商", "平均耗时": 120}, + {"使用率": 85, "平均点击次数": 500, "业务分类": "社交媒体", "平均耗时": 95}, + {"使用率": 60, "平均点击次数": 250, "业务分类": "金融", "平均耗时": 200}, + {"使用率": 90, "平均点击次数": 600, "业务分类": "教育", "平均耗时": 80}, + {"使用率": 70, "平均点击次数": 400, "业务分类": "健康", "平均耗时": 150}, + {"使用率": 80, "平均点击次数": 550, "业务分类": "旅游", "平均耗时": 100}, + {"使用率": 65, "平均点击次数": 350, "业务分类": "娱乐", "平均耗时": 130}, + {"使用率": 95, "平均点击次数": 700, "业务分类": "科技", "平均耗时": 90}, + {"使用率": 72, "平均点击次数": 420, "业务分类": "物流", "平均耗时": 160}, + {"使用率": 88, "平均点击次数": 580, "业务分类": "新闻", "平均耗时": 110} + ] + }, + "target": [{ + "type": "scatter", + "encode": { + "x": ["使用率"], + "y": ["平均点击次数"], + "s": ["业务分类"], + "size": "平均耗时" + } + }] + }, + { + "source": { + "data": [ + {"GDP": 1500, "Inflation Rate": 3.0, "Country": "USA", "Population": 320}, + {"GDP": 900, "Inflation Rate": 4.2, "Country": "UK", "Population": 65}, + {"GDP": 800, "Inflation Rate": 2.5, "Country": "Japan", "Population": 127}, + {"GDP": 600, "Inflation Rate": 1.8, "Country": "Germany", "Population": 82}, + {"GDP": 700, "Inflation Rate": 2.2, "Country": "India", "Population": 1380}, + {"GDP": 550, "Inflation Rate": 3.5, "Country": "Brazil", "Population": 212}, + {"GDP": 730, "Inflation Rate": 2.7, "Country": "France", "Population": 67}, + {"GDP": 470, "Inflation Rate": 3.9, "Country": "Italy", "Population": 60}, + {"GDP": 910, "Inflation Rate": 2.8, "Country": "China", "Population": 1420}, + {"GDP": 670, "Inflation Rate": 2.6, "Country": "Canada", "Population": 37} + ] + }, + "target": [{ + "type": "scatter", + "encode": { + "x": ["GDP"], + "y": ["Inflation Rate"], + "s": ["Country"], + "size": "Population" + } + }] + }, + { + "source": { + "data": [ + {"房价": 20000, "租金回报率": 4.5, "城市": "北京", "人口": 2100}, + {"房价": 18000, "租金回报率": 3.8, "城市": "上海", "人口": 2400}, + {"房价": 17000, "租金回报率": 4.0, "城市": "深圳", "人口": 1300}, + {"房价": 16000, "租金回报率": 4.2, "城市": "广州", "人口": 1500}, + {"房价": 15000, "租金回报率": 3.5, "城市": "成都", "人口": 1600}, + {"房价": 14000, "租金回报率": 4.8, "城市": "重庆", "人口": 1800}, + {"房价": 13000, "租金回报率": 3.6, "城市": "武汉", "人口": 1100}, + {"房价": 12000, "租金回报率": 4.1, "城市": "西安", "人口": 900}, + {"房价": 11000, "租金回报率": 4.4, "城市": "杭州", "人口": 1050}, + {"房价": 10000, "租金回报率": 3.9, "城市": "天津", "人口": 1300} + ] + }, + "target": [{ + "type": "scatter", + "encode": { + "x": ["房价"], + "y": ["租金回报率"], + "s": ["城市"], + "size": "人口" + } + }] + }, + { + "source": { + "data": [ + {"Mileage": 27, "Gas Price": 3.2, "Brand": "Toyota", "Age": 5}, + {"Mileage": 22, "Gas Price": 3.5, "Brand": "Ford", "Age": 8}, + {"Mileage": 30, "Gas Price": 3.0, "Brand": "Honda", "Age": 6}, + {"Mileage": 25, "Gas Price": 2.9, "Brand": "Chevrolet", "Age": 7}, + {"Mileage": 24, "Gas Price": 3.1, "Brand": "Hyundai", "Age": 4}, + {"Mileage": 28, "Gas Price": 3.3, "Brand": "Mazda", "Age": 5}, + {"Mileage": 26, "Gas Price": 2.8, "Brand": "BMW", "Age": 8}, + {"Mileage": 29, "Gas Price": 3.4, "Brand": "Nissan", "Age": 6}, + {"Mileage": 23, "Gas Price": 3.6, "Brand": "Kia", "Age": 5}, + {"Mileage": 21, "Gas Price": 3.2, "Brand": "Volkswagen", "Age": 7} + ] + }, + "target": [{ + "type": "scatter", + "encode": { + "x": ["Mileage"], + "y": ["Gas Price"], + "s": ["Brand"], + "size": "Age" + } + }] + }, + { + "source": { + "data": [ + {"平均温度": 22, "降雨量": 100, "城市": "南京", "人口": 840}, + {"平均温度": 25, "降雨量": 80, "城市": "福州", "人口": 620}, + {"平均温度": 30, "降雨量": 60, "城市": "广州", "人口": 1500}, + {"平均温度": 28, "降雨量": 90, "城市": "长沙", "人口": 760}, + {"平均温度": 24, "降雨量": 110, "城市": "苏州", "人口": 1040}, + {"平均温度": 20, "降雨量": 130, "城市": "南京", "人口": 840}, + {"平均温度": 32, "降雨量": 70, "城市": "海口", "人口": 230}, + {"平均温度": 27, "降雨量": 85, "城市": "南昌", "人口": 550}, + {"平均温度": 26, "降雨量": 95, "城市": "昆明", "人口": 640}, + {"平均温度": 23, "降雨量": 120, "城市": "重庆", "人口": 1800} + ] + }, + "target": [{ + "type": "scatter", + "encode": { + "x": ["平均温度"], + "y": ["降雨量"], + "s": ["城市"], + "size": "人口" + } + }] + }, + { + "source": { + "data": [ + {"Salary": 8000, "Experience": 5, "Industry": "Technology", "Age": 27}, + {"Salary": 6000, "Experience": 8, "Industry": "Finance", "Age": 32}, + {"Salary": 5500, "Experience": 4, "Industry": "Healthcare", "Age": 29}, + {"Salary": 7000, "Experience": 7, "Industry": "Education", "Age": 35}, + {"Salary": 4800, "Experience": 3, "Industry": "Retail", "Age": 24}, + {"Salary": 7500, "Experience": 6, "Industry": "Real Estate", "Age": 30}, + {"Salary": 5200, "Experience": 5, "Industry": "Marketing", "Age": 28}, + {"Salary": 6900, "Experience": 9, "Industry": "Engineering", "Age": 40}, + {"Salary": 5700, "Experience": 4, "Industry": "Design", "Age": 26}, + {"Salary": 6200, "Experience": 8, "Industry": "Manufacturing", "Age": 33} + ] + }, + "target": [{ + "type": "scatter", + "encode": { + "x": ["Salary"], + "y": ["Experience"], + "s": ["Industry"], + "size": "Age" + } + }] + }, + { + "source": { + "data": [ + {"评论数": 500, "评级": 4.2, "产品类别": "电子产品", "销售量": 15000}, + {"评论数": 400, "评级": 4.0, "产品类别": "服装", "销售量": 12000}, + {"评论数": 320, "评级": 4.1, "产品类别": "家庭用品", "销售量": 13000}, + {"评论数": 400, "评级": 3.8, "产品类别": "运动器材", "销售量": 11000}, + {"评论数": 250, "评级": 4.3, "产品类别": "珠宝", "销售量": 5000}, + {"评论数": 300, "评级": 3.9, "产品类别": "化妆品", "销售量": 9000}, + {"评论数": 450, "评级": 4.0, "产品类别": "玩具", "销售量": 8000}, + {"评论数": 280, "评级": 4.4, "产品类别": "家具", "销售量": 7500}, + {"评论数": 370, "评级": 3.7, "产品类别": "图书", "销售量": 14000}, + {"评论数": 520, "评级": 4.1, "产品类别": "食品", "销售量": 15000} + ] + }, + "target": [{ + "type": "scatter", + "encode": { + "x": ["评论数"], + "y": ["评级"], + "s": ["产品类别"], + "size": "销售量" + } + }] + }, + { + "source": { + "data": [ + {"出勤率": 98, "通过率": 89, "课程": "数学", "班级人数": 30}, + {"出勤率": 92, "通过率": 84, "课程": "英语", "班级人数": 28}, + {"出勤率": 95, "通过率": 91, "课程": "化学", "班级人数": 32}, + {"出勤率": 90, "通过率": 80, "课程": "物理", "班级人数": 26}, + {"出勤率": 88, "通过率": 85, "课程": "生物", "班级人数": 29}, + {"出勤率": 93, "通过率": 87, "课程": "历史", "班级人数": 34}, + {"出勤率": 91, "通过率": 83, "课程": "地理", "班级人数": 30}, + {"出勤率": 94, "通过率": 90, "课程": "图画", "班级人数": 24}, + {"出勤率": 89, "通过率": 86, "课程": "音乐", "班级人数": 20}, + {"出勤率": 97, "通过率": 92, "课程": "计算机", "班级人数": 40} + ] + }, + "target": [{ + "type": "scatter", + "encode": { + "x": ["出勤率"], + "y": ["通过率"], + "s": ["课程"], + "size": "班级人数" + } + }] + }, + { + "source": { + "data": [ + {"Average Speed": 80, "Fuel Consumption": 8, "Transport Type": "Car", "Distance": 200}, + {"Average Speed": 70, "Fuel Consumption": 12, "Transport Type": "Truck", "Distance": 300}, + {"Average Speed": 60, "Fuel Consumption": 5, "Transport Type": "Motorcycle", "Distance": 100}, + {"Average Speed": 40, "Fuel Consumption": 0, "Transport Type": "Bicycle", "Distance": 20}, + {"Average Speed": 120, "Fuel Consumption": 15, "Transport Type": "Airplane", "Distance": 1000}, + {"Average Speed": 30, "Fuel Consumption": 0, "Transport Type": "Foot", "Distance": 5}, + {"Average Speed": 50, "Fuel Consumption": 3, "Transport Type": "Electric Scooter", "Distance": 50}, + {"Average Speed": 100, "Fuel Consumption": 10, "Transport Type": "Train", "Distance": 400}, + {"Average Speed": 90, "Fuel Consumption": 11, "Transport Type": "Bus", "Distance": 150}, + {"Average Speed": 110, "Fuel Consumption": 6, "Transport Type": "Helicopter", "Distance": 600} + ] + }, + "target": [{ + "type": "scatter", + "encode": { + "x": ["Average Speed"], + "y": ["Fuel Consumption"], + "s": ["Transport Type"], + "size": "Distance" + } + }] + }, + { + "source": { + "data": [ + {"Internet Usage": 70, "Social Media Activity": 600, "Age Group": "18-24", "Population Proportion": 15}, + {"Internet Usage": 65, "Social Media Activity": 400, "Age Group": "25-34", "Population Proportion": 18}, + {"Internet Usage": 55, "Social Media Activity": 300, "Age Group": "35-44", "Population Proportion": 20}, + {"Internet Usage": 50, "Social Media Activity": 200, "Age Group": "45-54", "Population Proportion": 17}, + {"Internet Usage": 40, "Social Media Activity": 150, "Age Group": "55-64", "Population Proportion": 15}, + {"Internet Usage": 30, "Social Media Activity": 80, "Age Group": "65+", "Population Proportion": 15}, + {"Internet Usage": 85, "Social Media Activity": 700, "Age Group": "16-17", "Population Proportion": 5}, + {"Internet Usage": 78, "Social Media Activity": 550, "Age Group": "18-19", "Population Proportion": 10}, + {"Internet Usage": 60, "Social Media Activity": 350, "Age Group": "20-21", "Population Proportion": 15}, + {"Internet Usage": 57, "Social Media Activity": 250, "Age Group": "22-23", "Population Proportion": 12} + ] + }, + "target": [{ + "type": "scatter", + "encode": { + "x": ["Internet Usage"], + "y": ["Social Media Activity"], + "s": ["Age Group"], + "size": "Population Proportion" + } + }] + }, + { + "source": { + "data": [ + {"员工满意度": 4.2, "年停工率": 5, "部门": "研发", "员工人数": 200}, + {"员工满意度": 3.8, "年停工率": 8, "部门": "生产", "员工人数": 350}, + {"员工满意度": 4.5, "年停工率": 3, "部门": "销售", "员工人数": 150}, + {"员工满意度": 4.0, "年停工率": 6, "部门": "人力资源", "员工人数": 80}, + {"员工满意度": 3.9, "年停工率": 7, "部门": "财务", "员工人数": 100}, + {"员工满意度": 4.1, "年停工率": 4, "部门": "市场", "员工人数": 120}, + {"员工满意度": 3.7, "年停工率": 9, "部门": "物流", "员工人数": 200}, + {"员工满意度": 4.3, "年停工率": 5, "部门": "客服", "员工人数": 60}, + {"员工满意度": 4.4, "年停工率": 2, "部门": "IT", "员工人数": 90}, + {"员工满意度": 3.5, "年停工率": 10, "部门": "采购", "员工人数": 70} + ] + }, + "target": [{ + "type": "scatter", + "encode": { + "x": ["员工满意度"], + "y": ["年停工率"], + "s": ["部门"], + "size": "员工人数" + } + }] + } +] diff --git a/evaluations/datastes/recommend/treemap/01_base.json b/evaluations/datastes/recommend/treemap/01_base.json new file mode 100644 index 0000000..ee4e9c4 --- /dev/null +++ b/evaluations/datastes/recommend/treemap/01_base.json @@ -0,0 +1,182 @@ +[ + { + "source": { + "data": [ + {"地区": "南方-东南", "销售额": 60}, + {"地区": "南方-华南", "销售额": 40}, + {"地区": "南方-西南", "销售额": 20}, + {"地区": "北方-华北", "销售额": 50}, + {"地区": "北方-东北", "销售额": 30} + ] + }, + "target": [ + { + "type": "treemap" + } + ] + }, + { + "source": { + "data": [ + {"Region": "USA-North", "GDP": 15000}, + {"Region": "USA-South", "GDP": 12000}, + {"Region": "USA-East", "GDP": 10000}, + {"Region": "USA-West", "GDP": 14000}, + {"Region": "Europe-Western", "GDP": 300}, + {"Region": "Europe-Eastern", "GDP": 200}, + {"Region": "Europe-Northern", "GDP": 100}, + {"Region": "Europe-Southern", "GDP": 150}, + {"Region": "Asia", "GDP": 85000} + ] + }, + "target": [ + { + "type": "treemap" + } + ] + }, + { + "source": { + "data": [ + {"行业": "科技", "投资金额": 200}, + {"行业": "金融", "投资金额": 150}, + {"行业": "教育", "投资金额": 50}, + {"行业": "医疗", "投资金额": 100}, + {"行业": "电子产品", "投资金额": 30}, + {"行业": "家电", "投资金额": 20}, + {"行业": "家具", "投资金额": 10}, + {"行业": "服装", "投资金额": 40} + ] + }, + "target": [ + { + "type": "treemap" + } + ] + }, + { + "source": { + "data": [ + {"Department": "Research", "Budget": 120}, + {"Department": "Development", "Budget": 80}, + {"Department": "Marketing", "Budget": 50}, + {"Department": "Sales", "Budget": 100}, + {"Department": "Technology", "Budget": 25}, + {"Department": "Finance", "Budget": 15}, + {"Department": "Healthcare", "Budget": 20}, + {"Department": "Retail", "Budget": 10} + ] + }, + "target": [ + { + "type": "treemap" + } + ] + }, + { + "source": { + "data": [ + {"地区": "华东-上海", "销售额": 100}, + {"地区": "华东-江苏", "销售额": 120}, + {"地区": "华东-浙江", "销售额": 110}, + {"地区": "华北-北京", "销售额": 130}, + {"地区": "华北-天津", "销售额": 90} + ] + }, + "target": [ + { + "type": "treemap" + } + ] + }, + { + "source": { + "data": [ + {"Region": "Africa/Northern", "Population": 20000}, + {"Region": "Africa/Western", "Population": 15000}, + {"Region": "Africa/Eastern", "Population": 18000}, + {"Region": "Africa/Southern", "Population": 10000}, + {"Region": "Africa/Central", "Population": 12000}, + {"Continent": "Asia", "Population": 4500}, + {"Continent": "Africa", "Population": 1300}, + {"Continent": "Europe", "Population": 750}, + {"Continent": "America", "Population": 1000} + ] + }, + "target": [ + { + "type": "treemap" + } + ] + }, + { + "source": { + "data": [ + {"Region": "Australia-New South Wales", "Tourism Revenue": 8000}, + {"Region": "Australia-Victoria", "Tourism Revenue": 7500}, + {"Region": "Australia-Queensland", "Tourism Revenue": 6800}, + {"Region": "Australia-Western Australia", "Tourism Revenue": 4000} + ] + }, + "target": [ + { + "type": "treemap" + } + ] + }, + { + "source": { + "data": [ + {"地区": "中东-伊朗", "石油产量": 350}, + {"地区": "中东-伊拉克", "石油产量": 300}, + {"地区": "中东-沙特", "石油产量": 500}, + {"地区": "中东-阿联酋", "石油产量": 200} + ] + }, + "target": [ + { + "type": "treemap" + } + ] + }, + { + "source": { + "data": [ + {"Region": "Latin America-Brazil", "Internet Users": 150000}, + {"Region": "Latin America-Mexico", "Internet Users": 120000}, + {"Region": "Latin America-Argentina", "Internet Users": 80000}, + {"Region": "Latin America-Chile", "Internet Users": 60000}, + {"Region": "南亚-印度", "Internet Users": 1400000}, + {"Region": "南亚-巴基斯坦", "Internet Users": 220000}, + {"Region": "南亚-孟加拉", "Internet Users": 160000}, + {"Region": "南亚-尼泊尔", "Internet Users": 30000} + ] + }, + "target": [ + { + "type": "treemap" + } + ] + }, + { + "source": { + "data": [ + {"地区": "Europe-Germany", "科技支出": 700000}, + {"地区": "Europe-France", "科技支出": 600000}, + {"地区": "Europe-Italy", "科技支出": 500000}, + {"地区": "Europe-UK", "科技支出": 550000}, + {"地区": "北美-美国", "科技支出": 500000}, + {"地区": "北美-加拿大", "科技支出": 80000}, + {"地区": "北美-墨西哥", "科技支出": 20000}, + {"地区": "Oceania-New Zealand", "科技支出": 10000}, + {"地区": "Oceania-Fiji", "科技支出": 500}, + {"地区": "Oceania-Samoa", "科技支出": 400} + ] + }, + "target": [ + { + "type": "treemap" + } + ] + } +] diff --git a/evaluations/datastes/recommend/word-cloud/01_base.json b/evaluations/datastes/recommend/word-cloud/01_base.json new file mode 100644 index 0000000..591f894 --- /dev/null +++ b/evaluations/datastes/recommend/word-cloud/01_base.json @@ -0,0 +1,1381 @@ +[ + { + "source": { + "data": [ + { + "value": 20.5, + "text": "书籍" + }, + { + "value": 8.1, + "text": "知识" + }, + { + "value": 15.7, + "text": "故事" + }, + { + "value": 5.3, + "text": "情节" + }, + { + "value": 12.9, + "text": "作者" + }, + { + "value": 7.4, + "text": "角色" + }, + { + "value": 14.6, + "text": "理解" + }, + { + "value": 6.2, + "text": "感受" + }, + { + "value": 19.8, + "text": "阅读" + }, + { + "value": 25.1, + "text": "思想" + }, + { + "value": 10.3, + "text": "文学" + }, + { + "value": 9.9, + "text": "历史" + }, + { + "value": 11.2, + "text": "文化" + }, + { + "value": 7.3, + "text": "发展" + }, + { + "value": 13.5, + "text": "人物" + }, + { + "value": 9.1, + "text": "背景" + }, + { + "value": 16.4, + "text": "情感" + }, + { + "value": 5.9, + "text": "重点" + }, + { + "value": 6.8, + "text": "表达" + }, + { + "value": 22.3, + "text": "灵感" + }, + { + "value": 18.6, + "text": "涵义" + } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "label": "text", + "y": "value" + } + } + ] + }, + { + "source": { + "data": [ + { + "value": 14.7, + "text": "梦" + }, + { + "value": 9.3, + "text": "心理" + }, + { + "value": 18.2, + "text": "寓言" + }, + { + "value": 5.8, + "text": "象征" + }, + { + "value": 10.5, + "text": "哲学" + }, + { + "value": 6.7, + "text": "幻想" + }, + { + "value": 12.3, + "text": "探索" + }, + { + "value": 8.0, + "text": "超自然" + }, + { + "value": 21.9, + "text": "幻想" + }, + { + "value": 16.5, + "text": "潜意识" + }, + { + "value": 11.4, + "text": "故事" + }, + { + "value": 7.1, + "text": "真实" + }, + { + "value": 25.0, + "text": "感受" + }, + { + "value": 6.4, + "text": "恢复" + }, + { + "value": 19.6, + "text": "梦境" + }, + { + "value": 8.5, + "text": "思维" + }, + { + "value": 13.7, + "text": "分析" + }, + { + "value": 5.2, + "text": "理解" + }, + { + "value": 9.8, + "text": "洞悉" + }, + { + "value": 22.1, + "text": "创造" + }, + { + "value": 17.4, + "text": "解码" + } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "label": "text", + "y": "value" + } + } + ] + }, + { + "source": { + "data": [ + { + "value": 11.9, + "text": "网络" + }, + { + "value": 7.8, + "text": "计算机" + }, + { + "value": 14.2, + "text": "连接" + }, + { + "value": 6.3, + "text": "信息" + }, + { + "value": 8.6, + "text": "下载" + }, + { + "value": 5.5, + "text": "数据" + }, + { + "value": 18.3, + "text": "安全" + }, + { + "value": 9.7, + "text": "技术" + }, + { + "value": 12.4, + "text": "互联网" + }, + { + "value": 20.0, + "text": "访问" + }, + { + "value": 16.8, + "text": "应用" + }, + { + "value": 13.5, + "text": "用户" + }, + { + "value": 7.2, + "text": "服务器" + }, + { + "value": 15.1, + "text": "协议" + }, + { + "value": 19.2, + "text": "开发" + }, + { + "value": 6.8, + "text": "终端" + }, + { + "value": 10.8, + "text": "联网" + }, + { + "value": 9.0, + "text": "拓扑" + }, + { + "value": 25.7, + "text": "基础" + }, + { + "value": 18.9, + "text": "云计算" + }, + { + "value": 16.1, + "text": "架构" + } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "label": "text", + "y": "value" + } + } + ] + }, + { + "source": { + "data": [ + { + "value": 21.0, + "text": "天气" + }, + { + "value": 8.7, + "text": "预报" + }, + { + "value": 15.9, + "text": "气候" + }, + { + "value": 5.6, + "text": "季节" + }, + { + "value": 13.1, + "text": "温度" + }, + { + "value": 7.9, + "text": "湿度" + }, + { + "value": 14.5, + "text": "寒冷" + }, + { + "value": 6.5, + "text": "炎热" + }, + { + "value": 18.4, + "text": "暴雨" + }, + { + "value": 10.2, + "text": "晴天" + }, + { + "value": 9.5, + "text": "雷电" + }, + { + "value": 25.6, + "text": "气压" + }, + { + "value": 11.7, + "text": "云层" + }, + { + "value": 7.4, + "text": "风速" + }, + { + "value": 20.2, + "text": "温差" + }, + { + "value": 16.9, + "text": "湿润" + }, + { + "value": 12.3, + "text": "秋季" + }, + { + "value": 5.3, + "text": "霜冻" + }, + { + "value": 9.3, + "text": "暖阳" + }, + { + "value": 23.8, + "text": "陈述" + }, + { + "value": 17.2, + "text": "分析" + } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "label": "text", + "y": "value" + } + } + ] + }, + { + "source": { + "data": [ + { + "value": 11.0, + "text": "节日" + }, + { + "value": 9.4, + "text": "庆祝" + }, + { + "value": 14.3, + "text": "佳节" + }, + { + "value": 6.2, + "text": "传统" + }, + { + "value": 15.7, + "text": "团圆" + }, + { + "value": 7.6, + "text": "习俗" + }, + { + "value": 13.4, + "text": "纪念" + }, + { + "value": 5.1, + "text": "活动" + }, + { + "value": 18.2, + "text": "宴会" + }, + { + "value": 22.5, + "text": "节庆" + }, + { + "value": 10.8, + "text": "聚会" + }, + { + "value": 7.2, + "text": "欢乐" + }, + { + "value": 15.9, + "text": "欢庆" + }, + { + "value": 19.3, + "text": "送礼" + }, + { + "value": 12.7, + "text": "热闹" + }, + { + "value": 8.5, + "text": "装饰" + }, + { + "value": 17.1, + "text": "氛围" + }, + { + "value": 9.0, + "text": "祈福" + }, + { + "value": 20.8, + "text": "喜悦" + }, + { + "value": 13.8, + "text": "纷呈" + }, + { + "value": 11.6, + "text": "年味" + } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "label": "text", + "y": "value" + } + } + ] + }, + { + "source": { + "data": [ + { + "value": 9.1, + "text": "音乐" + }, + { + "value": 8.4, + "text": "旋律" + }, + { + "value": 20.9, + "text": "节奏" + }, + { + "value": 5.7, + "text": "作曲" + }, + { + "value": 18.7, + "text": "乐器" + }, + { + "value": 7.8, + "text": "表演" + }, + { + "value": 16.5, + "text": "合唱" + }, + { + "value": 6.6, + "text": "编曲" + }, + { + "value": 22.1, + "text": "舞台" + }, + { + "value": 13.0, + "text": "和弦" + }, + { + "value": 10.5, + "text": "声乐" + }, + { + "value": 8.2, + "text": "歌唱" + }, + { + "value": 19.8, + "text": "流派" + }, + { + "value": 5.9, + "text": "伴奏" + }, + { + "value": 12.3, + "text": "唱片" + }, + { + "value": 23.6, + "text": "音乐会" + }, + { + "value": 14.8, + "text": "独唱" + }, + { + "value": 7.3, + "text": "音符" + }, + { + "value": 11.7, + "text": "发声" + }, + { + "value": 15.1, + "text": "音色" + }, + { + "value": 17.4, + "text": "韵律" + } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "label": "text", + "y": "value" + } + } + ] + }, + { + "source": { + "data": [ + { + "value": 12.1, + "text": "电影" + }, + { + "value": 8.9, + "text": "情节" + }, + { + "value": 15.4, + "text": "演员" + }, + { + "value": 6.0, + "text": "导演" + }, + { + "value": 14.7, + "text": "表演" + }, + { + "value": 7.7, + "text": "票房" + }, + { + "value": 18.5, + "text": "制作" + }, + { + "value": 5.4, + "text": "摄影" + }, + { + "value": 20.9, + "text": "剧情" + }, + { + "value": 22.8, + "text": "大片" + }, + { + "value": 9.6, + "text": "银幕" + }, + { + "value": 7.1, + "text": "特效" + }, + { + "value": 13.9, + "text": "剪辑" + }, + { + "value": 10.1, + "text": "放映" + }, + { + "value": 19.4, + "text": "观影" + }, + { + "value": 16.3, + "text": "编剧" + }, + { + "value": 8.0, + "text": "重制" + }, + { + "value": 23.1, + "text": "原创" + }, + { + "value": 11.5, + "text": "票房" + }, + { + "value": 17.2, + "text": "影视" + }, + { + "value": 24.6, + "text": "制作" + } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "label": "text", + "y": "value" + } + } + ] + }, + { + "source": { + "data": [ + { + "value": 22.0, + "text": "游戏" + }, + { + "value": 9.8, + "text": "角色" + }, + { + "value": 14.9, + "text": "冒险" + }, + { + "value": 6.1, + "text": "策略" + }, + { + "value": 20.7, + "text": "竞技" + }, + { + "value": 7.5, + "text": "挑战" + }, + { + "value": 16.0, + "text": "对战" + }, + { + "value": 5.2, + "text": "界面" + }, + { + "value": 19.9, + "text": "任务" + }, + { + "value": 13.6, + "text": "排行" + }, + { + "value": 10.4, + "text": "互动" + }, + { + "value": 8.3, + "text": "得分" + }, + { + "value": 12.9, + "text": "排行" + }, + { + "value": 17.8, + "text": "娱乐" + }, + { + "value": 7.0, + "text": "攻略" + }, + { + "value": 5.8, + "text": "操作" + }, + { + "value": 11.2, + "text": "关卡" + }, + { + "value": 25.4, + "text": "正版" + }, + { + "value": 15.6, + "text": "在线" + }, + { + "value": 18.1, + "text": "比赛" + }, + { + "value": 9.7, + "text": "角色扮演" + } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "label": "text", + "y": "value" + } + } + ] + }, + { + "source": { + "data": [ + { + "value": 18.8, + "text": "旅行" + }, + { + "value": 8.2, + "text": "景点" + }, + { + "value": 11.6, + "text": "探险" + }, + { + "value": 6.9, + "text": "导游" + }, + { + "value": 10.9, + "text": "路线" + }, + { + "value": 7.7, + "text": "出行" + }, + { + "value": 14.5, + "text": "住宿" + }, + { + "value": 5.3, + "text": "行程" + }, + { + "value": 20.1, + "text": "指南" + }, + { + "value": 13.2, + "text": "见闻" + }, + { + "value": 11.0, + "text": "计划" + }, + { + "value": 9.4, + "text": "冒险" + }, + { + "value": 17.6, + "text": "旅行社" + }, + { + "value": 6.4, + "text": "体验" + }, + { + "value": 15.3, + "text": "文化" + }, + { + "value": 8.9, + "text": "观光" + }, + { + "value": 5.5, + "text": "探索" + }, + { + "value": 23.0, + "text": "海外" + }, + { + "value": 12.8, + "text": "国内" + }, + { + "value": 10.2, + "text": "假期" + }, + { + "value": 9.9, + "text": "自由行" + } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "label": "text", + "y": "value" + } + } + ] + }, + { + "source": { + "data": [ + { + "value": 24.3, + "text": "健康" + }, + { + "value": 8.1, + "text": "锻炼" + }, + { + "value": 13.7, + "text": "饮食" + }, + { + "value": 6.8, + "text": "营养" + }, + { + "value": 10.6, + "text": "医生" + }, + { + "value": 7.5, + "text": "体检" + }, + { + "value": 16.7, + "text": "运动" + }, + { + "value": 5.6, + "text": "睡眠" + }, + { + "value": 20.5, + "text": "保健" + }, + { + "value": 14.0, + "text": "生活" + }, + { + "value": 9.2, + "text": "习惯" + }, + { + "value": 18.4, + "text": "长寿" + }, + { + "value": 11.1, + "text": "身心" + }, + { + "value": 5.3, + "text": "平衡" + }, + { + "value": 12.5, + "text": "营养" + }, + { + "value": 8.9, + "text": "患者" + }, + { + "value": 16.2, + "text": "调整" + }, + { + "value": 10.7, + "text": "放松" + }, + { + "value": 21.3, + "text": "检查" + }, + { + "value": 15.0, + "text": "健康管理" + }, + { + "value": 9.8, + "text": "养生" + } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "label": "text", + "y": "value" + } + } + ] + }, + { + "source": { + "data": [ + { "frequency": 9, "keyword": "AntV" }, + { "frequency": 8, "keyword": "F2" }, + { "frequency": 8, "keyword": "G2" }, + { "frequency": 8, "keyword": "G6" }, + { "frequency": 8, "keyword": "DataSet" }, + { "frequency": 8, "keyword": "墨者学院" }, + { "frequency": 6, "keyword": "Analysis" }, + { "frequency": 6, "keyword": "Data Mining" }, + { "frequency": 6, "keyword": "Data Vis" }, + { "frequency": 6, "keyword": "Design" }, + { "frequency": 6, "keyword": "Grammar" }, + { "frequency": 6, "keyword": "Graphics" }, + { "frequency": 6, "keyword": "Graph" }, + { "frequency": 6, "keyword": "Hierarchy" }, + { "frequency": 6, "keyword": "Labeling" }, + { "frequency": 6, "keyword": "Layout" }, + { "frequency": 6, "keyword": "Quantitative" }, + { "frequency": 6, "keyword": "Relation" }, + { "frequency": 6, "keyword": "Statistics" }, + { "frequency": 6, "keyword": "可视化" }, + { "frequency": 6, "keyword": "数据" }, + { "frequency": 6, "keyword": "数据可视化" } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "y": "frequency", + "label": "数据可视化" + } + } + ] + }, + [ + { + "source": { + "data": [ + { "frequency": 15, "keyword": "Hadoop" }, + { "frequency": 12, "keyword": "Spark" }, + { "frequency": 11, "keyword": "Kafka" }, + { "frequency": 10, "keyword": "NoSQL" }, + { "frequency": 9, "keyword": "Big Data" }, + { "frequency": 8, "keyword": "Data Lakes" }, + { "frequency": 8, "keyword": "ETL" }, + { "frequency": 7, "keyword": "Data Warehousing" }, + { "frequency": 7, "keyword": "Hive" }, + { "frequency": 7, "keyword": "Pig" }, + { "frequency": 6, "keyword": "Flink" }, + { "frequency": 6, "keyword": "MapReduce" }, + { "frequency": 5, "keyword": "OLAP" }, + { "frequency": 5, "keyword": "Data Pipelines" }, + { "frequency": 5, "keyword": "YARN" }, + { "frequency": 5, "keyword": "Cloud Storage" }, + { "frequency": 4, "keyword": "Presto" }, + { "frequency": 4, "keyword": "Storm" }, + { "frequency": 4, "keyword": "Real-time Processing" }, + { "frequency": 4, "keyword": "Batch Processing" } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "y": "frequency", + "label": "Data Engineering" + } + } + ] + }, + { + "source": { + "data": [ + { "frequency": 20, "keyword": "Harry Potter" }, + { "frequency": 18, "keyword": "Hermione Granger" }, + { "frequency": 16, "keyword": "Ron Weasley" }, + { "frequency": 15, "keyword": "Albus Dumbledore" }, + { "frequency": 14, "keyword": "Severus Snape" }, + { "frequency": 13, "keyword": "Luna Lovegood" }, + { "frequency": 12, "keyword": "Draco Malfoy" }, + { "frequency": 11, "keyword": "Sirius Black" }, + { "frequency": 10, "keyword": "Lord Voldemort" }, + { "frequency": 9, "keyword": "Hogwarts" }, + { "frequency": 8, "keyword": "House Elf" }, + { "frequency": 8, "keyword": "Quidditch" }, + { "frequency": 7, "keyword": "Muggle" }, + { "frequency": 6, "keyword": "Gryffindor" }, + { "frequency": 5, "keyword": "Hufflepuff" }, + { "frequency": 5, "keyword": "Ravenclaw" }, + { "frequency": 5, "keyword": "Slytherin" }, + { "frequency": 5, "keyword": "Death Eaters" }, + { "frequency": 4, "keyword": "Ministry of Magic" }, + { "frequency": 4, "keyword": "The Burrow" } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "y": "frequency", + "label": "Harry Potter Universe" + } + } + ] + }, + { + "source": { + "data": [ + { "frequency": 18, "keyword": "React" }, + { "frequency": 17, "keyword": "Vue" }, + { "frequency": 16, "keyword": "Angular" }, + { "frequency": 15, "keyword": "Svelte" }, + { "frequency": 14, "keyword": "Redux" }, + { "frequency": 13, "keyword": "MobX" }, + { "frequency": 12, "keyword": "Context API" }, + { "frequency": 11, "keyword": "JSX" }, + { "frequency": 10, "keyword": "Vuex" }, + { "frequency": 9, "keyword": "Angular CLI" }, + { "frequency": 8, "keyword": "Component Lifecycle" }, + { "frequency": 8, "keyword": "Hooks" }, + { "frequency": 7, "keyword": "Directives" }, + { "frequency": 6, "keyword": "Templates" }, + { "frequency": 5, "keyword": "SPA" }, + { "frequency": 5, "keyword": "Virtual DOM" }, + { "frequency": 5, "keyword": "Prop Drilling" }, + { "frequency": 4, "keyword": "Two-way Binding" }, + { "frequency": 4, "keyword": "Webpack" }, + { "frequency": 4, "keyword": "Babel" } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "y": "frequency", + "label": "Frontend Frameworks" + } + } + ] + }, + { + "source": { + "data": [ + { "frequency": 17, "keyword": "Protein" }, + { "frequency": 16, "keyword": "Carbohydrate" }, + { "frequency": 15, "keyword": "Vitamin A" }, + { "frequency": 14, "keyword": "Vitamin C" }, + { "frequency": 13, "keyword": "Iron" }, + { "frequency": 12, "keyword": "Calcium" }, + { "frequency": 11, "keyword": "Fats" }, + { "frequency": 10, "keyword": "Fiber" }, + { "frequency": 9, "keyword": "Sodium" }, + { "frequency": 8, "keyword": "Cholesterol" }, + { "frequency": 8, "keyword": "Folic Acid" }, + { "frequency": 7, "keyword": "Omega 3" }, + { "frequency": 7, "keyword": "Zinc" }, + { "frequency": 6, "keyword": "Potassium" }, + { "frequency": 6, "keyword": "Vitamin D" }, + { "frequency": 5, "keyword": "Vitamin B12" }, + { "frequency": 5, "keyword": "Antioxidants" }, + { "frequency": 4, "keyword": "Phytonutrients" }, + { "frequency": 4, "keyword": "Fiber" }, + { "frequency": 4, "keyword": "Selenium" } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "y": "frequency", + "label": "Nutritional Components" + } + } + ] + }, + { + "source": { + "data": [ + { "frequency": 20, "keyword": "Artificial Intelligence" }, + { "frequency": 18, "keyword": "Machine Learning" }, + { "frequency": 16, "keyword": "Deep Learning" }, + { "frequency": 15, "keyword": "Neural Networks" }, + { "frequency": 14, "keyword": "Supervised Learning" }, + { "frequency": 13, "keyword": "Unsupervised Learning" }, + { "frequency": 12, "keyword": "Reinforcement Learning" }, + { "frequency": 11, "keyword": "Classification" }, + { "frequency": 10, "keyword": "Regression" }, + { "frequency": 9, "keyword": "Clustering" }, + { "frequency": 8, "keyword": "Natural Language Processing" }, + { "frequency": 8, "keyword": "Computer Vision" }, + { "frequency": 7, "keyword": "Data Preprocessing" }, + { "frequency": 6, "keyword": "Feature Engineering" }, + { "frequency": 5, "keyword": "Model Evaluation" }, + { "frequency": 5, "keyword": "Overfitting" }, + { "frequency": 5, "keyword": "Hyperparameters" }, + { "frequency": 4, "keyword": "Support Vector Machine" }, + { "frequency": 4, "keyword": "Decision Tree" }, + { "frequency": 4, "keyword": "Random Forest" } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "y": "frequency", + "label": "AI Concepts" + } + } + ] + }, + { + "source": { + "data": [ + { "frequency": 18, "keyword": "LeBron James" }, + { "frequency": 17, "keyword": "Michael Jordan" }, + { "frequency": 16, "keyword": "Kobe Bryant" }, + { "frequency": 15, "keyword": "Magic Johnson" }, + { "frequency": 14, "keyword": "Larry Bird" }, + { "frequency": 13, "keyword": "Shaquille O'Neal" }, + { "frequency": 12, "keyword": "Tim Duncan" }, + { "frequency": 11, "keyword": "Hakeem Olajuwon" }, + { "frequency": 10, "keyword": "Kareem Abdul-Jabbar" }, + { "frequency": 9, "keyword": "Wilt Chamberlain" }, + { "frequency": 8, "keyword": "Bill Russell" }, + { "frequency": 8, "keyword": "Steph Curry" }, + { "frequency": 7, "keyword": "Kevin Durant" }, + { "frequency": 6, "keyword": "Dirk Nowitzki" }, + { "frequency": 5, "keyword": "Charles Barkley" }, + { "frequency": 5, "keyword": "Karl Malone" }, + { "frequency": 5, "keyword": "Julius Erving" }, + { "frequency": 4, "keyword": "Dwyane Wade" }, + { "frequency": 4, "keyword": "Chris Paul" }, + { "frequency": 4, "keyword": "Scottie Pippen" } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "y": "frequency", + "label": "Basketball Legends" + } + } + ] + }, + { + "source": { + "data": [ + { "frequency": 20, "keyword": "Metabolism" }, + { "frequency": 18, "keyword": "DNA" }, + { "frequency": 16, "keyword": "RNA" }, + { "frequency": 15, "keyword": "Proteins" }, + { "frequency": 14, "keyword": "Cell Division" }, + { "frequency": 13, "keyword": "Photosynthesis" }, + { "frequency": 12, "keyword": "Genetic Code" }, + { "frequency": 11, "keyword": "Evolution" }, + { "frequency": 10, "keyword": "Homeostasis" }, + { "frequency": 9, "keyword": "Biochemistry" }, + { "frequency": 8, "keyword": "Ecology" }, + { "frequency": 8, "keyword": "Zoology" }, + { "frequency": 7, "keyword": "Botany" }, + { "frequency": 6, "keyword": "Molecular Biology" }, + { "frequency": 5, "keyword": "Microbiology" }, + { "frequency": 5, "keyword": "Virology" }, + { "frequency": 5, "keyword": "Immunology" }, + { "frequency": 4, "keyword": "Cell Biology" }, + { "frequency": 4, "keyword": "Genomics" }, + { "frequency": 4, "keyword": "Bioinformatics" } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "y": "frequency", + "label": "Biology Topics" + } + } + ] + }, + { + "source": { + "data": [ + { "frequency": 18, "keyword": "Jazz" }, + { "frequency": 17, "keyword": "Blues" }, + { "frequency": 16, "keyword": "Rock" }, + { "frequency": 15, "keyword": "Classical" }, + { "frequency": 14, "keyword": "Pop" }, + { "frequency": 13, "keyword": "Hip Hop" }, + { "frequency": 12, "keyword": "Reggae" }, + { "frequency": 11, "keyword": "Country" }, + { "frequency": 10, "keyword": "Folk" }, + { "frequency": 9, "keyword": "Electronic" }, + { "frequency": 8, "keyword": "R&B" }, + { "frequency": 8, "keyword": "Soul" }, + { "frequency": 7, "keyword": "Gospel" }, + { "frequency": 6, "keyword": "Latin" }, + { "frequency": 5, "keyword": "Funk" }, + { "frequency": 5, "keyword": "Disco" }, + { "frequency": 5, "keyword": "Punk" }, + { "frequency": 4, "keyword": "Metal" }, + { "frequency": 4, "keyword": "Grunge" }, + { "frequency": 4, "keyword": "Ska" } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "y": "frequency", + "label": "Music Genres" + } + } + ] + }, + { + "source": { + "data": [ + { "frequency": 18, "keyword": "Hamburgers" }, + { "frequency": 17, "keyword": "Hot Dogs" }, + { "frequency": 16, "keyword": "Pizza" }, + { "frequency": 15, "keyword": "Tacos" }, + { "frequency": 14, "keyword": "Pasta" }, + { "frequency": 13, "keyword": "Sushi" }, + { "frequency": 12, "keyword": "Salads" }, + { "frequency": 11, "keyword": "Steak" }, + { "frequency": 10, "keyword": "BBQ" }, + { "frequency": 9, "keyword": "Seafood" }, + { "frequency": 8, "keyword": "Sandwiches" }, + { "frequency": 8, "keyword": "Burgers" }, + { "frequency": 7, "keyword": "Curry" }, + { "frequency": 6, "keyword": "Sushi Rolls" }, + { "frequency": 5, "keyword": "Desserts" }, + { "frequency": 5, "keyword": "Appetizers" }, + { "frequency": 5, "keyword": "Main Courses" }, + { "frequency": 4, "keyword": "Sides" }, + { "frequency": 4, "keyword": "Soups" }, + { "frequency": 4, "keyword": "Vegetarian" } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "y": "frequency", + "label": "Popular Dishes" + } + } + ] + }, + { + "source": { + "data": [ + { "frequency": 25, "keyword": "Earth" }, + { "frequency": 22, "keyword": "Jupiter" }, + { "frequency": 20, "keyword": "Mars" }, + { "frequency": 18, "keyword": "Venus" }, + { "frequency": 17, "keyword": "Saturn" }, + { "frequency": 16, "keyword": "Mercury" }, + { "frequency": 15, "keyword": "Neptune" }, + { "frequency": 14, "keyword": "Uranus" }, + { "frequency": 12, "keyword": "Pluto" }, + { "frequency": 11, "keyword": "Solar System" }, + { "frequency": 10, "keyword": "Moon" }, + { "frequency": 9, "keyword": "Asteroids" }, + { "frequency": 8, "keyword": "Comets" }, + { "frequency": 8, "keyword": "Galaxies" }, + { "frequency": 7, "keyword": "Black Holes" }, + { "frequency": 6, "keyword": "Star Clusters" }, + { "frequency": 5, "keyword": "Nebulae" }, + { "frequency": 5, "keyword": "Supernova" }, + { "frequency": 4, "keyword": "Exoplanets" }, + { "frequency": 4, "keyword": "Cosmos" } + ] + }, + "target": [ + { + "type": "wordCloud", + "encode": { + "y": "frequency", + "label": "Astronomy Topics" + } + } + ] + } + ] +] diff --git a/prompts/chart-recommend.md b/prompts/chart-recommend.md new file mode 100644 index 0000000..5116510 --- /dev/null +++ b/prompts/chart-recommend.md @@ -0,0 +1,46 @@ +## 角色 + +你是一个数据可视化专家,你拥有多年的数据分析和可视化经验,可以通过用户提供的原始数据和数据字段元信息,推荐合理的图表类型和图表配置。 + +## 任务 + +- 图表推荐:根据原始数据,推荐最适合用来展示数据的图表类型,并生成用于绘制图表的图表配置。 + +## 图表推荐工作流程 + +1. 理解用户问题,提取可视化意图。 +2. 理解用户的数据,提取数据的关键特点。用户可能给出原始数据 data,也可能给出数据的元信息 metas,字段元信息包含字段名、字段类型。 +3. 结合意图和数据特点,选择适合用户分析意图和场景的图表类型。如果用户直接指定了图表类型,使用用户指定的;如果用户没有指定,根据可视化的数据选择合适的图表类型。 +4. 根据图表类型和可视化数据,生成可视化图表配置。 + +## 图表知识 +{{}} + +## 要求 + +- 输出的格式为 JSON 格式,不得添加任何额外的文字描述或解释。 + +## 参考例子: +- 用户询问:用图表展示这份数据 {"metas":[{"name":"Product","dataType":"string"},{"name":"Sales","dataType":"number"}],"data":[{"Product":"Laptop","Sales":250},{"Product":"Tablet","Sales":150},{"Product":"Smartphone","Sales":300}]} +- 你回答: +```vis-chart +{"type":"column","encode":{"x":"Product","y":"Sales"}, "data":[{"Product":"Laptop","Sales":250},{"Product":"Tablet","Sales":150},{"Product":"Smartphone","Sales":300}]} +``` + +- 用户询问:可视化下列数据 {"data":[{"水果":"苹果","数量":30000},{"水果":"香蕉","数量":25000},{"水果":"橙子","数量":20000},{"水果":"葡萄","数量":15000}]} +- 你回答: +```vis-chart +{"type":"pie","encode":{"x":"水果","y":"数量"}, "data":[{"水果":"苹果","数量":30000},{"水果":"香蕉","数量":25000},{"水果":"橙子","数量":20000},{"水果":"葡萄","数量":15000}]} +``` + +- 用户询问:用图表展示这份数据 [{"月份":"一月","降雨量":30},{"月份":"二月","降雨量":28},{"月份":"三月","降雨量":45},{"月份":"四月","降雨量":60},{"月份":"五月","降雨量":75},{"月份":"六月","降雨量":90}] +- 你回答: +```vis-chart +{"type":"line","encode":{"x":"月份","y":"降雨量"}, "data":[{"月份":"一月","降雨量":30},{"月份":"二月","降雨量":28},{"月份":"三月","降雨量":45},{"月份":"四月","降雨量":60},{"月份":"五月","降雨量":75},{"月份":"六月","降雨量":90}]} +``` + +- 用户询问:[{"category":"Artificial Intelligence","subcategory":"Machine Learning"},{"category":"Artificial Intelligence","subcategory":"Natural Language Processing"},{"category":"Artificial Intelligence","subcategory":"Robotics"},{"category":"Machine Learning","subcategory":"Supervised Learning"},{"category":"Machine Learning","subcategory":"Unsupervised Learning"},{"category":"Natural Language Processing","subcategory":"Sentiment Analysis"},{"category":"Natural Language Processing","subcategory":"Machine Translation"}] +- 你回答:[{"type":"mind_map","encode":{"source":"category","target":"subcategory"}}] +```vis-chart +{"type":"mind_map","encode":{"source":"category","target":"subcategory"}, "data"[{"category":"Artificial Intelligence","subcategory":"Machine Learning"},{"category":"Artificial Intelligence","subcategory":"Natural Language Processing"},{"category":"Artificial Intelligence","subcategory":"Robotics"},{"category":"Machine Learning","subcategory":"Supervised Learning"},{"category":"Machine Learning","subcategory":"Unsupervised Learning"},{"category":"Natural Language Processing","subcategory":"Sentiment Analysis"},{"category":"Natural Language Processing","subcategory":"Machine Translation"}]} +```