@@ -1278,7 +1278,6 @@ def upload(self, data, importoptions=None, casout=None, **kwargs):
1278
1278
'''
1279
1279
Upload data from a local file into a CAS table
1280
1280
1281
- This method is a thin wrapper around the `table.upload` CAS action.
1282
1281
The primary difference between this data loader and the other data
1283
1282
loaders on this class is that, in this case, the parsing of the data
1284
1283
is done on the server. This method simply uploads the file as
@@ -1308,11 +1307,11 @@ def upload(self, data, importoptions=None, casout=None, **kwargs):
1308
1307
or a URL. DataFrames will be converted to CSV before
1309
1308
uploading.
1310
1309
importoptions : dict, optional
1311
- Import options for the table.upload action.
1310
+ Import options for the `` table.loadtable`` action.
1312
1311
casout : dict, optional
1313
- Output table definition for the `table.upload ` action.
1312
+ Output table definition for the `` table.loadtable` ` action.
1314
1313
**kwargs : keyword arguments, optional
1315
- Additional parameters to the `table.upload ` action.
1314
+ Additional parameters to the `` table.loadtable` ` action.
1316
1315
1317
1316
Examples
1318
1317
--------
@@ -1375,7 +1374,7 @@ def upload(self, data, importoptions=None, casout=None, **kwargs):
1375
1374
filename = data
1376
1375
name = os .path .splitext (os .path .basename (filename ))[0 ]
1377
1376
1378
- # TODO: Populate docstring with table.upload action help
1377
+ # TODO: Populate docstring with table.loadtable action help
1379
1378
filetype = {
1380
1379
'sav' : 'spss' ,
1381
1380
'xlsx' : 'excel' ,
@@ -1436,11 +1435,11 @@ def upload_file(self, data, importoptions=None, casout=None, **kwargs):
1436
1435
or a URL. DataFrames will be converted to CSV before
1437
1436
uploading.
1438
1437
importoptions : dict, optional
1439
- Import options for the table.upload action.
1438
+ Import options for the `` table.loadtable`` action.
1440
1439
casout : dict, optional
1441
- Output table definition for the `table.upload ` action.
1440
+ Output table definition for the `` table.loadtable` ` action.
1442
1441
**kwargs : keyword arguments, optional
1443
- Additional parameters to the `table.upload ` action.
1442
+ Additional parameters to the `` table.loadtable` ` action.
1444
1443
1445
1444
Returns
1446
1445
-------
@@ -1472,11 +1471,11 @@ def upload_frame(self, data, importoptions=None, casout=None, **kwargs):
1472
1471
data : :class:`pandas.DataFrame`
1473
1472
DataFrames will be converted to CSV before uploading.
1474
1473
importoptions : dict, optional
1475
- Import options for the table.upload action.
1474
+ Import options for the `` table.loadtable`` action.
1476
1475
casout : dict, optional
1477
- Output table definition for the `table.upload ` action.
1476
+ Output table definition for the `` table.loadtable` ` action.
1478
1477
**kwargs : keyword arguments, optional
1479
- Additional parameters to the `table.upload ` action.
1478
+ Additional parameters to the `` table.loadtable` ` action.
1480
1479
1481
1480
Returns
1482
1481
-------
0 commit comments