24 references to StringDataFrameColumn
Microsoft.Data.Analysis (1)
Microsoft.Data.Analysis.Interactive (1)
Microsoft.Data.Analysis.Tests (20)
DataFrameTests.cs (7)
182StringDataFrameColumn city = new StringDataFrameColumn("City", new string[] { "London", "Berlin" });
201StringDataFrameColumn city = new StringDataFrameColumn("City", new string[] { "London", "Berlin" });
1062new StringDataFrameColumn("ColumnA", new string[] { "a", "b", "c" }),
1068new StringDataFrameColumn("ColumnA", new string[] { "d", "e", "f" }),
1204StringDataFrameColumn column = new StringDataFrameColumn("Strings", Enumerable.Range(0, 11).Select(x => x.ToString()));
1365var col = new StringDataFrameColumn("col", new[] { "One", null, "Two", "Three" });
1382var col = new StringDataFrameColumn("col", new[] { "One", null, "Three", "Four", null }); ;
DataFrameTests.Merge.cs (6)
22DataFrameColumn leftStringColumn = new StringDataFrameColumn("String", Enumerable.Range(0, leftCount).Select(x => "Left"));
26DataFrameColumn rightStringColumn = new StringDataFrameColumn("String", Enumerable.Range(0, rightCount).Select(x => "Right"));
600left.Columns.Add(new StringDataFrameColumn("G3", new[] { "A", "B", "C" }));
606right.Columns.Add(new StringDataFrameColumn("G3", new[] { "Z", "Y", "B" }));
656left.Columns.Add(new StringDataFrameColumn("G3", new[] { "A", "B", "C" }));
662right.Columns.Add(new StringDataFrameColumn("G3", new[] { "Z", "Y", "B" }));
Microsoft.ML.Fairlearn.Tests (2)