Metaculus / Metaculus/metaculus
There should be 201 points in the api_json["question"]["scaling"]["continuous_range"] field
Open
@lsabor is already working on this.
Since Aug 14, 2025.
Stale
Technical
- Dominant language
- TypeScript
- Stars
- 113
- Forks
- 34
- Avg merge
- 16h 34m
- Merged PRs (30d)
- 30
Description
When I run the below I find that all the numeric questions have 200 points, not 201. The continuous range should be the x axis of the CDF.
from forecasting_tools import MetaculusApi, NumericQuestion
questions = MetaculusApi.get_all_open_questions_from_tournament("metaculus-cup")
for question in questions:
if isinstance(question, NumericQuestion):
api_json = question.api_json
continuous_range = api_json["question"]["scaling"]["continuous_range"]
length_of_range = len(continuous_range)
logger.info(f"Question: {question.page_url}, Length of range: {length_of_range}")
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.