'Plot timeseries whit seaborn

I want to plot these 4 time series through the seaborn Library in Python: Thank you for your help

totalcc=[cluster_center_1 
     ,cluster_center_2 
     ,cluster_center_3
     ,cluster_center_4
]
for i in totalcc:
print(i) 
print()

output:

[ 6.71996064 -0.33355147  4.29720582  2.75004947  5.72351802  1.19765437
-4.25608095 -1.14973082 -3.18970959  1.4492419  -5.60072785 -2.10074364]

[ 6.71740205 -0.33468536  4.29265965  2.75525085  5.73003864  1.20274363
-4.25253319 -1.14706609 -3.17879088  1.45480955 -5.59580315 -2.10128829]

[ 6.71858609 -0.33415546  4.2947705   2.75284223  5.72701557  1.20038575
-4.25417483 -1.14830255 -3.18385616  1.45222176 -5.59808851 -2.10103843]`

[ 6.71791463 -0.33445486  4.29357495  2.7542078   5.72872875  1.20172231
-4.25324384 -1.14760206 -3.18098633  1.45368688 -5.59679386 -2.10118059]


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source