目录

  • 1:学习前介绍
    • 1.1:学习方法
    • 1.2:数据分析的发展方向
  • 2:数据分析的介绍
    • 2.1:无处不在的数据
    • 2.2:数据的应用
    • 2.3:数据分析的定义
    • 2.4:数据分析的目的
      • 现状分析
      • 原因分析
      • 预测分析
    • 2.5:数据分析的流程
    • 2.6:学习数据分析的目的
  • 3:学习数据分析需要的工具
    • 3.1:需要学习的软件
    • 3.2:jupyter介绍
    • 3.3:jupyter notebook软件的特点
      • 基于web的在线编辑器
      • 可交互式
      • .ipynb文件分享
      • 支持markdown
      • 可以直接输出变量名
      • 分块执行代码
      • 产看函数的参数
      • 智能提示
    • 3.4:jupyter notebook的安装

1:学习前介绍

  • 主要介绍学习数据分析之前的一些准备工作

1.1:学习方法

  • 1:重视python的基础知识
  • 2:多归纳总结,构建自己的知识体系
  • 3:多练习、多应用、多思考

1.2:数据分析的发展方向

  • 业务型数据分析师:以某一个业务,来开发或完成数据分析
  • 技术型数据分析师:相对于业务性数据分析师来说,技术性数据分析师不是以一个业务来分析数据,而是以一个技术来完成一个技术

2:数据分析的介绍

  • 主要是介绍数据分析的一些基础知识

2.1:无处不在的数据

  • 在日常生活中处处存在着数据,有很多的地方都可以产生数据
  • 1:社交类的数据:微博、微信、知乎、豆瓣这些软件都可以产生非常多的数据
  • 2:交通类的数据:出租车、公交车、高德地图等等每天都会产生交通类型的数据
  • 3:金融类的数据:股票、基金这些也会产生一些数据
  • 4:医疗类的数据:比如在一个医院的医疗卡中可以通过这个医疗卡,知道你之前生过什么病,对那些药物过敏,要是每一个都有一个这个的医疗卡,那么对于病人来说,就没有必要去做一些检查了

2.2:数据的应用

  • 1:竞选预测:可以通过现在已经有的数据来分析,来预测M国的下一任总统是哪一个候选人
  • 2:拥堵预测:可以通过以前这个路段的堵车数据来分析,预测什么时候出行更好,这个功能多用在地图上
  • 3:信誉评估:通过之前的信誉来评估现在的信誉
  • 4:辅助诊断:通过数据分析可以预测未来会发生什么样的事情

2.3:数据分析的定义

  • 第一步:需要收集来大量的数据
  • 第二步:使用合适的统计分析方法
  • 第三步:提取有用的信息
  • 第四步:形成结论
  • 第五步:加以详细的研究
  • 注意:数据分析是一个过程而不是一个结果,所以这五步是每一个数据分析都必须要做的

2.4:数据分析的目的

  • 有三类分别为:现状分析、原因分析和预测分析

现状分析

  • 分析过去发生了什么,得出结论。是一种探索性分析

原因分析

  • 分析为什么会发生这样的事情,这一现象为什么会发生。是一种验证性数据分析

预测分析

  • 通过分析现有的数据,预测未来会发生什么。是一种预测性的数据分析

2.5:数据分析的流程

