stradee

Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • in reply to: Eyetracking data analysis #10850
    stradee
    Participant

    Hi, Jeremy.

    While I was analyzing some eye data, I found some problems.

    trial time left right
    11 1920 0 1
    11 2087 0 0
    11 2250 1 0
    11 2416 1 0
    11 2581 1 0
    11 2751 0 0

    1. In the above data set, the regular intervals differ by participants. Some are 150~170ms, but others are 50~70ms. And a few are 30~50ms. So, there’s a wide difference between the number of the entire data by participants. Why do the regular intervals differ? I haven’t modified anything while collecting data.

    2. There’s some missing data. A few participants have all (left, right) = (0, 0) data. What causes this problem?

    3. In your last reply, you said the fixation duration is estimated considering the time course.
    Then, is there any way to figure out the exact fixation duration of each data point in pcibex farm? If so, I want to modify my script for further data collection.

    Thanks!

    in reply to: Eyetracking data analysis #10819
    stradee
    Participant

    Jeremy, I have one more question.

    It is about the fixation duration.
    In the data attached above,

    trial time left right
    11 1920 0 1
    11 2087 0 0
    11 2250 1 0
    11 2416 1 0
    11 2581 1 0
    11 2751 0 0

    The fixation duration of (left, right) = (0,1) is 2087-1920. is it right?
    Then, how can I calculate the last fixation (time = 2751)?

    always thanks!

    in reply to: Audio playing twice #10495
    stradee
    Participant

    Jeremy, it works well!! I didn’t notice just a simple mistake.
    Really thank you!!

    in reply to: Audio playing twice #10493
    stradee
    Participant

    Hi, Jeremy.
    I modified the script as you mentioned, but it didn’t work well as I expected.

    I want participants to listen to the target audio file once or twice (as they want to listen one more)
    So, after they listen twice, the audio play bar must disappear so that they cannot listen any more.

    How can I modify the script?
    Thanks for your help!

    >>
    Template( “practice2.csv” , row =>
    newTrial(“practice”,
    newTimer(“break”, 1000)
    .start()
    .wait()
    ,
    newAudio(“audio”, row.audio)
    .center()
    .print()
    .wait()
    ,
    newTimer(10)
    .callback(getAudio(“audio”).wait().remove()).start
    ,
    //getAudio(“audio”)
    // .remove()
    //,
    newTextInput(“answer”)
    .size(400, 50)
    .cssContainer({“margin”:”2em”})
    .center()
    .log()
    .print()
    ,
    newButton(“next”, “다음”)
    .center()
    .cssContainer({“margin”:”1em”})
    .print()
    .wait(getTextInput(“answer”).test.text(/[ㄱ-ㅎㅏ-ㅣ가-힣]+/))
    .remove()

    // .log(///)
    )
    );

Viewing 4 posts - 1 through 4 (of 4 total)