Skip to content

Commit

Permalink
Update activities_classifications.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
romainsacchi committed Jun 17, 2024
1 parent 0cf7e36 commit 9eca832
Show file tree
Hide file tree
Showing 2 changed files with 14,245 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dev/convert_missings.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# Convert dataframe to a list of tuples, matching the desired output structure
data_tuples = [
{tuple(x): "Other transportation support activities"} for x in data.to_numpy()
{tuple(x[:-1]): x[-1]} for x in data.to_numpy()
]

# Prepare the data in the specified YAML format with the custom tag
Expand Down
Loading

0 comments on commit 9eca832

Please sign in to comment.