Azure / MachineLearningNotebooks

Python notebooks with ML and deep learning examples with Azure Machine Learning Python SDK | Microsoft
https://docs.microsoft.com/azure/machine-learning/service/
MIT License
4.07k stars 2.52k forks source link

Registering pandas dataframe as dataset in python script file #1449

Open krishnakategaru opened 3 years ago

krishnakategaru commented 3 years ago

I am trying to register the pandas dataframe , so i written code (Dataset.Tabular.register_pandas_dataframe(df, target='',name)) and i saved it in .py file where actual data will be treated missing values, and get the data and then registering that data, but while running i am getting error as ' local source path is not supported when i give datastore as 'target

then i gave local path, then it is throwing error 'target type is not supported'

can any one please help me with this?

meyetman commented 3 years ago

Hi @krishnakategaru are you entering the datastore in the target? The target should include the registered datastore you are using. Can you clarify more what the target value you are entering is?