Robin Yerkes Horton

Results 191 comments of Robin Yerkes Horton

I do think we should leave this list in alphabetical order, even though docs details are organized by importance of question type (MC first).

`sort_by()` is a method of results but `order_by()` is not -- did you mean sort_by, and do you think we also need order_by? https://github.com/expectedparrot/edsl/blob/main/edsl/results/Results.py#L536

If you think people will try `order_by()`, should we have it show a message to use `sort_by()`? One drawback of the current version of `sort_by()` is that you have to...

I think `order_by()` should refer to the order of the columns in the table. But this could also be handled by the `select()` method.

Yes, here it is with "pretty_labels={}" specified using the updated `print` method:

Not an issue with print labels -- the columns should be displayed in the order they are passed to `select`.

Code to reproduce: ``` from edsl.questions import QuestionMultipleChoice, QuestionFreeText from edsl import Survey q1 = QuestionMultipleChoice( question_name = "q1", question_text = "How often do you shop for clothes?", question_options =...

Keeping columns of same prefix together?