#mermaid-svg-huH0yDpzaYsRrTV6 .label{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);fill:#333;color:#333}#mermaid-svg-huH0yDpzaYsRrTV6 .label text{fill:#333}#mermaid-svg-huH0yDpzaYsRrTV6 .node rect,#mermaid-svg-huH0yDpzaYsRrTV6 .node circle,#mermaid-svg-huH0yDpzaYsRrTV6 .node ellipse,#mermaid-svg-huH0yDpzaYsRrTV6 .node polygon,#mermaid-svg-huH0yDpzaYsRrTV6 .node path{fill:#ECECFF;stroke:#9370db;stroke-width:1px}#mermaid-svg-huH0yDpzaYsRrTV6 .node .label{text-align:center;fill:#333}#mermaid-svg-huH0yDpzaYsRrTV6 .node.clickable{cursor:pointer}#mermaid-svg-huH0yDpzaYsRrTV6 .arrowheadPath{fill:#333}#mermaid-svg-huH0yDpzaYsRrTV6 .edgePath .path{stroke:#333;stroke-width:1.5px}#mermaid-svg-huH0yDpzaYsRrTV6 .flowchart-link{stroke:#333;fill:none}#mermaid-svg-huH0yDpzaYsRrTV6 .edgeLabel{background-color:#e8e8e8;text-align:center}#mermaid-svg-huH0yDpzaYsRrTV6 .edgeLabel rect{opacity:0.9}#mermaid-svg-huH0yDpzaYsRrTV6 .edgeLabel span{color:#333}#mermaid-svg-huH0yDpzaYsRrTV6 .cluster rect{fill:#ffffde;stroke:#aa3;stroke-width:1px}#mermaid-svg-huH0yDpzaYsRrTV6 .cluster text{fill:#333}#mermaid-svg-huH0yDpzaYsRrTV6 div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);font-size:12px;background:#ffffde;border:1px solid #aa3;border-radius:2px;pointer-events:none;z-index:100}#mermaid-svg-huH0yDpzaYsRrTV6 .actor{stroke:#ccf;fill:#ECECFF}#mermaid-svg-huH0yDpzaYsRrTV6 text.actor>tspan{fill:#000;stroke:none}#mermaid-svg-huH0yDpzaYsRrTV6 .actor-line{stroke:grey}#mermaid-svg-huH0yDpzaYsRrTV6 .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:#333}#mermaid-svg-huH0yDpzaYsRrTV6 .messageLine1{stroke-width:1.5;stroke-dasharray:2, 2;stroke:#333}#mermaid-svg-huH0yDpzaYsRrTV6 #arrowhead path{fill:#333;stroke:#333}#mermaid-svg-huH0yDpzaYsRrTV6 .sequenceNumber{fill:#fff}#mermaid-svg-huH0yDpzaYsRrTV6 #sequencenumber{fill:#333}#mermaid-svg-huH0yDpzaYsRrTV6 #crosshead path{fill:#333;stroke:#333}#mermaid-svg-huH0yDpzaYsRrTV6 .messageText{fill:#333;stroke:#333}#mermaid-svg-huH0yDpzaYsRrTV6 .labelBox{stroke:#ccf;fill:#ECECFF}#mermaid-svg-huH0yDpzaYsRrTV6 .labelText,#mermaid-svg-huH0yDpzaYsRrTV6 .labelText>tspan{fill:#000;stroke:none}#mermaid-svg-huH0yDpzaYsRrTV6 .loopText,#mermaid-svg-huH0yDpzaYsRrTV6 .loopText>tspan{fill:#000;stroke:none}#mermaid-svg-huH0yDpzaYsRrTV6 .loopLine{stroke-width:2px;stroke-dasharray:2, 2;stroke:#ccf;fill:#ccf}#mermaid-svg-huH0yDpzaYsRrTV6 .note{stroke:#aa3;fill:#fff5ad}#mermaid-svg-huH0yDpzaYsRrTV6 .noteText,#mermaid-svg-huH0yDpzaYsRrTV6 .noteText>tspan{fill:#000;stroke:none}#mermaid-svg-huH0yDpzaYsRrTV6 .activation0{fill:#f4f4f4;stroke:#666}#mermaid-svg-huH0yDpzaYsRrTV6 .activation1{fill:#f4f4f4;stroke:#666}#mermaid-svg-huH0yDpzaYsRrTV6 .activation2{fill:#f4f4f4;stroke:#666}#mermaid-svg-huH0yDpzaYsRrTV6 .mermaid-main-font{font-family:"trebuchet ms", verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-huH0yDpzaYsRrTV6 .section{stroke:none;opacity:0.2}#mermaid-svg-huH0yDpzaYsRrTV6 .section0{fill:rgba(102,102,255,0.49)}#mermaid-svg-huH0yDpzaYsRrTV6 .section2{fill:#fff400}#mermaid-svg-huH0yDpzaYsRrTV6 .section1,#mermaid-svg-huH0yDpzaYsRrTV6 .section3{fill:#fff;opacity:0.2}#mermaid-svg-huH0yDpzaYsRrTV6 .sectionTitle0{fill:#333}#mermaid-svg-huH0yDpzaYsRrTV6 .sectionTitle1{fill:#333}#mermaid-svg-huH0yDpzaYsRrTV6 .sectionTitle2{fill:#333}#mermaid-svg-huH0yDpzaYsRrTV6 .sectionTitle3{fill:#333}#mermaid-svg-huH0yDpzaYsRrTV6 .sectionTitle{text-anchor:start;font-size:11px;text-height:14px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-huH0yDpzaYsRrTV6 .grid .tick{stroke:#d3d3d3;opacity:0.8;shape-rendering:crispEdges}#mermaid-svg-huH0yDpzaYsRrTV6 .grid .tick text{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-huH0yDpzaYsRrTV6 .grid path{stroke-width:0}#mermaid-svg-huH0yDpzaYsRrTV6 .today{fill:none;stroke:red;stroke-width:2px}#mermaid-svg-huH0yDpzaYsRrTV6 .task{stroke-width:2}#mermaid-svg-huH0yDpzaYsRrTV6 .taskText{text-anchor:middle;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-huH0yDpzaYsRrTV6 .taskText:not([font-size]){font-size:11px}#mermaid-svg-huH0yDpzaYsRrTV6 .taskTextOutsideRight{fill:#000;text-anchor:start;font-size:11px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-huH0yDpzaYsRrTV6 .taskTextOutsideLeft{fill:#000;text-anchor:end;font-size:11px}#mermaid-svg-huH0yDpzaYsRrTV6 .task.clickable{cursor:pointer}#mermaid-svg-huH0yDpzaYsRrTV6 .taskText.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-huH0yDpzaYsRrTV6 .taskTextOutsideLeft.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-huH0yDpzaYsRrTV6 .taskTextOutsideRight.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-huH0yDpzaYsRrTV6 .taskText0,#mermaid-svg-huH0yDpzaYsRrTV6 .taskText1,#mermaid-svg-huH0yDpzaYsRrTV6 .taskText2,#mermaid-svg-huH0yDpzaYsRrTV6 .taskText3{fill:#fff}#mermaid-svg-huH0yDpzaYsRrTV6 .task0,#mermaid-svg-huH0yDpzaYsRrTV6 .task1,#mermaid-svg-huH0yDpzaYsRrTV6 .task2,#mermaid-svg-huH0yDpzaYsRrTV6 .task3{fill:#8a90dd;stroke:#534fbc}#mermaid-svg-huH0yDpzaYsRrTV6 .taskTextOutside0,#mermaid-svg-huH0yDpzaYsRrTV6 .taskTextOutside2{fill:#000}#mermaid-svg-huH0yDpzaYsRrTV6 .taskTextOutside1,#mermaid-svg-huH0yDpzaYsRrTV6 .taskTextOutside3{fill:#000}#mermaid-svg-huH0yDpzaYsRrTV6 .active0,#mermaid-svg-huH0yDpzaYsRrTV6 .active1,#mermaid-svg-huH0yDpzaYsRrTV6 .active2,#mermaid-svg-huH0yDpzaYsRrTV6 .active3{fill:#bfc7ff;stroke:#534fbc}#mermaid-svg-huH0yDpzaYsRrTV6 .activeText0,#mermaid-svg-huH0yDpzaYsRrTV6 .activeText1,#mermaid-svg-huH0yDpzaYsRrTV6 .activeText2,#mermaid-svg-huH0yDpzaYsRrTV6 .activeText3{fill:#000 !important}#mermaid-svg-huH0yDpzaYsRrTV6 .done0,#mermaid-svg-huH0yDpzaYsRrTV6 .done1,#mermaid-svg-huH0yDpzaYsRrTV6 .done2,#mermaid-svg-huH0yDpzaYsRrTV6 .done3{stroke:grey;fill:#d3d3d3;stroke-width:2}#mermaid-svg-huH0yDpzaYsRrTV6 .doneText0,#mermaid-svg-huH0yDpzaYsRrTV6 .doneText1,#mermaid-svg-huH0yDpzaYsRrTV6 .doneText2,#mermaid-svg-huH0yDpzaYsRrTV6 .doneText3{fill:#000 !important}#mermaid-svg-huH0yDpzaYsRrTV6 .crit0,#mermaid-svg-huH0yDpzaYsRrTV6 .crit1,#mermaid-svg-huH0yDpzaYsRrTV6 .crit2,#mermaid-svg-huH0yDpzaYsRrTV6 .crit3{stroke:#f88;fill:red;stroke-width:2}#mermaid-svg-huH0yDpzaYsRrTV6 .activeCrit0,#mermaid-svg-huH0yDpzaYsRrTV6 .activeCrit1,#mermaid-svg-huH0yDpzaYsRrTV6 .activeCrit2,#mermaid-svg-huH0yDpzaYsRrTV6 .activeCrit3{stroke:#f88;fill:#bfc7ff;stroke-width:2}#mermaid-svg-huH0yDpzaYsRrTV6 .doneCrit0,#mermaid-svg-huH0yDpzaYsRrTV6 .doneCrit1,#mermaid-svg-huH0yDpzaYsRrTV6 .doneCrit2,#mermaid-svg-huH0yDpzaYsRrTV6 .doneCrit3{stroke:#f88;fill:#d3d3d3;stroke-width:2;cursor:pointer;shape-rendering:crispEdges}#mermaid-svg-huH0yDpzaYsRrTV6 .milestone{transform:rotate(45deg) scale(0.8, 0.8)}#mermaid-svg-huH0yDpzaYsRrTV6 .milestoneText{font-style:italic}#mermaid-svg-huH0yDpzaYsRrTV6 .doneCritText0,#mermaid-svg-huH0yDpzaYsRrTV6 .doneCritText1,#mermaid-svg-huH0yDpzaYsRrTV6 .doneCritText2,#mermaid-svg-huH0yDpzaYsRrTV6 .doneCritText3{fill:#000 !important}#mermaid-svg-huH0yDpzaYsRrTV6 .activeCritText0,#mermaid-svg-huH0yDpzaYsRrTV6 .activeCritText1,#mermaid-svg-huH0yDpzaYsRrTV6 .activeCritText2,#mermaid-svg-huH0yDpzaYsRrTV6 .activeCritText3{fill:#000 !important}#mermaid-svg-huH0yDpzaYsRrTV6 .titleText{text-anchor:middle;font-size:18px;fill:#000;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-huH0yDpzaYsRrTV6 g.classGroup text{fill:#9370db;stroke:none;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);font-size:10px}#mermaid-svg-huH0yDpzaYsRrTV6 g.classGroup text .title{font-weight:bolder}#mermaid-svg-huH0yDpzaYsRrTV6 g.clickable{cursor:pointer}#mermaid-svg-huH0yDpzaYsRrTV6 g.classGroup rect{fill:#ECECFF;stroke:#9370db}#mermaid-svg-huH0yDpzaYsRrTV6 g.classGroup line{stroke:#9370db;stroke-width:1}#mermaid-svg-huH0yDpzaYsRrTV6 .classLabel .box{stroke:none;stroke-width:0;fill:#ECECFF;opacity:0.5}#mermaid-svg-huH0yDpzaYsRrTV6 .classLabel .label{fill:#9370db;font-size:10px}#mermaid-svg-huH0yDpzaYsRrTV6 .relation{stroke:#9370db;stroke-width:1;fill:none}#mermaid-svg-huH0yDpzaYsRrTV6 .dashed-line{stroke-dasharray:3}#mermaid-svg-huH0yDpzaYsRrTV6 #compositionStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-huH0yDpzaYsRrTV6 #compositionEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-huH0yDpzaYsRrTV6 #aggregationStart{fill:#ECECFF;stroke:#9370db;stroke-width:1}#mermaid-svg-huH0yDpzaYsRrTV6 #aggregationEnd{fill:#ECECFF;stroke:#9370db;stroke-width:1}#mermaid-svg-huH0yDpzaYsRrTV6 #dependencyStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-huH0yDpzaYsRrTV6 #dependencyEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-huH0yDpzaYsRrTV6 #extensionStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-huH0yDpzaYsRrTV6 #extensionEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-huH0yDpzaYsRrTV6 .commit-id,#mermaid-svg-huH0yDpzaYsRrTV6 .commit-msg,#mermaid-svg-huH0yDpzaYsRrTV6 .branch-label{fill:lightgrey;color:lightgrey;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-huH0yDpzaYsRrTV6 .pieTitleText{text-anchor:middle;font-size:25px;fill:#000;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-huH0yDpzaYsRrTV6 .slice{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-huH0yDpzaYsRrTV6 g.stateGroup text{fill:#9370db;stroke:none;font-size:10px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-huH0yDpzaYsRrTV6 g.stateGroup text{fill:#9370db;fill:#333;stroke:none;font-size:10px}#mermaid-svg-huH0yDpzaYsRrTV6 g.statediagram-cluster .cluster-label text{fill:#333}#mermaid-svg-huH0yDpzaYsRrTV6 g.stateGroup .state-title{font-weight:bolder;fill:#000}#mermaid-svg-huH0yDpzaYsRrTV6 g.stateGroup rect{fill:#ECECFF;stroke:#9370db}#mermaid-svg-huH0yDpzaYsRrTV6 g.stateGroup line{stroke:#9370db;stroke-width:1}#mermaid-svg-huH0yDpzaYsRrTV6 .transition{stroke:#9370db;stroke-width:1;fill:none}#mermaid-svg-huH0yDpzaYsRrTV6 .stateGroup .composit{fill:white;border-bottom:1px}#mermaid-svg-huH0yDpzaYsRrTV6 .stateGroup .alt-composit{fill:#e0e0e0;border-bottom:1px}#mermaid-svg-huH0yDpzaYsRrTV6 .state-note{stroke:#aa3;fill:#fff5ad}#mermaid-svg-huH0yDpzaYsRrTV6 .state-note text{fill:black;stroke:none;font-size:10px}#mermaid-svg-huH0yDpzaYsRrTV6 .stateLabel .box{stroke:none;stroke-width:0;fill:#ECECFF;opacity:0.7}#mermaid-svg-huH0yDpzaYsRrTV6 .edgeLabel text{fill:#333}#mermaid-svg-huH0yDpzaYsRrTV6 .stateLabel text{fill:#000;font-size:10px;font-weight:bold;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-huH0yDpzaYsRrTV6 .node circle.state-start{fill:black;stroke:black}#mermaid-svg-huH0yDpzaYsRrTV6 .node circle.state-end{fill:black;stroke:white;stroke-width:1.5}#mermaid-svg-huH0yDpzaYsRrTV6 #statediagram-barbEnd{fill:#9370db}#mermaid-svg-huH0yDpzaYsRrTV6 .statediagram-cluster rect{fill:#ECECFF;stroke:#9370db;stroke-width:1px}#mermaid-svg-huH0yDpzaYsRrTV6 .statediagram-cluster rect.outer{rx:5px;ry:5px}#mermaid-svg-huH0yDpzaYsRrTV6 .statediagram-state .divider{stroke:#9370db}#mermaid-svg-huH0yDpzaYsRrTV6 .statediagram-state .title-state{rx:5px;ry:5px}#mermaid-svg-huH0yDpzaYsRrTV6 .statediagram-cluster.statediagram-cluster .inner{fill:white}#mermaid-svg-huH0yDpzaYsRrTV6 .statediagram-cluster.statediagram-cluster-alt .inner{fill:#e0e0e0}#mermaid-svg-huH0yDpzaYsRrTV6 .statediagram-cluster .inner{rx:0;ry:0}#mermaid-svg-huH0yDpzaYsRrTV6 .statediagram-state rect.basic{rx:5px;ry:5px}#mermaid-svg-huH0yDpzaYsRrTV6 .statediagram-state rect.divider{stroke-dasharray:10,10;fill:#efefef}#mermaid-svg-huH0yDpzaYsRrTV6 .note-edge{stroke-dasharray:5}#mermaid-svg-huH0yDpzaYsRrTV6 .statediagram-note rect{fill:#fff5ad;stroke:#aa3;stroke-width:1px;rx:0;ry:0}:root{--mermaid-font-family: '"trebuchet ms", verdana, arial';--mermaid-font-family: "Comic Sans MS", "Comic Sans", cursive}#mermaid-svg-huH0yDpzaYsRrTV6 .error-icon{fill:#522}#mermaid-svg-huH0yDpzaYsRrTV6 .error-text{fill:#522;stroke:#522}#mermaid-svg-huH0yDpzaYsRrTV6 .edge-thickness-normal{stroke-width:2px}#mermaid-svg-huH0yDpzaYsRrTV6 .edge-thickness-thick{stroke-width:3.5px}#mermaid-svg-huH0yDpzaYsRrTV6 .edge-pattern-solid{stroke-dasharray:0}#mermaid-svg-huH0yDpzaYsRrTV6 .edge-pattern-dashed{stroke-dasharray:3}#mermaid-svg-huH0yDpzaYsRrTV6 .edge-pattern-dotted{stroke-dasharray:2}#mermaid-svg-huH0yDpzaYsRrTV6 .marker{fill:#333}#mermaid-svg-huH0yDpzaYsRrTV6 .marker.cross{stroke:#333}:root { --mermaid-font-family: "trebuchet ms", verdana, arial;} #mermaid-svg-huH0yDpzaYsRrTV6 {color: rgba(0, 0, 0, 0.75);font: ;}

