Example #1
0
 /// <summary>
 /// Returns the specified table as a <see cref="DataFrame"/>
 /// </summary>
 /// <param name="tableName"></param>
 /// <returns></returns>
 public DataFrame Table(string tableName)
 {
     return(new DataFrame(sparkSessionProxy.Table(tableName), SparkContext));
 }