()
| 625 | |
| 626 | |
| 627 | def test_histogram_auto_orient(): |
| 628 | numerical = [1, 2, 3, 4] |
| 629 | assert px.histogram(x=numerical, nbins=5).data[0].nbinsx == 5 |
| 630 | assert px.histogram(y=numerical, nbins=5).data[0].nbinsy == 5 |
| 631 | assert px.histogram(x=numerical, y=numerical, nbins=5).data[0].nbinsx == 5 |
| 632 | |
| 633 | |
| 634 | def test_auto_histfunc(): |