9 references to Append
Microsoft.Data.Analysis (1)
DataFrame.cs (1)
515ret.Append(row.GetValues(), inPlace: true, cultureInfo: cultureInfo);
Microsoft.Data.Analysis.Tests (7)
DataFrameTests.cs (7)
1118df.Append(new Dictionary<string, object> { { "Column1", (object)5 }, { "Column2", false } }, inPlace: true); 1122ret = df.Append(new Dictionary<string, object> { { "Column1", (object)5 }, { "Column2", false } }, inPlace: false); 1127df.Append(new Dictionary<string, object> { { "Column1", 5 } }, inPlace: true); 1134ret = df.Append(new Dictionary<string, object> { { "Column1", 5 } }, inPlace: false); 1142df.Append(new Dictionary<string, object> { { "Column2", false } }, inPlace: true); 1148ret = df.Append(new Dictionary<string, object> { { "Column2", false } }, inPlace: false); 1170Assert.Throws<FormatException>(() => df.Append(new Dictionary<string, object> { { "Column2", "str" } }, inPlace: true));
Microsoft.ML.AutoML.Interactive (1)
NotebookMonitor.cs (1)
49TrialData.Append(new List<KeyValuePair<string, object>>()