I have recently run the Time Series Cross Correlation geoprocessing tool to get outputs including a polygon feature class and a correlation table listing correlation coefficients for each polygon for each lag value defined by the correlation analysis. I am hoping to take this correlation table and convert it to a polygon feature class so that I can range-enable it and create an animation showing how each polygon's correlation coefficient changes over the lag value range.
In past projects, I converted tabular data to a point feature class by reading the tabular data into a pandas dataframe, converting that dataframe to a spatially enabled dataframe using the ArcGIS API for Python geoaccessor, and converting the spatially enabled dataframe to a point feature class. In this case, though, I want to convert my tabular data into a feature class with polygon geometry. I tried adding a column to my pandas dataframe with the polygon geometry obtained from the shape@ token using arcpy.da.SearchCursor() and using Geoaccessor.from_df() to specify this column as the dataframe's geometry information, but the function appears to have timed out without completing.
Is there a different function in the Geoaccessor module that I should be using instead, or is there perhaps a different workflow for applying polygon geometry to tabular data that would be better for me to use?