第一回:Matplotlib初相識

Miniconda

wget -c <https://repo.anaconda.com/miniconda/Miniconda3-py39_4.10.3-Linux-x86_64.sh>
bash Miniconda3-py39_4.10.3-Linux-x86_64.sh

Jupyter

conda install jupyter

Matplotlib

conda install matplotlib

Server

jupyter notebook --generate-config

vi .jupyter/jupyter_notebook_config.py

c.NotebookApp.ip = '*'
c.NotebookApp.password = ''
c.NotebookApp.open_browser = False

jupyter notebook

Code

作業

你在工作或學習中通常何時會用到數據可視化,希望通過可視化達到什麼目的?

  • 工作中使用比較少,在學習機器學習算法的時候,會先通過 Matplotlib 查看數據的分佈。
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章