File tree 4 files changed +31
-8
lines changed
4 files changed +31
-8
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ datasets <building-introduction>`.
37
37
38
38
- :doc: `using/introduction `
39
39
- :doc: `using/opening `
40
+ - :doc: `using/methods `
40
41
- :doc: `using/subsetting `
41
42
- :doc: `using/combining `
42
43
- :doc: `using/selecting `
@@ -53,6 +54,7 @@ datasets <building-introduction>`.
53
54
54
55
using/introduction
55
56
using/opening
57
+ using/methods
56
58
using/subsetting
57
59
using/combining
58
60
using/selecting
Original file line number Diff line number Diff line change 1
- ds = open_dataset (
2
- dataset ,
3
- select = ["2t" , "tp" ],
4
- )
1
+ ds = open_dataset (dataset , select = ["2t" , "tp" ])
Original file line number Diff line number Diff line change 1
- ds = open_dataset (
2
- dataset ,
3
- select = {"2t" , "tp" },
4
- )
1
+ ds = open_dataset (dataset , select = {"2t" , "tp" })
Original file line number Diff line number Diff line change
1
+ ########################
2
+ Methods and attributes
3
+ ########################
4
+
5
+ .. warning ::
6
+
7
+ Page in progress.
8
+
9
+ The following methods and attributes are available for the objects
10
+ returned by ``open_dataset ``:
11
+
12
+ *********
13
+ Methods
14
+ *********
15
+
16
+ __len__
17
+ The number of rows (dates) in the dataset.
18
+
19
+ __getitem__
20
+ Access the dataset's data values.
21
+
22
+ ************
23
+ Attributes
24
+ ************
25
+
26
+ shape:
27
+ A tuple of the dataset's dimensions.
You can’t perform that action at this time.
0 commit comments