Hello,
I created an non spatial dataframe using Pandas. Now I want to Export it into a filedgb in arcGIS Pro. But I have not found a function to export a dataframe to a filegdb for a non spatial dataframe.
Do you have any advice?
Thanks for help
Solved! Go to Solution.
This is the function
arcpy.da.numpyarraytotable
https://pro.arcgis.com/en/pro-app/2.8/arcpy/data-access/numpyarraytotable.htm
The Pandas function to get the dataframe into a numpy array is
https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.to_numpy.html
This is the function
arcpy.da.numpyarraytotable
https://pro.arcgis.com/en/pro-app/2.8/arcpy/data-access/numpyarraytotable.htm
The Pandas function to get the dataframe into a numpy array is
https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.to_numpy.html
Thanks!!!!