In ArcGIS Pro, if I have two feature layers with overlapping features, I can calculate the percentage of overlap with the TabulateIntersections function. For example, if I have two layers, one named Parcels and one named Zoning, I can figure out the zoning of particular parcels with:
import arcpy
arcpy.analysis.TabulateIntersection("Parcels", "PAN", "Zoning",
r"C:\path\to\Default.gdb\tablename",
["ZONE", "ZONE_DESC"])
I'm curious if there is a way to do this in ArcGIS Online Notebooks, where the result table would be a table in ArcGIS Online?