明确目的
准备数据
数据解析
分析数据
获得结论
成果可视化

2.6:学习数据分析的目的

  • 岗位需求
  • 机器人学习的基础
  • 数据科学的基础

3:学习数据分析需要的工具

3.1:需要学习的软件

  • python
  • jupyter

3.2:jupyter介绍

  • Jupyter Notebooks 是一款开源的网络应用,我们可以将其用于创建和共享代码与文档。
  • 其提供了一个环境,你无需离开这个环境,就可以在其中编写你的代码、运行代码、查看输出、可视化数据并查看结果。
  • 因此,这是一款可执行端到端的数据科学工作流程的便捷工具,其中包括数据清理、统计建模、构建和训练机器学习模型、可视化数据等等。

3.3:jupyter notebook软件的特点

基于web的在线编辑器

  • 这样就可以使我们编写代码的时候不用在去下载专门的软件了,直接使用这个在线编辑器就可以编写代码了

可交互式

  • 这个特点就像是在Windows中的终端执行pyhon一样,是交互式的

.ipynb文件分享

  • 可以共享文件

支持markdown

  • 支持markdown语法,可以做到边编写代码,边记笔记

可以直接输出变量名

  • 在一个代码块中指向代码的时候,只要输入变量按一下shift + 回车键就会输出这个变量所代表的值了,不用在输入print()函数了,但是一个代码块只能输出一个变量,要想多个输出可以使用元组,或者使用print()函数

