edsl icon indicating copy to clipboard operation
edsl copied to clipboard

Design, conduct and analyze results of AI-powered surveys and experiments. Simulate social science and market research with large numbers of AI agents and LLMs.

Results 250 edsl issues
Sort by recently updated
recently updated
newest added

You may want to keep a line in your notebook that renames fields (eg question names) and wind up rerunning it as you work on it. Instead of throwing an...

The results `tally()` method is not working - here for checkbox results:

Add to Scenario.py: ``` def from_pdf(cls, pdf_path): # Ensure the file exists if not os.path.exists(pdf_path): raise FileNotFoundError(f"The file {pdf_path} does not exist.") # Open the PDF file document = fitz.open(pdf_path)...

Current logic is cutting off many words at 25 characters, making the question names too hard to remember, and it's not clear whether they are just cut off from print...

Instead of requiring: ``` old_names = c.question_names for i in range(len(old_names)): c.rename(old_names[i], new_names[i]) print(c.question_names) ```