We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f70a5e commit 0dbc603Copy full SHA for 0dbc603
source/classification2.md
@@ -1381,17 +1381,17 @@ cancer_plot = (
1381
"Smoothness",
1382
scale=alt.Scale(
1383
domain=(
1384
- cancer_train["Smoothness"].min(),
1385
- cancer_train["Smoothness"].max(),
+ cancer_train["Smoothness"].min() * 0.95,
+ cancer_train["Smoothness"].max() * 1.05,
1386
)
1387
),
1388
1389
y=alt.Y(
1390
"Concavity",
1391
1392
1393
- cancer_train["Concavity"].min(),
1394
- cancer_train["Concavity"].max(),
+ cancer_train["Concavity"].min() -0.025,
+ cancer_train["Concavity"].max() * 1.05,
1395
1396
1397
0 commit comments