分块执行代码

  • 代码执行的时候,只看代码前面的数字,不看代码的先后顺序

产看函数的参数

  • 在一个函数的后面加一个?就可以知道这个函数的参数了

智能提示

  • 可以按tab键来获取智能提示的帮助,相当于pycharm中方法或函数的智能

3.4:jupyter notebook的安装

  • 需要咋Windows的中端中运行代码pip install jupyter就可以安装了
  • jupyter notebook的快捷键只要按H就可以知道了

数据分析介绍及环境介绍相关推荐

  1. linux交叉编译环境介绍,交叉编译环境介绍

    交叉编译环境介绍 交叉编译是嵌入式开发过程中的一项重要技术,它的主要特征是某机器中执行的程序代码不是在本机编译生成,而是由另一台机器编译生成,一般把前者称为目标机,后者称为主机.采用交叉编译的主要原因 ...

  2. 助力工业物联网,工业大数据项目介绍及环境构建【一、二】

    文章目录 工业大数据项目介绍及环境构建 01:专栏目标 02:项目背景 03:项目需求 04:业务流程 05:技术选型 06:Docker的介绍 07:Docker的网络 08:Docker的使用 0 ...

  3. 第一课.python入门与环境介绍

    目录 Python简介 解释器的分类 包与模块 环境介绍 Python简介 python是语法简洁的解释型,交互型语言,解释型指的是通过解释器执行,因此效率会比较低:交互型则代表可以用命令交互执行,可 ...

  4. Arduino可穿戴开发入门教程Arduino开发环境介绍

    Arduino可穿戴开发入门教程Arduino开发环境介绍 Arduino开发环境介绍 Arduino不像我们使用的PC端操作系统一样,可以直接在操作系统中安装软件为操作系统编程.Arduino的软件 ...

  5. oracle入门学习(3) 所用的学习环境介绍与设置

    oracle入门学习(3) 原文见我的QQ空间:http://user.qzone.qq.com/284648964?ptlang=2052 由于原文是写在我的QQ空间,文章转过来的过程中造图片丢失, ...

  6. 《Docker技术入门与实战》——2.3 本书环境介绍

    本节书摘来自华章计算机<Docker技术入门与实战>一书中的第2章,第2.3节,作者:杨保华,戴王剑,曹亚仑著, 更多章节内容可以访问云栖社区"华章计算机"公众号查看. ...

  7. 服务器状态监控之二软硬件环境介绍

    SCOM与SCVMM 第二章 软硬件环境介绍 要想实现SCOM的安装,以及实现SCOM与SCVMM(HyperV R2)相结合,需要较好的硬件支持,在此感谢DELL公司提供的DELL R710服务器. ...

  8. Dockerfile项目环境介绍

    项目环境介绍 1.项目部署架构图 项目目录结构说明 django-docker ## 项目根路径 │ .gitignore # git忽略不上传的文件 │ docker-compose.yml # d ...

  9. Grpc+Grpc Gateway实践一 介绍与环境安装

    介绍与环境安装 假定我们有一个项目需求,希望用Rpc作为内部API的通讯,同时也想对外提供Restful Api,写两套又太繁琐不符合 于是我们想到了Grpc以及Grpc Gateway,这就是我们所 ...

