2 writes to Path
Microsoft.ML.TimeSeries (2)
RootCauseLocalizationType.cs (2)
144Path = new List<string>(); 150Path = path;
12 references to Path
Microsoft.ML.Samples (2)
Dynamic\Transforms\TimeSeries\LocalizeRootCause.cs (1)
31Console.WriteLine($"Score: {item.Score}, Path: {String.Join(" ", item.Path)}, Direction: {item.Direction}, Dimension:{String.Join(" ", item.Dimension)}");
Dynamic\Transforms\TimeSeries\LocalizeRootCauseMultidimension.cs (1)
34Console.WriteLine($"Score: {item.Score}, Path: {String.Join(" ", item.Path)}, Direction: {item.Direction}, Dimension:{String.Join(" ", item.Dimension)}");
Microsoft.ML.TimeSeries.Tests (10)
TimeSeriesDirectApi.cs (10)
967Assert.Equal(1, (int)rootCause.Items[0].Path.Count); 968Assert.Equal("DataCenter", rootCause.Items[0].Path[0]); 996Assert.Equal(1, (int)preparedCauses[0].Items[0].Path.Count); 997Assert.Equal("DataCenter", preparedCauses[0].Items[0].Path[0]); 1012Assert.Equal(1, (int)preparedCauses[1].Items[0].Path.Count); 1013Assert.Equal("DeviceType", preparedCauses[1].Items[0].Path[0]); 1044Assert.Single(rootCause.Items[0].Path); 1045Assert.Equal("DataCenter", rootCause.Items[0].Path[0]); 1194Assert.Single(rootCause.Items[0].Path); 1195Assert.Equal("DataCenter", rootCause.Items[0].Path[0]);