pyspark.pandas.
read_table
Read a Spark table and return a DataFrame.
Table name in Spark.
Index column of table in Spark.
See also
DataFrame.to_table
read_delta
read_parquet
read_spark_io
Examples
>>> ps.range(1).to_table('%s.my_table' % db) >>> ps.read_table('%s.my_table' % db) id 0 0
>>> ps.range(1).to_table('%s.my_table' % db, index_col="index") >>> ps.read_table('%s.my_table' % db, index_col="index") id index 0 0