You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Microsoft.Data.Analysis/DataFrame.cs
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
// Licensed to the .NET Foundation under one or more agreements.
1
+
// Licensed to the .NET Foundation under one or more agreements.
2
2
// The .NET Foundation licenses this file to you under the MIT license.
3
3
// See the LICENSE file in the project root for more information.
4
4
@@ -504,7 +504,7 @@ public DataFrame Append(IEnumerable<DataFrameRow> rows, bool inPlace = false, Cu
504
504
/// <remarks>If <paramref name="row"/> is null, a null value is appended to each column</remarks>
505
505
/// <param name="row"></param>
506
506
/// <param name="inPlace">If set, appends a <paramref name="row"/> in place. Otherwise, a new DataFrame is returned with an appended <paramref name="row"/> </param>
507
-
/// <param name="cultureInfo">culture info for formatting values</param>
507
+
/// <param name="cultureInfo">Culture info for formatting values</param>
@@ -587,8 +587,14 @@ public DataFrame Append(IEnumerable<object> row = null, bool inPlace = false, Cu
587
587
/// <remarks>If a column's value doesn't match its column's data type, a conversion will be attempted</remarks>
588
588
/// <param name="row">An enumeration of column name and value to be appended</param>
589
589
/// <param name="inPlace">If set, appends <paramref name="row"/> in place. Otherwise, a new DataFrame is returned with an appended <paramref name="row"/> </param>
0 commit comments