How I can get dataframe out of @interact function for next cell? My interact function looks something like this:
@interact(eutPlace=eutPlaces)
def selectByEut (eutPlace):
rdsTable = tabelSisse.drop(['Id', 'Serial_number', 'User_modified'], axis='columns')
rdsTable = rdsTable.loc[rdsTable['EUT_place'] == eutPlace]
print(rdsTable.shape)
return rdsTable