We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The Parser class in the library ddi.py creates a dictionary of lists:
Parser
ddi.py
result.json
{ "statistics": { "names": ["valid", "invalid"], "values": [1, 0] } }
Do not keep this behavior. Instead create a dictionary without the lists, looking like this:
{ "statistics": { "valid": 1, "invalid": 0, } }
See the dataset_schema for reference:
collect_stata/tests/dataset_schema.json
Lines 24 to 52 in 324c418
The text was updated successfully, but these errors were encountered:
fix issues
16c204e
mpahl
No branches or pull requests
The
Parser
class in the libraryddi.py
creates a dictionary of lists:result.json
Do not keep this behavior. Instead create a dictionary without the lists, looking like this:
result.json
See the dataset_schema for reference:
collect_stata/tests/dataset_schema.json
Lines 24 to 52 in 324c418
The text was updated successfully, but these errors were encountered: