18 references to Append
Microsoft.Data.Analysis (3)
DataFrame.IO.cs (3)
136res.Append(items, inPlace: true); 213res.Append(items, inPlace: true); 467ret.Append(fields, inPlace: true, cultureInfo: cultureInfo);
Microsoft.Data.Analysis.Tests (15)
DataFrameTests.cs (15)
1089df.Append(new List<object> { 5, true }, inPlace: true); 1094DataFrame ret = df.Append(new List<object> { 5, true }); 1099df.Append(new List<object> { 100 }, inPlace: true); 1104ret = df.Append(new List<object> { 100 }, inPlace: false); 1109df.Append(new List<object> { null, null }, inPlace: true); 1113ret = df.Append(new List<object> { null, null }, inPlace: false); 1155df.Append((IEnumerable<object>)null, inPlace: true); 1161ret = df.Append((IEnumerable<object>)null, inPlace: false); 1169Assert.Throws<FormatException>(() => df.Append(new List<object> { 5, "str" }, inPlace: true)); 1171Assert.Throws<ArgumentException>(() => df.Append(new List<object> { 5, true, true }, inPlace: true)); 1173df.Append(inPlace: true); 1180ret = df.Append(inPlace: false); 1197df.Append(new List<object> { "", true }, inPlace: true); 1205df.Append(new List<object> { 1, true, "" }, inPlace: true); 1211df.Append(new List<object> { 1, true, null }, inPlace: true);