allow computing just a small number of variables
Nobody has claimed this yet.
- Dominant language
- Python
- Stars
- 4.2k
- Forks
- 1.4k
- Avg merge
- 2d 15h
- Merged PRs (30d)
- 14
Description
Is your feature request related to a problem?
I frequently find myself computing a handful of variables of a dataset (typically coordinates) and assigning them back to the dataset, and wishing we had a method / function that allowed that.
Describe the solution you'd like
I'd imagine something like
ds.compute(variables=variable_names)
but I'm undecided on whether that's a good idea (it might make .compute more complex?)
Describe alternatives you've considered
So far I've been using something like
ds.assign_coords({k: lambda ds: ds[k].compute() for k in variable_names})
ds.pipe(lambda ds: ds.merge(ds[variable_names].compute()))
but both are not easy to type / understand (though having .merge take a callable would make this much easier). Also, the first option computes variables separately, which may not be ideal?
Additional context
No response
Contributor guide
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.
Research direction
Start with Dataset.compute and compare it with the assign_coords, pipe, and merge patterns shown in the issue. Resolve the API and computation semantics for selecting variables, then add coverage showing the selected variables are computed and assigned back without unnecessary separate computation.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- data
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 35/100