Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Supported by

[solved] Logging Response Times to Button Click

edited June 2013 in OpenSesame

Hi,

Just wondering how to get the logger to log response times for my experiment. I'm using the form_base item to create buttons that participants will respond on. I've managed to find info on how to get the form to log which response is made, however I'm struggling to understand how to get it to log response times?

Chris.

Comments

  • edited November 2013

    Hi Chris,

    Response times are automatically determined only for variables collected with response items (such as a keyboard_response item or a mouse_item). If you want to determine response times for other response variables (such as input from a form_base item), you will first have to calculate and set it yourself in an inline_script item. After setting the new variable (by using the exp.set() function described in the link below) it will automatically be logged by the logger item.

    More specifically, you can calculate and set the response times yourself by appending an inline_script item immediately after a given form item, and put something like the following code in its Run phase tab:

    # Determine the starting time of the form item:
    starting_time = self.get("time_my_form")
    
    # Determine the current time:
    current_time = self.time()
    
    # The time it took to complete the form base is the 
    # difference score between the two:
    my_rt = current_time - starting_time
    
    # Set the new variable for future use in the
    # GUI (notably, the logger item):
    exp.set("my_rt", my_rt)
    

    Does this help?

    Best wishes,

    Lotje

    Did you like my answer? Feel free to Buy Me A Coffee :)

  • edited 5:41PM

    Yes that works perfectly!
    Thanks for your help.

    Chris.

  • edited 5:41PM

    Hi Lotje,

    Is there any other way to get response time for button clicks?

    I have tried the inline script you provide but it did not work.

    -Rose

  • edited December 2013

    Nevermind, apparently already resolved in #680.

Sign In or Register to comment.