@@ -214,7 +214,7 @@ def read_sql_table(table_name, con, schema=None, index_col=None,
214
214
index_col : string or list of strings, optional, default: None
215
215
Column(s) to set as index(MultiIndex)
216
216
coerce_float : boolean, default True
217
- Attempt to convert values to non-string, non-numeric objects (like
217
+ Attempt to convert values of non-string, non-numeric objects (like
218
218
decimal.Decimal) to floating point. Can result in loss of Precision.
219
219
parse_dates : list or dict, default: None
220
220
- List of column names to parse as dates
@@ -289,7 +289,7 @@ def read_sql_query(sql, con, index_col=None, coerce_float=True, params=None,
289
289
index_col : string or list of strings, optional, default: None
290
290
Column(s) to set as index(MultiIndex)
291
291
coerce_float : boolean, default True
292
- Attempt to convert values to non-string, non-numeric objects (like
292
+ Attempt to convert values of non-string, non-numeric objects (like
293
293
decimal.Decimal) to floating point, useful for SQL result sets
294
294
params : list, tuple or dict, optional, default: None
295
295
List of parameters to pass to execute method. The syntax used
@@ -348,7 +348,7 @@ def read_sql(sql, con, index_col=None, coerce_float=True, params=None,
348
348
index_col : string or list of strings, optional, default: None
349
349
Column(s) to set as index(MultiIndex)
350
350
coerce_float : boolean, default True
351
- Attempt to convert values to non-string, non-numeric objects (like
351
+ Attempt to convert values of non-string, non-numeric objects (like
352
352
decimal.Decimal) to floating point, useful for SQL result sets
353
353
params : list, tuple or dict, optional, default: None
354
354
List of parameters to pass to execute method. The syntax used
@@ -986,7 +986,7 @@ def read_table(self, table_name, index_col=None, coerce_float=True,
986
986
index_col : string, optional, default: None
987
987
Column to set as index
988
988
coerce_float : boolean, default True
989
- Attempt to convert values to non-string, non-numeric objects
989
+ Attempt to convert values of non-string, non-numeric objects
990
990
(like decimal.Decimal) to floating point. This can result in
991
991
loss of precision.
992
992
parse_dates : list or dict, default: None
@@ -1048,7 +1048,7 @@ def read_query(self, sql, index_col=None, coerce_float=True,
1048
1048
index_col : string, optional, default: None
1049
1049
Column name to use as index for the returned DataFrame object.
1050
1050
coerce_float : boolean, default True
1051
- Attempt to convert values to non-string, non-numeric objects (like
1051
+ Attempt to convert values of non-string, non-numeric objects (like
1052
1052
decimal.Decimal) to floating point, useful for SQL result sets
1053
1053
params : list, tuple or dict, optional, default: None
1054
1054
List of parameters to pass to execute method. The syntax used
0 commit comments