-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtut_adv.html
111 lines (98 loc) · 5.81 KB
/
tut_adv.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Advanced Variable Operations — PyGeode 1.4.1-rc2 documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
<link rel="stylesheet" type="text/css" href="_static/pygtheme.css" />
<link rel="stylesheet" type="text/css" href="_static/plot_directive.css" />
<link rel="stylesheet" type="text/css" href="_static/sg_gallery.css" />
<link rel="stylesheet" type="text/css" href="_static/sg_gallery-binder.css" />
<link rel="stylesheet" type="text/css" href="_static/sg_gallery-dataframe.css" />
<link rel="stylesheet" type="text/css" href="_static/sg_gallery-rendered-html.css" />
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
<script src="_static/jquery.js"></script>
<script src="_static/underscore.js"></script>
<script src="_static/doctools.js"></script>
<link rel="shortcut icon" href="_static/pygeode_icon.ico"/>
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
<link rel="next" title="Reference" href="reference.html" />
<link rel="prev" title="Working with Datasets" href="tut_datasets.html" />
<link href="http://fonts.googleapis.com/css?family=Ubuntu:300,300italic,regular,italic,500,500italic,bold,bolditalic" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700' rel='stylesheet' type='text/css'>
</head><body>
<div class="header" role="banner"><img class="logo" src="_static/pygeode_logo.png" width=79px alt="Logo"/>
<h1 class="heading"><a href="index.html">
<span>PyGeode 1.4.1-rc2 documentation</span></a></h1>
<h2 class="heading"><span>Advanced Variable Operations</span></h2>
</div>
<div class="topnav" role="navigation" aria-label="top navigation">
<p>
«  <a href="tut_datasets.html">Working with Datasets</a>
  ::  
<a class="uplink" href="reference.html">Reference</a>
  ::  
<a class="uplink" href="tutorial.html">Tutorial</a>
  ::  
<a class="uplink" href="gallery/index.html">Gallery</a>
  ::  
<a href="reference.html">Reference</a>  »
</p>
</div>
<div class="content">
<div class="section" id="advanced-variable-operations">
<h1>Advanced Variable Operations<a class="headerlink" href="#advanced-variable-operations" title="Permalink to this headline">¶</a></h1>
<div class="section" id="climatological-statistics">
<h2>Climatological statistics<a class="headerlink" href="#climatological-statistics" title="Permalink to this headline">¶</a></h2>
<p>A variety of time averaging operations are possible. In addition to computing
climatologies, one can compute monthly means, daily means, diurnal means, and
trends. These should generally work as expected; however, PyGeode also
implements special mapping rules for time axes so that anomalies from these time
averages can be easily defined. In general these are based on the</p>
<p>A common operation is to
compute climatologies. As described in the first of these tutorials this is
simply performed as follows</p>
<div class="highlight-ipython notranslate"><div class="highlight"><pre><span></span><span class="gp">In [1]: </span><span class="kn">from</span> <span class="nn">pygeode.tutorial</span> <span class="kn">import</span> <span class="n">t2</span>
<span class="gp">In [2]: </span><span class="n">Tc</span> <span class="o">=</span> <span class="n">pyg</span><span class="o">.</span><span class="n">climatology</span><span class="p">(</span><span class="n">t2</span><span class="o">.</span><span class="n">Temp</span><span class="p">)</span> <span class="c1"># Compute the climatology</span>
</pre></div>
</div>
</div>
<div class="section" id="time-averaging">
<h2>Time averaging<a class="headerlink" href="#time-averaging" title="Permalink to this headline">¶</a></h2>
<div class="section" id="other-operations">
<h3>Other Operations<a class="headerlink" href="#other-operations" title="Permalink to this headline">¶</a></h3>
</div>
</div>
<div class="section" id="eofs-correlation-and-regression-analysis">
<h2>EOFs, correlation, and regression analysis<a class="headerlink" href="#eofs-correlation-and-regression-analysis" title="Permalink to this headline">¶</a></h2>
<p>include lag correlation</p>
</div>
<div class="section" id="integration-differentiation-interpolation-and-smoothing">
<h2>Integration, Differentiation, Interpolation and Smoothing<a class="headerlink" href="#integration-differentiation-interpolation-and-smoothing" title="Permalink to this headline">¶</a></h2>
</div>
<div class="section" id="composites">
<h2>Composites<a class="headerlink" href="#composites" title="Permalink to this headline">¶</a></h2>
</div>
</div>
</div>
<div class="bottomnav" role="navigation" aria-label="bottom navigation">
<p>
«  <a href="tut_datasets.html">Working with Datasets</a>
  ::  
<a class="uplink" href="reference.html">Reference</a>
  ::  
<a class="uplink" href="tutorial.html">Tutorial</a>
  ::  
<a class="uplink" href="gallery/index.html">Gallery</a>
  ::  
<a href="reference.html">Reference</a>  »
</p>
</div>
<div class="footer" role="contentinfo">
© Copyright 2020, Mike Neish, Peter Hitchcock.
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 4.3.2.
</div>
</body>
</html>