pyspark.pandas.read_table¶
-
pyspark.pandas。
read_table
( 的名字:str,index_col:聯盟(str,列表(str),沒有一個)=沒有一個 )→pyspark.pandas.frame.DataFrame¶ -
讀表並返回一個DataFrame火花。
- 參數
-
- 的名字 字符串
-
表名的火花。
- index_col str和str列表,可選的,默認值:沒有
-
表的索引列火花。
- 返回
-
- DataFrame
例子
> > >ps。範圍(1)。to_table(”% s.my_table”%db)> > >ps。read_table(”% s.my_table”%db)id0 0
> > >ps。範圍(1)。to_table(”% s.my_table”%db,index_col=“指數”)> > >ps。read_table(”% s.my_table”%db,index_col=“指數”)id指數0 0