Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Atoti Python SDK
>>> from datetime import date >>> dataframe = pd.DataFrame( ... { ... "Id": [1, 2, 3], ... "Name": ["Phone", "Watch", "Laptop"], ... "Price": [849.99, 249.99, 1499.99], ... "Date": [ ... date(2024, 11, 27), ... date(2024, 11, 26), ... date(2024, 11, 25), ... ], ... } ... ) >>> session.tables.infer_data_types(dataframe) {'Id': 'long', 'Name': 'String', 'Price': 'double', 'Date': 'LocalDate'}
load()