Skip to content

Commit a44980b

Browse files
authored
Corrected variable name (#36666)
Variable created in the earlier step `pfiResults` does not match the one being used `pfi`
1 parent 6d043fe commit a44980b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/machine-learning/how-to-guides/how-to-use-the-automl-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,6 +720,6 @@ To determine feature importance using AutoML:
720720

721721
```csharp
722722
var featureImportance =
723-
pfi.Select(x => Tuple.Create(x.Key, x.Value.Regression.RSquared))
723+
pfiResults.Select(x => Tuple.Create(x.Key, x.Value.Regression.RSquared))
724724
.OrderByDescending(x => x.Item2);
725725
```

0 commit comments

Comments
 (0)