KDE example
()
| 905 | |
| 906 | @_print_source |
| 907 | def plot_kde(): |
| 908 | """ |
| 909 | KDE example |
| 910 | """ |
| 911 | import chartify |
| 912 | |
| 913 | # Generate example data |
| 914 | data = chartify.examples.example_data() |
| 915 | |
| 916 | print(data.head()) |
| 917 | """Print break""" |
| 918 | _kde_example(data) |
| 919 | _kde_example2(data) |
| 920 | |
| 921 | |
| 922 | @_print_source |
nothing calls this directly
no test coverage detected