File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 427
427
See Also
428
428
--------
429
429
DataFrame.to_csv : Write DataFrame to a comma-separated values (csv) file.
430
- read_csv : Read a comma-separated values (csv) file into DataFrame.
430
+ {see_also_func_name} : {see_also_func_summary}
431
431
read_fwf : Read a table of fixed-width formatted lines into DataFrame.
432
432
433
433
Examples
@@ -839,6 +839,8 @@ def read_csv(
839
839
_doc_read_csv_and_table .format (
840
840
func_name = "read_csv" ,
841
841
summary = "Read a comma-separated values (csv) file into DataFrame." ,
842
+ see_also_func_name = "read_table" ,
843
+ see_also_func_summary = "Read general delimited file into DataFrame." ,
842
844
_default_sep = "','" ,
843
845
storage_options = _shared_docs ["storage_options" ],
844
846
decompression_options = _shared_docs ["decompression_options" ]
@@ -1168,6 +1170,10 @@ def read_table(
1168
1170
_doc_read_csv_and_table .format (
1169
1171
func_name = "read_table" ,
1170
1172
summary = "Read general delimited file into DataFrame." ,
1173
+ see_also_func_name = "read_csv" ,
1174
+ see_also_func_summary = (
1175
+ "Read a comma-separated values (csv) file into DataFrame."
1176
+ ),
1171
1177
_default_sep = r"'\\t' (tab-stop)" ,
1172
1178
storage_options = _shared_docs ["storage_options" ],
1173
1179
decompression_options = _shared_docs ["decompression_options" ]
You can’t perform that action at this time.
0 commit comments