Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dynamic_noise/wingspan/plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ def plot():
part_ax.plot(epsilon_list, [0.03]*len(epsilon_list), c='black')
part_ax.legend(['Prediction on noisy data', 'Prediction on actual data'])
if i == 2:
# the coef of determination for the prediction on actual data is 0.792
part_ax.plot(epsilon_list, [0.792]*len(epsilon_list), c='black')
# the coef of determination for the prediction on actual data is 0.669
part_ax.plot(epsilon_list, [0.669]*len(epsilon_list), c='black')
part_ax.legend(['Prediction on noisy data', 'Prediction on actual data'])
if i == 3:
# the predicted mean height on actual data is 1.766
Expand All @@ -66,4 +66,4 @@ def plot():
if __name__ == '__main__':

plot()