Python

Matplotlib

grace21110 2023. 11. 4. 09:17
반응형
  • What is Matplotlib? 

It is a low level graph plotting library in python that serves as a visualization utility. 

 

Let's get started with installation of Matplotlib. 

pip install matplotlib

 

  • Import Matplotlib 
import matplotlib

 

 

  • Check Matplotlib Version 
import matplotlib 
print (matplotlib.__version__)