最新文章

  1. 现代操作系统-虚拟化和云
  2. 【Python】0/1背包、动态规划
  3. python电脑配置要求-Python--获取电脑配置信息--设计代码
  4. 如何设置VSCode以提高生产力
  5. 马氏距离详解(数学原理、适用场景、应用示例代码)
  6. python怎么创建类的例题_Python_面向对象练习题
  7. azure云数据库_如何使用Cloud Shell创建Azure SQL数据库
  8. 26. Magento 常用(1)
  9. 已知高维高斯联合概率分布求边缘概率分布以及条件概率分布
  10. STM32中AD采样的三种方法分析
  11. 信号ctft频谱matlab,信号、系统分析与控制(MATLAB版)第4章连续信号的频域分析.ppt...
  12. Java PdfBox 提取指定PDF页面图片
  13. Mysql 查询每个班级的成绩最好前三名(并列与不并列的情况)
  14. 计算机硕士论文难写吗,写不出论文该放弃吗_硕士研究生论文速成法_硕士研究生论文 计算机...
  15. 我的世界空岛生存服务器制作,我的世界Wishing服务器-RPG丨空岛丨生存丨[1.12.2-1.16.1]...
  16. 公司app上架正规要求需要办理icp许可证
  17. linux如何启动网络配置文件,linux系统的网络配置教程 Ubuntu系统网络设置方法网络配置linux及Ubuntu通过修改配置文件进行网络配置...
  18. 易基因|Science:单细胞甲基化测序鉴定哺乳动物的新神经元亚型和调节元件
  19. HA高可用性与负载均衡
  20. 00.奇特的一生--序言(笔记)

热门文章

  1. UDP协议格式及特点
  2. 小米pro电脑风扇卡顿问题解决方案
  3. Halcon学习--数组操作
  4. PostgreSQL数组操作符函数
  5. FormData使用方法详解
  6. 大数据分析案例:每日各时段的PV和UV分析。使用框架:hadoop,Hvie,Sqoop
  7. 流下了不学无术的泪水——今天你刷题了吗(三)
  8. netty--关于Boos(老板)和worker(员工)
  9. 1月4号在中关村太平洋电脑城攒机
  10. 10、CLASSIFIER-FREE DIFFUSION GUIDANCE