You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

47 lines
1.2 KiB

{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"这里我们提供了一个数据集,里面记录了中学生移动学习调查问卷答卷汇总的结果,在这里,我们将对这些数据进行可视化展示。运行下面的代码,即可得到可视化的结果。\n",
"\n",
"运行下面的代码,将可以看到我们的数据集包含哪些内容。可以看到,数据集的调查问卷中共记录了15个问题。"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"import numpy as np \n",
"import matplotlib.pyplot as plt\n",
"import pandas as pd\n",
"data = pd.read_csv(\"中学生移动学习调查问卷答卷汇总.csv\")\n",
"data"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.3"
}
},
"nbformat": 4,
"nbformat_minor": 2
}