bs_altair module¶
Some Altair plots.
alt_lineplot
,alt_superposed_lineplot
,alt_superposed_faceted_lineplot
alt_plot_fun
: plots a functionalt_density
,alt_faceted_densities
: plots the density ofx
, or ofx
conditional on a categoryalt_superposed_faceted_densities
: plots the density ofx
superposed byf
and faceted byg
alt_scatterplot
,alt_scatterplot_with_histo
,alt-linked_scatterplots
: variants of scatter plotsalt_histogram_by
,alt_histogram_continuous
: histograms ofx
byy
, and of a continuousx
alt_stacked_area
,alt_stacked_area_facets
: stacked area plotsplot_parameterized_estimates
: plots densities of estimates of coefficients, with the true values, as a function of a parameterplot_true_sim_facets, plot_true_sim2_facets
: plot two simulated values and the true values of statistics as a function of a parameteralt_tick_plots
: vertically arranged tick plots of variablesalt_matrix_heatmap
: plots a heatmap of a matrix.
alt_boxes(df, continuous_var, discrete_var, group_var, max_cols=3, title=None, save=None)
¶
horizontal boxplots of df[continuous_var]
by df[discrete_var]
and df[group_var]
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df |
DataFrame
|
datframe with the three variables |
required |
continuous_var |
str
|
name of the continuous variable |
required |
discrete_var |
str
|
name of the discrete variable |
required |
group_var |
str
|
name of the grouping variable |
required |
max_cols |
int
|
maximum number of columns. Defaults to 3. |
3
|
title |
str | None
|
a plot title. Defaults to None. |
None
|
save |
str | None
|
the name of a file to save to (HTML extension will be added). Defaults to None. |
None
|
Returns:
Type | Description |
---|---|
Chart
|
the chart. |
Source code in bs_python_utils/bs_altair.py
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
|
alt_density(df, str_x, save=None)
¶
Plots the density of df[str_x]
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df |
DataFrame
|
the data with the |
required |
str_x |
str
|
the name of a continuous column |
required |
save |
str | None
|
the name of a file to save to (HTML extension will be added) |
None
|
Returns:
Type | Description |
---|---|
Chart
|
the |
Source code in bs_python_utils/bs_altair.py
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 |
|
alt_faceted_densities(df, str_x, str_f, legend_title=None, save=None, max_cols=4)
¶
Plots the density of df[str_x]
by df[str_f]
in column facets
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df |
DataFrame
|
the data with the |
required |
str_x |
str
|
the name of a continuous column |
required |
str_f |
str
|
the name of a categorical column |
required |
legend_title |
str | None
|
a title for the legend |
None
|
save |
str | None
|
the name of a file to save to (HTML extension will be added) |
None
|
max_cols |
int | None
|
we wrap after that number of columns |
4
|
Returns:
Type | Description |
---|---|
Chart
|
the |
Source code in bs_python_utils/bs_altair.py
471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 |
|
alt_histogram_by(df, str_x, str_y, str_agg='mean', save=None)
¶
Plots a histogram of a statistic of str_y
by str_x
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df |
DataFrame
|
a dataframe with columns |
required |
str_x |
str
|
a categorical variable |
required |
str_y |
str
|
a continuous variable |
required |
str_agg |
str | None
|
how we aggregate the values of |
'mean'
|
save |
str | None
|
the name of a file to save to (HTML extension will be added) |
None
|
Returns:
Type | Description |
---|---|
Chart
|
the Altair chart. |
Source code in bs_python_utils/bs_altair.py
602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 |
|
alt_histogram_continuous(df, str_x, save=None)
¶
Histogram of a continuous variable df[str_x]
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df |
DataFrame
|
the data with the |
required |
str_x |
str
|
the name of a continuous column |
required |
save |
str | None
|
the name of a file to save to (HTML extension will be added) |
None
|
Returns:
Type | Description |
---|---|
Chart
|
the |
Source code in bs_python_utils/bs_altair.py
632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 |
|
alt_lineplot(df, str_x, str_y, time_series=False, save=None, aggreg=None, **kwargs)
¶
Scatterplot of df[str_x]
vs df[str_y]
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df |
DataFrame
|
the data with columns |
required |
str_x |
str
|
the name of a continuous column |
required |
str_y |
str
|
the name of a continuous column |
required |
time_series |
bool
|
|
False
|
save |
str | None
|
the name of a file to save to (HTML extension will be added) |
None
|
aggreg |
str | None
|
the name of an aggregating function for |
None
|
Returns:
Type | Description |
---|---|
Chart
|
the |
Source code in bs_python_utils/bs_altair.py
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 |
|
alt_linked_scatterplots(df, str_x1, str_x2, str_y, str_f, save=None)
¶
Creates two scatterplots: of df[str_x1]
vs df[str_y]
and of df[str_x2]
vs df[str_y]
,
both with color as per df[str_f]
. Selecting an interval in one shows up in the other.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df |
DataFrame
|
|
required |
str_x1 |
str
|
the name of a continuous column |
required |
str_x2 |
str
|
the name of a continuous column |
required |
str_y |
str
|
the name of a continuous column |
required |
str_f |
str
|
the name of a categorical column |
required |
save |
str | None
|
the name of a file to save to (HTML extension will be added) |
None
|
Returns:
Type | Description |
---|---|
Chart
|
the |
Source code in bs_python_utils/bs_altair.py
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 |
|
alt_matrix_heatmap(mat, str_format, multiple=1.0, title=None, str_rows='Row', str_cols='Column', save=None)
¶
Plots a heatmap of a matrix
Parameters:
Name | Type | Description | Default |
---|---|---|---|
mat |
ndarray
|
the matrix to plot |
required |
str_format |
str
|
the string to format the values, e.g. "d" or ".3f" |
required |
multiple |
float
|
increases the size of the circles |
1.0
|
title |
str | None
|
a title, if any |
None
|
str_rows |
str | None
|
the name of the variable in the rows |
'Row'
|
str_cols |
str | None
|
the name of the variable in the columns |
'Column'
|
save |
str | None
|
the name of a file to save to (HTML extension will be added) |
None
|
Returns:
Type | Description |
---|---|
Chart
|
the heatmap |
Source code in bs_python_utils/bs_altair.py
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 |
|
alt_plot_fun(f, start, end, npoints=100, save=None)
¶
Plots the function f
from start
to end
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
f |
Callable
|
returns a Numpy array from a Numpy array |
required |
start |
float
|
first point on |
required |
end |
float
|
last point on |
required |
npoints |
int
|
number of points |
100
|
save |
str | None
|
the name of a file to save to (HTML extension will be added) |
None
|
Returns:
Type | Description |
---|---|
Chart
|
the |
Source code in bs_python_utils/bs_altair.py
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 |
|
alt_scatterplot(df, str_x, str_y, time_series=False, save=None, xlabel=None, ylabel=None, size=30, title=None, color=None, aggreg=None, selection=False)
¶
Scatterplot of df[str_x]
vs df[str_y]
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df |
DataFrame
|
the data with columns for x, y |
required |
str_x |
str
|
the name of a continuous x column |
required |
str_y |
str
|
the name of a continuous y column |
required |
time_series |
bool
|
|
False
|
xlabel |
str | None
|
label for the horizontal axis |
None
|
ylabel |
str | None
|
label for the vertical axis |
None
|
title |
str | None
|
title for the graph |
None
|
size |
int | None
|
radius of the circles |
30
|
color |
str | None
|
variable that determines the color of the circles |
None
|
selection |
bool
|
if |
False
|
save |
str | None
|
the name of a file to save to (HTML extension will be added) |
None
|
aggreg |
str | None
|
the name of an aggregating function for |
None
|
Returns:
Type | Description |
---|---|
Chart
|
the |
Source code in bs_python_utils/bs_altair.py
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
|
alt_scatterplot_with_histo(df, str_x, str_y, str_f, save=None)
¶
Scatterplot of df[str_x]
vs df[str_y]
with colors as per df[str_f]
allows to select an interval and histograns the counts of df[str_f]
in the interval.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df |
DataFrame
|
the data with the |
required |
str_x |
str
|
the name of a continuous column |
required |
str_y |
str
|
the name of a continuous column |
required |
str_f |
str
|
the name of a categorical column |
required |
save |
str | None
|
the name of a file to save to (HTML extension will be added) |
None
|
Returns:
Type | Description |
---|---|
Chart
|
the |
Source code in bs_python_utils/bs_altair.py
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 |
|
alt_stacked_area(df, str_x, str_y, str_f, time_series=False, title=None, save=None)
¶
Normalized stacked lineplots of df[str_x]
vs df[str_y]
by df[str_f]
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df |
DataFrame
|
the data with columns for |
required |
str_x |
str
|
the name of a continuous column |
required |
str_y |
str
|
the name of a continuous column |
required |
str_f |
str
|
the name of a categorical column |
required |
time_series |
bool
|
|
False
|
title |
str | None
|
a title for the plot |
None
|
save |
str | None
|
the name of a file to save to (HTML extension will be added) |
None
|
Returns:
Type | Description |
---|---|
Chart
|
the |
Source code in bs_python_utils/bs_altair.py
651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 |
|
alt_stacked_area_facets(df, str_x, str_y, str_f, str_g, time_series=False, max_cols=5, title=None, save=None)
¶
Normalized stacked lineplots of df[str_x]
vs df[str_y]
by df[str_f]
, faceted by df[str_g]
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df |
DataFrame
|
the data with columns for |
required |
str_x |
str
|
the name of a continuous column |
required |
str_y |
str
|
the name of a continuous column |
required |
str_f |
str
|
the name of a categorical column |
required |
str_g |
str
|
the name of a categorical column |
required |
time_series |
bool
|
|
False
|
title |
str | None
|
a title for the plot |
None
|
save |
str | None
|
the name of a file to save to (HTML extension will be added) |
None
|
Returns:
Type | Description |
---|---|
Chart
|
the |
Source code in bs_python_utils/bs_altair.py
692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 |
|
alt_superposed_faceted_densities(df, str_x, str_f, str_g, max_cols=4, save=None)
¶
Creates density plots of df[str_x]
by df[str_f]
and df[str_g]
with color as per df[str_f]
and faceted by df[str_g]
.
that is: facets by str_g
, with densities conditional on str_f
superposed.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df |
DataFrame
|
a Pandas dataframe wity columns |
required |
str_x |
str
|
the name of a continuous column |
required |
str_f |
str
|
the name of a categorical column |
required |
str_g |
str
|
the name of a categorical column |
required |
max_cols |
int | None
|
the number of columns after whcih we wrap |
4
|
save |
str | None
|
the name of a file to save to (HTML extension will be added) |
None
|
Returns:
Type | Description |
---|---|
Chart
|
the |
Source code in bs_python_utils/bs_altair.py
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 |
|
alt_superposed_faceted_lineplot(df, str_x, str_y, str_f, str_g, time_series=False, legend_title=None, max_cols=5, save=None)
¶
Plots df[str_x]
vs df[str_y]
superposed by df[str_f]
and faceted by df[str_g]
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df |
DataFrame
|
the data with the |
required |
str_x |
str
|
the name of a continuous column |
required |
str_y |
str
|
the name of a continuous column |
required |
str_f |
str
|
the name of a categorical column |
required |
str_g |
str
|
the name of a categorical column |
required |
time_series |
bool
|
|
False
|
legend_title |
str | None
|
a title for the legend |
None
|
save |
str | None
|
the name of a file to save to (HTML extension will be added) |
None
|
max_cols |
int | None
|
we wrap after that number of columns |
5
|
Returns:
Type | Description |
---|---|
Chart
|
the |
Source code in bs_python_utils/bs_altair.py
553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 |
|
alt_superposed_lineplot(df, str_x, str_y, str_f, time_series=False, legend_title=None, save=None)
¶
Plots df[str_x]
vs df[str_y]
by df[str_f]
on one plot
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df |
DataFrame
|
the data with the |
required |
str_x |
str
|
the name of a continuous |
required |
str_y |
str
|
the name of a continuous |
required |
str_f |
str
|
the name of a categorical |
required |
time_series |
bool
|
|
False
|
legend_title |
str | None
|
a title for the legend |
None
|
save |
str | None
|
the name of a file to save to (HTML extension will be added) |
None
|
Returns:
Type | Description |
---|---|
Chart
|
the |
Source code in bs_python_utils/bs_altair.py
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 |
|
alt_tick_plots(df, list_vars, save=None)
¶
Creates a tick plot of the variables in list_vars
ofdf
, arranged vertically.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df |
DataFrame
|
a dataframe with the variables in |
required |
list_vars |
str | list[str]
|
the name of a column of |
required |
save |
str | None
|
the name of a file to save to (HTML extension will be added) |
None
|
Returns:
Type | Description |
---|---|
Chart
|
the |
Source code in bs_python_utils/bs_altair.py
1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 |
|
plot_parameterized_estimates(parameter_name, parameter_values, coeff_names, true_values, estimate_names, estimates, colors, save=None)
¶
Plots estimates of coefficients, with the true values, as a function of a parameter; one facet per coefficient
Parameters:
Name | Type | Description | Default |
---|---|---|---|
parameter_name |
str
|
the name of the parameter |
required |
parameter_values |
ndarray
|
a vector of |
required |
coeff_names |
str | list[str]
|
the names of the |
required |
true_values |
ndarray
|
their true values, depending on the parameter or not |
required |
estimate_names |
str | list[str]
|
names of the estimates |
required |
estimates |
ndarray
|
their values |
required |
colors |
list[str]
|
colors for the various estimates |
required |
save |
str | None
|
the name of a file to save to (HTML extension will be added) |
None
|
Returns:
Type | Description |
---|---|
Chart
|
the |
Source code in bs_python_utils/bs_altair.py
777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 |
|
plot_true_sim2_facets(parameter_name, parameter_values, stat_names, stat_true, stat_sim1, stat_sim2, colors, stat_title='Statistic', subtitle='True vs estimated', ncols=3, save=None)
¶
Plots simulated values for two methods and true values of statistics as a function of a parameter; one facet per coefficient
Parameters:
Name | Type | Description | Default |
---|---|---|---|
parameter_name |
str
|
the name of the parameter |
required |
parameter_values |
ndarray
|
a vector of |
required |
stat_names |
list[str]
|
the names of the |
required |
stat_true |
ndarray
|
their true values, |
required |
stat_sim1 |
ndarray
|
their simulated values, method 1 |
required |
stat_sim2 |
ndarray
|
their simulated values, method 2 |
required |
colors |
list[str]
|
colors for the various estimates |
required |
stat_title |
str | None
|
main title |
'Statistic'
|
subtitle |
str | None
|
subtitle |
'True vs estimated'
|
ncols |
int | None
|
wrap after |
3
|
save |
str | None
|
the name of a file to save to (HTML extension will be added) |
None
|
Returns:
Type | Description |
---|---|
Chart
|
the |
Source code in bs_python_utils/bs_altair.py
979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 |
|
plot_true_sim_facets(parameter_name, parameter_values, stat_names, stat_true, stat_sim, colors, stat_title='Statistic', subtitle='True vs estimated', ncols=3, save=None)
¶
Plots simulated and true values of statistics as a function of a parameter; one facet per coefficient
Parameters:
Name | Type | Description | Default |
---|---|---|---|
parameter_name |
str
|
the name of the parameter |
required |
parameter_values |
ndarray
|
a vector of |
required |
stat_names |
list[str]
|
the names of the |
required |
stat_true |
ndarray
|
their true values, |
required |
stat_sim |
ndarray
|
their simulated values |
required |
colors |
list[str]
|
colors for the various estimates |
required |
stat_title |
str | None
|
main title |
'Statistic'
|
subtitle |
str | None
|
subtitle |
'True vs estimated'
|
ncols |
int | None
|
wrap after |
3
|
save |
str | None
|
the name of a file to save to (HTML extension will be added) |
None
|
Returns:
Type | Description |
---|---|
Chart
|
the |
Source code in bs_python_utils/bs_altair.py
879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 |
|