Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 1a1549c

Browse files
trend modeling lesson
1 parent e095c01 commit 1a1549c

File tree

4 files changed

+1172
-9
lines changed

4 files changed

+1172
-9
lines changed

‎.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ __pycache__/
99
# C extensions
1010
*.so
1111

12+
# Mac OS
13+
.DS_Store
14+
1215
# Distribution / packaging
1316
.Python
1417
env/
@@ -106,3 +109,6 @@ ENV/
106109

107110
# mypy
108111
.mypy_cache/
112+
113+
# RMSP Cache files
114+
*.bin

‎README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
11
# Geostatistics Lessons Notebooks
22

3-
[Geostatistics Lessons](http://geostatisticslessons.com/) is an open disclosure of some guidance in geostatistical modeling. These Python notebooks and data are prepared by Lesson authors and associated contributors to supplement the Lessons. As new Lessons are authored and notebooks created, this repository will be updated.
3+
[Geostatistics Lessons](https://geostatisticslessons.com/) is an open disclosure of some guidance in geostatistical modeling. These Python notebooks and data are prepared by Lesson authors and associated contributors to supplement the Lessons. As new Lessons are authored and notebooks created, this repository will be updated.
44

55
## Lessons
66

77
Lessons with notebooks and data available include:
88

9-
* An Application of Bayes Theorem to Geostatistical Mapping ([notebook](notebooks/bayesmapping/bayesmapping.ipynb) and [lesson](http://geostatisticslessons.com/lessons/bayesmapping)), Jared Deutsch and Clayton Deutsch, 2018
10-
* Multidimensional Scaling ([notebook](notebooks/mds/mds.ipynb) and [lesson](http://geostatisticslessons.com/lessons/mds)), Steven Mancell and Clayton Deutsch, 2019
11-
* Collocated Cokriging ([notebook](notebooks/collocatedcokriging/collocatedcokriging.ipynb) and [lesson](http://geostatisticslessons.com/lessons/collocatedcokriging)), Matthew Samson and Clayton Deutsch, 2020
12-
* The Nugget Effect ([notebook](notebooks/nuggeteffect/nuggeteffect.ipynb) and [lesson](http://geostatisticslessons.com/lessons/nuggeteffect)), Eric Daniels and Diogo Silva, 2024
13-
* The Pairwise Relative Variogram ([notebook](notebooks/pairwiserelative/pairwiserelative.ipynb) and [lesson](http://geostatisticslessons.com/lessons/pairwiserelative)), Haoze Zhang and Ryan Barnett, 2024
14-
* Introduction to Choosing a Kriging Plan ([notebook](notebooks/introkrigingplan/introkrigingplan.ipynb) and [lesson](http://geostatisticslessons.com/lessons/introkrigingplan)), James Eke and Ryan Barnett, 2024
9+
* An Application of Bayes Theorem to Geostatistical Mapping ([notebook](notebooks/bayesmapping/bayesmapping.ipynb) and [lesson](https://geostatisticslessons.com/lessons/bayesmapping)), Jared Deutsch and Clayton Deutsch, 2018
10+
* Multidimensional Scaling ([notebook](notebooks/mds/mds.ipynb) and [lesson](https://geostatisticslessons.com/lessons/mds)), Steven Mancell and Clayton Deutsch, 2019
11+
* Collocated Cokriging ([notebook](notebooks/collocatedcokriging/collocatedcokriging.ipynb) and [lesson](https://geostatisticslessons.com/lessons/collocatedcokriging)), Matthew Samson and Clayton Deutsch, 2020
12+
* The Nugget Effect ([notebook](notebooks/nuggeteffect/nuggeteffect.ipynb) and [lesson](https://geostatisticslessons.com/lessons/nuggeteffect)), Eric Daniels and Diogo Silva, 2024
13+
* The Pairwise Relative Variogram ([notebook](notebooks/pairwiserelative/pairwiserelative.ipynb) and [lesson](https://geostatisticslessons.com/lessons/pairwiserelative)), Haoze Zhang and Ryan Barnett, 2024
14+
* Introduction to Choosing a Kriging Plan ([notebook](notebooks/introkrigingplan/introkrigingplan.ipynb) and [lesson](https://geostatisticslessons.com/lessons/introkrigingplan)), James Eke and Ryan Barnett, 2024
15+
* Trend Modeling and Modeling with a Trend ([notebook](notebooks/trendmodeling/trendmodeling.ipynb) and [lesson](https://geostatisticslessons.com/lessons/trendmodeling)), Sebastian Sanchez, Ben Harding, and Ryan Barnett, 2024
1516

1617
## Dependencies
1718

18-
Notebooks are implemented in Python 3 using the scientific python stack (NumPy, Pandas, Matplotlib, ...). Refer to the individual notebooks for any particular dependencies.
19+
Notebooks are implemented in Python using the scientific python stack (NumPy, Pandas, Matplotlib, ...). Refer to the individual notebooks for any particular dependencies.
1920

2021
Some notebooks leverage the Resource Modeling Solutions Platform ([RMSP](https://resourcemodelingsolutions.com/rmsp)), a geostatistical modeling package that provides commercial and academic licenses. These notebooks augment the Lesson, but the interested reader is free to implement in any geostatistical modeling software they are interested in using.
2122

2223
## License
2324

24-
Notebooks are licensed under the [MIT](LICENSE) license separately from the Lessons. Refer to [Geostatistics Lessons](http://geostatisticslessons.com/) for licensing information on the Lessons.
25+
Notebooks are licensed under the [MIT](LICENSE) license separately from the Lessons. Refer to [Geostatistics Lessons](https://geostatisticslessons.com/) for licensing information on the Lessons.

‎notebooks/trendmodeling/samples.csv

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
X,Y,wts,Value
2+
4.498,6.141,0.98,1.209
3+
29.803,3.799,0.9,1.511
4+
50.928,5.057,0.84,1.861
5+
73.395,5.37,0.9,2.531
6+
93.624,3.186,0.94,2.075
7+
3.624,28.43,0.94,1.579
8+
26.232,26.682,0.96,2.166
9+
51.465,26.26,0.847,1.473
10+
73.404,29.796,0.82,0.956
11+
95.832,29.863,0.837,2.468
12+
3.082,51.234,0.98,1.246
13+
29.88,49.218,0.9,1.569
14+
51.33,48.391,0.52,2.271
15+
71.849,50.737,0.44,2.316
16+
93.727,49.761,0.307,2.601
17+
3.734,71.488,0.98,1.311
18+
27.217,72.981,0.611,1.673
19+
50.099,71.138,0.339,2.536
20+
72.728,74.637,0.428,3.345
21+
94.165,72.035,0.367,2.132
22+
5.447,95.65,0.94,0.771
23+
26.558,94.247,0.463,2.64
24+
49.169,95.08,0.361,2.966
25+
72.465,95.187,0.341,3.543
26+
94.824,93.739,0.423,3.393
27+
70.0,90.0,0.25,2.813
28+
94.0,94.0,0.43,3.087
29+
80.0,62.0,0.324,3.768
30+
92.0,58.0,0.267,3.137
31+
64.0,94.0,0.248,3.181
32+
90.0,48.0,0.284,2.531
33+
68.0,90.0,0.238,3.15
34+
58.0,44.0,0.46,2.403
35+
96.0,84.0,0.447,2.563
36+
44.0,70.0,0.314,2.308
37+
30.0,86.0,0.291,2.515
38+
36.0,98.0,0.423,2.608
39+
60.0,94.0,0.261,3.578
40+
60.0,64.0,0.4,2.678
41+
90.0,64.0,0.293,2.519
42+
52.0,90.0,0.289,2.836
43+
42.0,72.0,0.307,2.444
44+
84.0,46.0,0.365,2.468
45+
28.0,82.0,0.344,2.714

‎notebooks/trendmodeling/trendmodeling.ipynb

Lines changed: 1111 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /