Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clear visual to explain the signal vs noise #17

Open
SJaffa opened this issue Oct 22, 2024 · 0 comments
Open

Clear visual to explain the signal vs noise #17

SJaffa opened this issue Oct 22, 2024 · 0 comments

Comments

@SJaffa
Copy link
Contributor

SJaffa commented Oct 22, 2024

To identify any signal in the data we can use the standard deviation as an estimate of the noise around the mean value of the data.

This might not be clear for people who have not done this sort of signal processing. We should explain what is the "signal" - the bump - and what is the "noise" - the data that is around zero but not exactly zero because of the random numbers.

I made this plot to try to visualise the filtering we are doing:

plt.plot(x, noisy)
plt.plot(x, [mean_noisy]*len(x), 'g-')
plt.plot(x, [mean_noisy+stddev_noisy]*len(x), 'r-')
plt.plot(x, [mean_noisy-stddev_noisy]*len(x), 'r-')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant