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 6d043fe commit a44980bCopy full SHA for a44980b
docs/machine-learning/how-to-guides/how-to-use-the-automl-api.md
@@ -720,6 +720,6 @@ To determine feature importance using AutoML:
720
721
```csharp
722
var featureImportance =
723
- pfi.Select(x => Tuple.Create(x.Key, x.Value.Regression.RSquared))
+ pfiResults.Select(x => Tuple.Create(x.Key, x.Value.Regression.RSquared))
724
.OrderByDescending(x => x.Item2);
725
```
0 commit comments