Histogram example
()
| 865 | |
| 866 | @_print_source |
| 867 | def plot_histogram(): |
| 868 | """ |
| 869 | Histogram example |
| 870 | """ |
| 871 | import chartify |
| 872 | |
| 873 | # Generate example data |
| 874 | data = chartify.examples.example_data() |
| 875 | |
| 876 | print(data.head()) |
| 877 | """Print break""" |
| 878 | _histogram_example(data) |
| 879 | _histogram_example2(data) |
| 880 | |
| 881 | |
| 882 | @_print_source |
nothing calls this directly
no test coverage detected