Makes the y-axis for a violin plot.
(yaxis_title)
| 138 | |
| 139 | |
| 140 | def make_YAxis(yaxis_title): |
| 141 | """ |
| 142 | Makes the y-axis for a violin plot. |
| 143 | """ |
| 144 | yaxis = graph_objs.layout.YAxis( |
| 145 | title=yaxis_title, |
| 146 | showticklabels=True, |
| 147 | autorange=True, |
| 148 | ticklen=4, |
| 149 | showline=True, |
| 150 | zeroline=False, |
| 151 | showgrid=False, |
| 152 | mirror=False, |
| 153 | ) |
| 154 | return yaxis |
| 155 | |
| 156 | |
| 157 | def violinplot(vals, fillcolor="#1f77b4", rugplot=True): |
no outgoing calls
no test coverage detected