hidding some labels

PennController for IBEX Forums Support hidding some labels

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #6500
    elena-vsg
    Participant

    Hi Jeremy!

    I am running an experiment using a 7 point Likert scale. I want to label 4 scale points and leave 3 unlabelled.
    Is there a quick way to do that? My current idea of labelling the 3 scale points as ” ” does not work as it results in identical ” ” logs in the results file.

    Thank you so so much!

    #6503
    Jeremy
    Keymaster

    Hi,

    I think it’s a bug introduced in PennController 1.9. Here’s a workaround:

    newTrial(
      newScale("myScale",
        "not at all",
        "<span style='visibility: hidden;'>1</span>",
        "not so much",
        "<span style='visibility: hidden;'>3</span>",
        "somewhat",
        "<span style='visibility: hidden;'>5</span>",
        "completely"
      )
        .print()
        .labelsPosition("top")
        .log()
        .wait()
    )

    Jeremy

    #6504
    elena-vsg
    Participant

    works like a charm, thank you!

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.