1-Matplotlib-1
import pyutil as pyu
pyu.get_local_pyinfo()
'conda env: ml312-2024; pyv: 3.12.7 | packaged by Anaconda, Inc. | (main, Oct 4 2024, 13:27:36) [GCC 11.2.0]'
'conda env: ml312-2024; pyv: 3.12.7 | packaged by Anaconda, Inc. | (main, Oct 4 2024, 13:27:36) [GCC 11.2.0]'
!pip show matplotlib | grep "Version:"
import matplotlib.pyplot as plt
x = [1, 2, 3, 4]
y = [10, 20, 25, 30]
plt.plot(x, y, label='Line 1')
plt.title("Simple Plot")
plt.legend()
plt.show()

Score: 5
10-Vaex-1
'conda env: ml312-2024; pyv: 3.12.7 | packaged by Anaconda, Inc. | (main, Oct 4 2024, 13:27:36) [GCC 11.2.0]'
# vaex is not supported in 3.12
!pip show vaex | grep "Version:"
[33mWARNING: Package(s) not found: vaex …
Read More
11-Datashader-1
'conda env: ml312-2024; pyv: 3.12.7 | packaged by Anaconda, Inc. | (main, Oct 4 2024, 13:27:36) [GCC 11.2.0]'
# !pip install datashader
!pip show datashader | grep "Version:"
import datashader as ds
import pandas as pd
df …
Read More
3-Plotly
'conda env: ml312-2024; pyv: 3.12.7 | packaged by Anaconda, Inc. | (main, Oct 4 2024, 13:27:36) [GCC 11.2.0]'
!pip show plotly | grep "Version:"
import plotly.express as px
fig = px.scatter(x=[1, 2, 3 …
Read More
4-Bokeh-1
'conda env: ml312-2024; pyv: 3.12.7 | packaged by Anaconda, Inc. | (main, Oct 4 2024, 13:27:36) [GCC 11.2.0]'
!pip show bokeh | grep "Version:"
from bokeh.io import output_notebook
# Set Bokeh output to notebook
output_notebook()
Read More
7-Dash-1
'conda env: ml312-2024; pyv: 3.12.7 | packaged by Anaconda, Inc. | (main, Oct 4 2024, 13:27:36) [GCC 11.2.0]'
!pip show dash | grep "Version:"
from dash import Dash, dcc, html
import plotly.express as px
app …
Read More