Skip to content

Commit 636d065

Browse files
committed
last rugplot comment and fix import error
1 parent c6e7ace commit 636d065

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

plotly/figure_factory/_violin.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
sortfrom __future__ import absolute_import
1+
from __future__ import absolute_import
22

33
from numbers import Number
44

@@ -570,7 +570,8 @@ def create_violin(data, data_header=None, group_header=None, colors=None,
570570
data = data[data_header].values.tolist()
571571

572572
# call the plotting functions
573-
plot_data, plot_xrange = violinplot(data, fillcolor=valid_colors[0])
573+
plot_data, plot_xrange = violinplot(data, fillcolor=valid_colors[0],
574+
rugplot=rugplot)
574575

575576
layout = graph_objs.Layout(
576577
title=title,

0 commit comments

Comments
 (0)