Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
HansKallekleiv committed Dec 2, 2024
1 parent ea731f1 commit a274c30
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ def update_crossplot(

for _ens, ensdf in df.groupby("ENSEMBLE"):
dframe = (
ensdf.groupby(["WELL", "DATE", "ZONE", "TVD"]).mean(numeric_only=True).reset_index().copy()
ensdf.groupby(["WELL", "DATE", "ZONE", "TVD"])
.mean(numeric_only=True)
.reset_index()
.copy()
)
trace = {
"x": dframe["OBSERVED"],
Expand Down

0 comments on commit a274c30

Please sign in to comment.