Skip to content

Commit

Permalink
updates based on dev-kja (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
kanchukaitis authored Jan 9, 2024
1 parent 2863e92 commit 30c074e
Show file tree
Hide file tree
Showing 7 changed files with 4,638 additions and 14,627 deletions.
68 changes: 0 additions & 68 deletions dplpy/GitHub Copilot

This file was deleted.

2 changes: 1 addition & 1 deletion dplpy/detrend.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def detrend_series(data: pd.Series, fit, method, plot, period=None):

axes[0].plot(x, y, "k-", x, yi, "r-", linewidth=2)
axes[0].set_xlabel('Year')
axes[0].set_ylabel('Length')
axes[0].set_ylabel('Ring Width')
axes[0].set_title(series_name + " curve fit to " + fit)

axes[1].plot(x, detrended_data, 'k-')
Expand Down
14,558 changes: 0 additions & 14,558 deletions dplpy/output.rwl

This file was deleted.

2 changes: 2 additions & 0 deletions dplpy/readers.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ def readers(filename: str, skip_lines=0, header=False):
series_data = pd.read_csv(filename, skiprows=skip_lines)
elif filename.upper().endswith(".RWL"):
series_data = process_rwl_pandas(filename, skip_lines, header)
elif filename.upper().endswith(".RAW"):
series_data = process_rwl_pandas(filename, skip_lines, header)
else:
errorMsg = """
Expand Down
Empty file removed dplpy/update.txt
Empty file.
Binary file removed image.png
Binary file not shown.
Loading

0 comments on commit 30c074e

Please sign in to comment.