Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python seaborn violin plot

import seaborn
    
    
seaborn.set(style = 'whitegrid')
fmri = seaborn.load_dataset("fmri")
    
seaborn.violinplot(x ="timepoint",
             y ="signal",
             data = fmri)
Source by www.geeksforgeeks.org #
 
PREVIOUS NEXT
Tagged: #python #seaborn #violin #plot
ADD COMMENT
Topic
Name
3+9 =