예제 #1
0
 /// <summary>
 /// Displays rows of the DataFrame in tabular form
 /// </summary>
 /// <param name="numberOfRows">Number of rows to display - default 20</param>
 /// <param name="truncate">Indicates if strings more than 20 characters long will be truncated</param>
 public void Show(int numberOfRows = 20, bool truncate = true)
 {
     Console.WriteLine(dataFrameProxy.GetShowString(numberOfRows, truncate));
 }