# Parallel with datetime x axis
(data)
| 921 | |
| 922 | @_print_source |
| 923 | def _kde_example(data): |
| 924 | """# Parallel with datetime x axis""" |
| 925 | # Plot the data |
| 926 | ch = chartify.Chart(blank_labels=True, y_axis_type="density") |
| 927 | ch.set_title("KDE plot") |
| 928 | ch.plot.kde(data_frame=data, values_column="unit_price", color_column="fruit") |
| 929 | ch.show(_OUTPUT_FORMAT) |
| 930 | |
| 931 | |
| 932 | @_print_source |