Thanks Jeff! I recieved the following error:
Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).
Here is the script that worked for me, but it would mean hard-coding the fields, which is not preferred:
#Converting feature class to panda dataframe
#df = self.PandasDF(FC1,"")
fieldList = ['ID_1','SiteNo','SiteName','Area_sqmi','Join_Flow','Shape@WKT']
data = [row for row in arcpy.da.SearchCursor(FC1,fieldList)]
guage_df = pd.DataFrame(data, columns = fieldList)
Ideally, I want to import all the fields into the panda dataframe with an additional field, "Shape@WKT." Any ideas?