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
/// <remarks>If an input column's value doesn't match a DataFrameColumn's data type, a conversion will be attempted</remarks>
485
485
/// <remarks>If a <seealso cref="DataFrameRow"/> in <paramref name="rows"/> is null, a null value is appended to each column</remarks>
486
+
/// <remarks> Values are appended based on the column names</remarks>
486
487
/// <param name="rows">The rows to be appended to this DataFrame </param>
487
488
/// <param name="inPlace">If set, appends <paramref name="rows"/> in place. Otherwise, a new DataFrame is returned with the <paramref name="rows"/> appended</param>
488
489
/// <param name="cultureInfo">culture info for formatting values</param>
@@ -491,7 +492,7 @@ public DataFrame Append(IEnumerable<DataFrameRow> rows, bool inPlace = false, Cu
@@ -503,7 +504,7 @@ public DataFrame Append(IEnumerable<DataFrameRow> rows, bool inPlace = false, Cu
503
504
/// <remarks>If <paramref name="row"/> is null, a null value is appended to each column</remarks>
504
505
/// <param name="row"></param>
505
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>
506
-
/// <param name="cultureInfo">culture info for formatting values</param>
507
+
/// <param name="cultureInfo">Culture info for formatting values</param>
@@ -586,8 +587,14 @@ public DataFrame Append(IEnumerable<object> row = null, bool inPlace = false, Cu
586
587
/// <remarks>If a column's value doesn't match its column's data type, a conversion will be attempted</remarks>
587
588
/// <param name="row">An enumeration of column name and value to be appended</param>
588
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