Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasMeissnerDS committed Aug 17, 2024
1 parent babfa35 commit fe1ff60
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
Binary file modified dist/bluecast-1.6.0.tar.gz
Binary file not shown.
16 changes: 16 additions & 0 deletions docs/source/EDA.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,22 @@ correlation_to_target(train_data.loc[:, feat_type_detector.num_columns], "target
![Corr to target example](correlation_to_target.png)
## Correlation to target via scatterplots
For regression tasks we can also use scatterplots to investigate
the relationships of numerical columns to the target variable.
```sh
# show correlation to target
plot_against_target_for_regression(
train_data,
feat_type_detector.num_columns,
"target"
)
```
![Corr to target via scatterplots example](scatterplots_against_target.png)
## Correlation heatmap
The correlation heatmap however shows the linear relationships
Expand Down
Binary file added docs/source/scatterplots_against_target.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit fe1ff60

Please sign in to comment.