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)
1091df.Append(new List<object> { 5, true }, inPlace: true); 1096DataFrame ret = df.Append(new List<object> { 5, true }); 1101df.Append(new List<object> { 100 }, inPlace: true); 1106ret = df.Append(new List<object> { 100 }, inPlace: false); 1111df.Append(new List<object> { null, null }, inPlace: true); 1115ret = df.Append(new List<object> { null, null }, inPlace: false); 1157df.Append((IEnumerable<object>)null, inPlace: true); 1163ret = df.Append((IEnumerable<object>)null, inPlace: false); 1171Assert.Throws<FormatException>(() => df.Append(new List<object> { 5, "str" }, inPlace: true)); 1173Assert.Throws<ArgumentException>(() => df.Append(new List<object> { 5, true, true }, inPlace: true)); 1175df.Append(inPlace: true); 1182ret = df.Append(inPlace: false); 1199df.Append(new List<object> { "", true }, inPlace: true); 1207df.Append(new List<object> { 1, true, "" }, inPlace: true); 1213df.Append(new List<object> { 1, true, null }, inPlace: true);