Hello, I am trying to have a routine where participants can see a summary of their task performance. I want to give information about what participants selected in a lottery, the lottery outcome, trial number and so on.
What I am trying to do is importing data in the following way:
import pandas as pd
trialno = thisExp.entries
trialno = pd.DataFrame(trialno)
trialno = trialno['practice.thisTrialN'].to_string()
I am using this code in the Begin Routine component and then add $trialno to a text component. This is showing me the whole column of data. I would prefer to only show my participants row 12 to row 20 because the rest of the column only has empty values until that row. Is there a possibility to do that?