Skip to content

Latest commit

 

History

History
55 lines (35 loc) · 1.91 KB

File metadata and controls

55 lines (35 loc) · 1.91 KB
cover https://images.squarespace-cdn.com/content/v1/5daddb33ee92bf44231c2fef/1593634997762-75P05A5AKO859N5G9OMU/medical-algorithms.gif
coverY 0

📚 Python Library Reference

Pandas

Pandas是一个强大的分析结构化数据的工具集;它的使用基础是Numpy(提供高性能的矩阵运算);用于数据挖掘和数据分析,同时也提供数据清洗功能。

{% embed url="https://pandas.pydata.org/docs/index.html" %} Click to view pandas offcial documentation {% endembed %}

Pd数据结构 - DataFrame

DataFrame 是一个表格型的数据结构,它含有一组有序的列,每列可以是不同的值类型(数值、字符串、布尔型值)。DataFrame 既有行索引也有列索引,它可以被看做由 Series 组成的字典

pandas merge&join

Matplotlib

Matplotlib 是 Python 的绘图库,它能让使用者很轻松地将数据图形化,并且提供多样化的输出格式。

Matplotlib 可以用来绘制各种静态,动态,交互式的图表,我们可以使用该工具将很多数据通过图表的形式更直观的呈现出来。

Matplotlib 可以绘制线图、散点图、等高线图、条形图、柱状图、3D 图形、甚至是图形动画等等。

{% embed url="https://matplotlib.org/stable/index.html" %} click to view matplotlib offcical documentation {% endembed %}

{% embed url="https://www.python-graph-gallery.com" %} A useful website that teach u how to graph in python :) {% endembed %}

Seaborn

{% embed url="https://seaborn.pydata.org/index.html#" %} click to view seaborn offcical documentation {% endembed %}

Scikit-Learn

{% embed url="https://scikit-learn.org/stable/index.html" %} click to view scikit-learn offcical documentation {% endembed %}