2-Seaborn-1

Sat 17 May 2025
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]'

!pip show seaborn | grep "Version:"
Version: 0.13.2
import seaborn as sns
import pandas as pd

data = pd.DataFrame({'x': [1, 2, 3, 4], 'y': [10, 20, 25, 30]})
sns.lineplot(data=data, x='x', y='y')
<Axes: xlabel='x', ylabel='y'>

png



Score: 5

Category: plot-compare