Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

box plot seaborn python

import seaborn
 
 
seaborn.set(style='whitegrid')
tip = seaborn.load_dataset('tips')
 
seaborn.boxplot(x='day', y='tip', data=tip)
Source by www.geeksforgeeks.org #
 
PREVIOUS NEXT
Tagged: #box #plot #seaborn #python
ADD COMMENT
Topic
Name
3+3 =