Explorative Data Analysis
Explorative Data Analysis
Modules:
| Name | Description |
|---|---|
diagnosis |
Data Inspection Assistant and Visualizations for Polars Dataframe. |
plots |
|
diagnosis
Data Inspection Assistant and Visualizations for Polars Dataframe.
Currently, the plot backend is Altair but this is subject to change, and will be decided base on which plotting backend supports Polars more natively.
Classes:
| Name | Description |
|---|---|
DIA |
Data Inspection Assistant. Most plots are powered by Altair/great_tables. Altair may require |
DIA
Data Inspection Assistant. Most plots are powered by Altair/great_tables. Altair may require additional package downloads.
If you cannot import this module, please try: pip install "polars_ds[plot]"
Note: most plots are sampled by default because (1) typically plots don't look good when there are too many points, and (2) because of interactivity, if we don't sample, the plots will be too large and won't get rendered in a reasonable amount of time. If speed of rendering is crucial and you don't need interactivity, use matplotlib.
Methods:
| Name | Description |
|---|---|
col_validation |
Generates a validation report based on rules (pl.Expr) which evaluates to a single |
corr |
Returns a dataframe containing correlation information between the subset and all numeric columns. |
infer_binary |
Infers whether the column is binary. |
infer_const |
Infers whether the column is constant. |
infer_corr |
Trying to infer highly correlated columns by computing correlation between |
infer_dependency |
Infers (functional) dependency using the method of conditional entropy. This only evaluates |
infer_discrete |
Infers discrete columns based on unique percentage and max_val_count. |
infer_high_null |
Infers columns with more than threshold percentage nulls. |
infer_k_distinct |
Infers whether the column has k distinct values. |
infer_prob |
Infers columns that can potentially be probabilities. For f32/f64 columns, this checks if all values are |
meta |
Returns internal data in this class as a dictionary. |
null_corr |
Computes the correlation between A is null and B is null for all (A, B) combinations |
numeric_profile |
Creates a numerical profile with a histogram plot. Notice that the histograms may have |
plot_corr |
Plots the correlations using classic heat maps. |
plot_dependency |
Plot dependency using the result of self.infer_dependency and positively dtermines |
plot_feature_distr |
Plot distribution of the feature with a few statistical details. |
row_validation |
Generates a validation report based on rules (pl.Expr) which evaluates to booleans |
special_values_report |
Checks null, NaN, and non-finite values for float columns. Note that for integers, only null_count |
str_stats |
Returns basic statistics about the string columns. |
Source code in python/polars_ds/eda/diagnosis.py
39 40 41 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 129 130 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 170 171 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 203 204 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 272 273 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 309 310 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 337 338 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 382 383 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 422 423 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 469 470 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 512 513 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 551 552 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 600 601 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 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 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 690 691 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 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 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 | |
col_validation(*rules)
Generates a validation report based on rules (pl.Expr) which evaluates to a single boolean per column.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
rules
|
Tuple[Expr, str]
|
A tuple of (pl.Expr, str), where the pl.Expr should evaluate to a single boolean value. If the boolean is False, then the entire column is considered to be violiating the rule. |
()
|
Source code in python/polars_ds/eda/diagnosis.py
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 | |
corr(subset, method='pearson')
Returns a dataframe containing correlation information between the subset and all numeric columns. Only numerical columns will be checked.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
subset
|
IntoExpr | Iterable[IntoExpr]
|
Anything that can be put into a Polars .select statement. |
required |
method
|
CorrMethod
|
One of ["pearson", "spearman", "xi", "kendall", "bicor"] |
'pearson'
|
Source code in python/polars_ds/eda/diagnosis.py
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 | |
infer_binary(include_null=False)
cached
Infers whether the column is binary.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
include_null
|
bool
|
If true, a binary column with 2 non-null distinct values and null will also be included. |
False
|
Source code in python/polars_ds/eda/diagnosis.py
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 630 631 632 633 634 635 | |
infer_const(include_null=False)
cached
Infers whether the column is constant.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
include_null
|
bool
|
If true, a constant column with null values will also be included. |
False
|
Source code in python/polars_ds/eda/diagnosis.py
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 600 601 602 | |
infer_corr(method='pearson')
Trying to infer highly correlated columns by computing correlation between all numerical (including boolean) columns.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
method
|
CorrMethod
|
One of ["pearson", "spearman", "xi", "kendall"] |
'pearson'
|
Source code in python/polars_ds/eda/diagnosis.py
675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 | |
infer_dependency(subset=pl.all())
Infers (functional) dependency using the method of conditional entropy. This only evaluates potential qualifying columns. Potential qualifying columns are columns of type: int, str, categorical, or booleans.
If returned conditional entropy is very low, that means knowning the column in
by is enough to to infer the column in column, or the column in column can
be determined by the column in by.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
subset
|
IntoExpr | Iterable[IntoExpr]
|
A subset of columns to try running the dependency check. The subset input can be anything that can be turned into a Polars selector. The df or the column subset of the df may contain columns that cannot be used for dependency detection, e.g. column of list of values. Only valid columns will be checked. |
all()
|
Source code in python/polars_ds/eda/diagnosis.py
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 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 | |
infer_discrete(threshold=0.1, max_val_cnt=100)
cached
Infers discrete columns based on unique percentage and max_val_count.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
threshold
|
float
|
Columns with unique percentage lower than threshold will be considered discrete |
0.1
|
max_val_cnt
|
int
|
Max number of unique values the column can have in order for it to be considered discrete |
100
|
Source code in python/polars_ds/eda/diagnosis.py
541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 | |
infer_high_null(threshold=0.75)
cached
Infers columns with more than threshold percentage nulls.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
threshold
|
float
|
The threshold above which a column will be considered high null |
0.75
|
Source code in python/polars_ds/eda/diagnosis.py
520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 | |
infer_k_distinct(k, include_null=False)
cached
Infers whether the column has k distinct values.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
k
|
int
|
Any positive integer. |
required |
include_null
|
bool
|
If true, a binary column with k non-null distinct values and null will also be included. |
False
|
Source code in python/polars_ds/eda/diagnosis.py
637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 | |
infer_prob()
Infers columns that can potentially be probabilities. For f32/f64 columns, this checks if all values are between 0 and 1. For List[f32] or List[f64] columns, this checks whether the column can potentially be multi-class probabilities.
Source code in python/polars_ds/eda/diagnosis.py
492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 | |
meta()
Returns internal data in this class as a dictionary.
Source code in python/polars_ds/eda/diagnosis.py
400 401 402 403 404 405 406 | |
null_corr(subset=pl.all(), filter_by=None)
Computes the correlation between A is null and B is null for all (A, B) combinations in the given subset of columns.
If either A or B is all null or all non-null, the null correlation will not be computed, since the value is not going to be meaningful.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
subset
|
IntoExpr | Iterable[IntoExpr]
|
Anything that can be put into a Polars .select statement. Defaults to pl.all() |
all()
|
filter_by
|
Expr | None
|
A boolean expression |
None
|
Source code in python/polars_ds/eda/diagnosis.py
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 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 | |
numeric_profile(n_bins=20, iqr_multiplier=1.5, histogram=True, gt=True)
Creates a numerical profile with a histogram plot. Notice that the histograms may have completely different scales on the x-axis.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n_bins
|
int
|
Bins in the histogram |
20
|
iqr_multiplier
|
float
|
Inter Quartile Ranger multiplier. Inter quantile range is the range between Q1 and Q3, and this multiplier will enlarge the range by a certain amount and use this to count outliers. |
1.5
|
histogram
|
bool
|
Whether to show a histogram or not |
True
|
gt
|
bool
|
Whether to show the table as a formatted Great Table or not |
True
|
Source code in python/polars_ds/eda/diagnosis.py
122 123 124 125 126 127 128 129 130 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 170 171 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 203 204 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 | |
plot_corr(subset, method='pearson')
Plots the correlations using classic heat maps.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
subset
|
IntoExpr | Iterable[IntoExpr]
|
Anything that can be put into a Polars .select statement. |
required |
method
|
CorrMethod
|
One of ["pearson", "spearman", "xi", "kendall", "bicor"] |
'pearson'
|
Source code in python/polars_ds/eda/diagnosis.py
465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 | |
plot_dependency(threshold=0.01, subset=pl.all())
Plot dependency using the result of self.infer_dependency and positively dtermines dependency by the threshold.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
threshold
|
float
|
If conditional entropy is < threshold, we draw a line indicating dependency. |
0.01
|
subset
|
IntoExpr | Iterable[IntoExpr]
|
A subset of columns to try running the dependency check. The subset input can be anything that can be turned into a Polars selector |
all()
|
Source code in python/polars_ds/eda/diagnosis.py
773 774 775 776 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 | |
plot_feature_distr(feature, n_bins=None, density=False, show_bad_values=True, min_=None, max_=None, over=None, filter_by=None)
Plot distribution of the feature with a few statistical details.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
feature
|
str
|
A string representing a column name |
required |
n_bins
|
int | None
|
The number of bins used for histograms. Not used when the feature column is categorical. |
None
|
density
|
bool
|
Whether to plot a probability density or not |
False
|
show_bad_values
|
bool
|
Whether to show % of bad (null or non-finite) values |
True
|
min_
|
float | Expr | None
|
Whether to ignore values strictly lower than min_ |
None
|
max_
|
float | Expr | None
|
Whether to ignore values strictly higher than max_ |
None
|
over
|
str | None
|
Whether to look at the distribution over another categorical column |
None
|
filter_by
|
Expr | None
|
An extra condition you may want to impose on the underlying dataset |
None
|
Source code in python/polars_ds/eda/diagnosis.py
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 | |
row_validation(*rules, id_col=None, columns_to_keep=None, all_reasons=False)
Generates a validation report based on rules (pl.Expr) which evaluates to booleans per row.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
rules
|
Tuple[Expr, str]
|
A tuple of (pl.Expr, str), where the pl.Expr should evaluate to a boolean value per row. If the boolean is False, then the row is considered a violation. The string should be an explanation of the violation. |
()
|
id_col
|
str | None
|
If None, an "index" column will be generated which is the row number. |
None
|
columns_to_keep
|
List[str] | None
|
Other columns you wish to keep in the final report. |
None
|
all_reasons
|
bool
|
If true, all reasons for violations will be returned. If false, only 1 will be returned. |
False
|
Source code in python/polars_ds/eda/diagnosis.py
268 269 270 271 272 273 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 309 310 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 337 338 339 340 | |
special_values_report()
Checks null, NaN, and non-finite values for float columns. Note that for integers, only null_count can possibly be non-zero.
Source code in python/polars_ds/eda/diagnosis.py
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | |
str_stats()
Returns basic statistics about the string columns.
Source code in python/polars_ds/eda/diagnosis.py
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 | |
plots
Functions:
| Name | Description |
|---|---|
plot_feature_distr |
Plot distribution of the feature with a few statistical details. |
plot_lin_reg |
Plots the linear regression line between x and target. |
plot_pca |
Creates a scatter plot based on the reduced dimensions via PCA, and color it by |
plot_prob_calibration |
Plots probability calibration of score(s) with respect to the binary target. |
plot_roc_auc |
Parameters |
plot_feature_distr(*, feature, n_bins=10, density=False, show_bad_values=True, over=None, df=None)
Plot distribution of the feature with a few statistical details.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame | LazyFrame | None
|
Either an eager or lazy Polars Dataframe |
None
|
feature
|
str | Iterable[float]
|
A string representing a column name |
required |
n_bins
|
int
|
The max number of bins used for histograms. |
10
|
density
|
bool
|
Whether to plot a probability density or not |
False
|
show_bad_values
|
bool
|
Whether to show % of bad (null or non-finite) values |
True
|
over
|
str | None
|
Whether to look at the distribution over another categorical column |
None
|
Source code in python/polars_ds/eda/plots.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 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 129 130 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 170 171 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 | |
plot_lin_reg(df, x, target, add_bias=False, weights=None, max_points=20000, show_lin_reg_eq=True)
Plots the linear regression line between x and target.
Paramters
df Either an eager or lazy Polars Dataframe x The preditive variable target The target variable add_bias Whether to add bias in the linear regression weights Weights for the linear regression max_points The max number of points to be displayed. Notice that this only affects the number of points on the plot. The linear regression will still be fit on the entire dataset. show_lin_reg_eq Whether to show the linear regression equation at the bottom or not
Source code in python/polars_ds/eda/plots.py
199 200 201 202 203 204 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 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 | |
plot_pca(df, features, by, center=True, dim=2, filter_by=None, max_points=10000, **kwargs)
Creates a scatter plot based on the reduced dimensions via PCA, and color it by by.
Paramters
df Either an eager or lazy Polars Dataframe features List of feature names by Color the 2-D PCA plot by the values in the column center Whether to automatically center the features dim Only 2 principal components plot can be done at this moment. filter_by A boolean expression max_points The max number of points to be displayed. If data > this limit, the data will be sampled. kwargs Anything else that will be passed to Altair encode function
Source code in python/polars_ds/eda/plots.py
299 300 301 302 303 304 305 306 307 308 309 310 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 337 338 339 340 341 342 343 344 345 346 | |
plot_prob_calibration(*, target, score=None, name=None, scores=None, names=None, n_bins=10)
Plots probability calibration of score(s) with respect to the binary target.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
target
|
Iterable[int]
|
The target binary varialbe |
required |
score
|
Series | None
|
The probability score values |
None
|
name
|
str | None
|
The name of the probability score values |
None
|
scores
|
List[Series] | None
|
If score is None, and scores is a list of probability scores, this will generate a plot with all probability calibrations. |
None
|
names
|
List[str] | None
|
If scores is population, this must be a list of corresponding score names. |
None
|
n_bins
|
int
|
N quantile bins for the score(s). |
10
|
Source code in python/polars_ds/eda/plots.py
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 382 383 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 422 423 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 | |
plot_roc_auc(*, target, pred=None, name=None, preds=None, names=None, show_auc=True, estimator_name='', n_decimals=4, **kwargs)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
target
|
Iterable[int]
|
A column which has the actual binary target information |
required |
pred
|
Series | None
|
The prediction probability variable |
None
|
name
|
str | None
|
The name for the prediction |
None
|
preds
|
List[Series] | None
|
The prediction probability variables |
None
|
names
|
List[str] | None
|
The names for the predictions |
None
|
show_auc
|
bool
|
Whether to show the AUC value or not |
True
|
estimator_name
|
str
|
The name of the estimator to be shown in the plot |
''
|
n_decimals
|
int
|
Round to n-th decimal digit if show_auc is True |
4
|
kwargs
|
Other keyword arguments to Altair's mark_line |
{}
|
Source code in python/polars_ds/eda/plots.py
457 458 459 460 461 462 463 464 465 466 467 468 469 470 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 512 513 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 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 | |