diff --git a/README.md b/README.md index 1019b9a..9a157bf 100644 --- a/README.md +++ b/README.md @@ -3352,16 +3352,16 @@ c 6 7 ### File Formats ```python - = pd.read_json/pickle() # Also accepts io.StringIO/BytesIO(). + = pd.read_json/pickle() # Also io.StringIO(), io.BytesIO(). = pd.read_csv/excel() # Also `header/index_col/dtype/usecols/…=`. = pd.read_html() # Raises ImportError if webpage has zero tables. - = pd.read_parquet/feather/hdf() # Read_hdf() accepts `key=''` argument. + = pd.read_parquet/feather/hdf() # Read_hdf() accepts `key=` argument. = pd.read_sql('', ) # Pass SQLite3/Alchemy connection (see #SQLite). ``` ```python .to_json/csv/html/parquet/latex() # Returns a string/bytes if path is omitted. -.to_pickle/excel/feather/hdf() # To_hdf() requires `key=''` argument. +.to_pickle/excel/feather/hdf() # To_hdf() requires `key=` argument. .to_sql('', ) # Also `if_exists='fail/replace/append'`. ``` * **`'$ pip3 install "pandas[excel]" odfpy lxml pyarrow'` installs dependencies.** diff --git a/index.html b/index.html index b36a787..160edeb 100644 --- a/index.html +++ b/index.html @@ -55,7 +55,7 @@
- +
@@ -2729,15 +2729,15 @@ c 6 7 <S> = <DF>.stack/unstack(level=-1) # Combines col keys with row keys or vice versa. -

File Formats

<S/DF> = pd.read_json/pickle(<path/url/file>)  # Also accepts io.StringIO/BytesIO(<str/bytes>).
+

File Formats

<S/DF> = pd.read_json/pickle(<path/url/file>)  # Also io.StringIO(<str>), io.BytesIO(<bytes>).
 <DF>   = pd.read_csv/excel(<path/url/file>)    # Also `header/index_col/dtype/usecols/…=<obj>`.
 <list> = pd.read_html(<path/url/file>)         # Raises ImportError if webpage has zero tables.
-<S/DF> = pd.read_parquet/feather/hdf(<path…>)  # Read_hdf() accepts `key='<df_name>'` argument.
+<S/DF> = pd.read_parquet/feather/hdf(<path…>)  # Read_hdf() accepts `key=<s/df_name>` argument.
 <DF>   = pd.read_sql('<table/query>', <conn>)  # Pass SQLite3/Alchemy connection (see #SQLite).
 
<DF>.to_json/csv/html/parquet/latex(<path>)    # Returns a string/bytes if path is omitted.
-<DF>.to_pickle/excel/feather/hdf(<path>)       # To_hdf() requires `key='<df_name>'` argument.
+<DF>.to_pickle/excel/feather/hdf(<path>)       # To_hdf() requires `key=<s/df_name>` argument.
 <DF>.to_sql('<table_name>', <connection>)      # Also `if_exists='fail/replace/append'`.
 
    @@ -2931,7 +2931,7 @@ $ deactivate # Deactivates the active
    - +