Skip to content

Commit

Permalink
Running final analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
RussellBentley committed Apr 25, 2024
1 parent 90f6881 commit bb6d527
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 191 deletions.
113 changes: 17 additions & 96 deletions Band_Analysis.ipynb

Large diffs are not rendered by default.

114 changes: 20 additions & 94 deletions PHM08_Analysis.ipynb

Large diffs are not rendered by default.

10 changes: 9 additions & 1 deletion phm08.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,15 @@ def get_test_data(self):
x_test = np.concatenate(x_series, axis = 0)
y_test = np.concatenate(x_series, axis = 0)
return (x_test, y_test)


# Returns all 200 series reserved for training.
def get_train_data(self):
x_series = [self.series[i][0] for i in range(0, 200)]
y_series = [self.series[i][1] for i in range(0, 200)]
x_test = np.concatenate(x_series, axis = 0)
y_test = np.concatenate(x_series, axis = 0)
return (x_test, y_test)




Expand Down

0 comments on commit bb6d527

Please sign in to comment.