Trying to use AB Join to compare two well log curves called Gamma Ray (GR) and pink major trends with similar magnitudes #944
Unanswered
Philliec459
asked this question in
Q&A
Replies: 2 comments 1 reply
|
@Philliec459
Great! Glad to hear it!!
If magnitude is important in your data, then you need to set the parameter The parameter Note that your current code uses the default value |
0 replies
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
I love this library. I have been able to apply it to determining where we are from past data with updated Red Tide Harmful Algal Bloom (HAB) data, and it works great. However, I am now trying to compare well log data from two wells that both have GR logs and they have similar patterns. I wanted to use the program to pick geologic tops from a well with GR and tops and create the tops for a second well matching the GR trends from both wells:
I am using STUMP to join, and in a notebook using ipywidgets interact (or Panel in non-notebook) to match a trend from one part of one well log to the same trend in another well log. However, it picks up similar trends but does not match the magnitudes. Is there a way to do this?
'
m = 35
w10_mp = stumpy.stump(T_A = df['GR'],
m = m,
T_B = df2['GR'],
ignore_trivial = False)
'
All reactions