您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

47 行
1.2 KiB

2 年前
  1. {
  2. "cells": [
  3. {
  4. "cell_type": "markdown",
  5. "metadata": {},
  6. "source": [
  7. "这里我们提供了一个数据集,里面记录了中学生移动学习调查问卷答卷汇总的结果,在这里,我们将对这些数据进行可视化展示。运行下面的代码,即可得到可视化的结果。\n",
  8. "\n",
  9. "运行下面的代码,将可以看到我们的数据集包含哪些内容。可以看到,数据集的调查问卷中共记录了15个问题。"
  10. ]
  11. },
  12. {
  13. "cell_type": "code",
  14. "execution_count": null,
  15. "metadata": {},
  16. "outputs": [],
  17. "source": [
  18. "import numpy as np \n",
  19. "import matplotlib.pyplot as plt\n",
  20. "import pandas as pd\n",
  21. "data = pd.read_csv(\"中学生移动学习调查问卷答卷汇总.csv\")\n",
  22. "data"
  23. ]
  24. }
  25. ],
  26. "metadata": {
  27. "kernelspec": {
  28. "display_name": "Python 3",
  29. "language": "python",
  30. "name": "python3"
  31. },
  32. "language_info": {
  33. "codemirror_mode": {
  34. "name": "ipython",
  35. "version": 3
  36. },
  37. "file_extension": ".py",
  38. "mimetype": "text/x-python",
  39. "name": "python",
  40. "nbconvert_exporter": "python",
  41. "pygments_lexer": "ipython3",
  42. "version": "3.7.3"
  43. }
  44. },
  45. "nbformat": 4,
  46. "nbformat_minor": 2
  47. }