File tree 6 files changed +22
-22
lines changed
6 files changed +22
-22
lines changed Original file line number Diff line number Diff line change 78
78
"combine_by_coords" ,
79
79
"combine_nested" ,
80
80
"concat" ,
81
+ "corr" ,
82
+ "cov" ,
83
+ "cross" ,
81
84
"date_range" ,
82
85
"date_range_like" ,
83
86
"decode_cf" ,
84
87
"dot" ,
85
- "cov" ,
86
- "corr" ,
87
- "cross" ,
88
88
"full_like" ,
89
89
"get_options" ,
90
90
"group_subtrees" ,
121
121
"Index" ,
122
122
"IndexSelResult" ,
123
123
"IndexVariable" ,
124
- "Variable" ,
125
124
"NamedArray" ,
125
+ "Variable" ,
126
126
# Exceptions
127
127
"InvalidTreeError" ,
128
128
"MergeError" ,
Original file line number Diff line number Diff line change 23
23
"AbstractDataStore" ,
24
24
"BackendArray" ,
25
25
"BackendEntrypoint" ,
26
- "FileManager" ,
27
26
"CachingFileManager" ,
28
27
"DummyFileManager" ,
29
- "InMemoryDataStore" ,
30
- "NetCDF4DataStore" ,
31
- "PydapDataStore" ,
32
- "ScipyDataStore" ,
28
+ "FileManager" ,
33
29
"H5NetCDFStore" ,
34
- "ZarrStore" ,
35
30
"H5netcdfBackendEntrypoint" ,
31
+ "InMemoryDataStore" ,
36
32
"NetCDF4BackendEntrypoint" ,
33
+ "NetCDF4DataStore" ,
37
34
"PydapBackendEntrypoint" ,
35
+ "PydapDataStore" ,
38
36
"ScipyBackendEntrypoint" ,
37
+ "ScipyDataStore" ,
39
38
"StoreBackendEntrypoint" ,
40
39
"ZarrBackendEntrypoint" ,
40
+ "ZarrStore" ,
41
41
"list_engines" ,
42
42
"refresh_engines" ,
43
43
]
Original file line number Diff line number Diff line change 35
35
from xarray .namedarray .pycompat import is_chunked_array
36
36
37
37
__all__ = [
38
+ "BinGrouper" ,
38
39
"EncodedGroups" ,
39
40
"Grouper" ,
40
41
"Resampler" ,
41
- "UniqueGrouper" ,
42
- "BinGrouper" ,
43
42
"TimeResampler" ,
43
+ "UniqueGrouper" ,
44
44
]
45
45
46
46
RESAMPLE_DIM = "__resample_dim__"
Original file line number Diff line number Diff line change 22
22
from xarray .plot .facetgrid import FacetGrid
23
23
24
24
__all__ = [
25
- "plot" ,
26
- "line" ,
27
- "step" ,
25
+ "FacetGrid" ,
28
26
"contour" ,
29
27
"contourf" ,
30
28
"hist" ,
31
29
"imshow" ,
30
+ "line" ,
32
31
"pcolormesh" ,
33
- "FacetGrid " ,
32
+ "plot " ,
34
33
"scatter" ,
34
+ "step" ,
35
35
"surface" ,
36
36
]
Original file line number Diff line number Diff line change 17
17
__all__ = [
18
18
"assert_allclose" ,
19
19
"assert_chunks_equal" ,
20
- "assert_duckarray_equal" ,
21
20
"assert_duckarray_allclose" ,
21
+ "assert_duckarray_equal" ,
22
22
"assert_equal" ,
23
23
"assert_identical" ,
24
24
"assert_isomorphic" ,
Original file line number Diff line number Diff line change 20
20
21
21
22
22
__all__ = [
23
- "supported_dtypes" ,
24
- "pandas_index_dtypes" ,
25
- "names" ,
23
+ "attrs" ,
26
24
"dimension_names" ,
27
25
"dimension_sizes" ,
28
- "attrs" ,
29
- "variables" ,
26
+ "names" ,
27
+ "pandas_index_dtypes" ,
28
+ "supported_dtypes" ,
30
29
"unique_subset_of" ,
30
+ "variables" ,
31
31
]
32
32
33
33
You can’t perform that action at this time.
0 commit comments