Jump to content

File:SnrVScor.png: Difference between revisions

From 太極
Brb (talk | contribs)
No edit summary
 
Brb (talk | contribs)
No edit summary
 
Line 1: Line 1:
 
<pre>
library(dplyr)
library(ggplot2)
tibble(snr = seq(1,40)) %>%
  mutate(cor=sqrt(snr)/sqrt(snr+1)) %>%
  ggplot(aes(snr, cor)) + geom_point() + labs(x="SNR", y="Cor(Y, f(X))")
</pre>

Latest revision as of 13:15, 18 March 2022

library(dplyr)
library(ggplot2)
tibble(snr = seq(1,40)) %>% 
  mutate(cor=sqrt(snr)/sqrt(snr+1)) %>% 
  ggplot(aes(snr, cor)) + geom_point() + labs(x="SNR", y="Cor(Y, f(X))")

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current13:13, 18 March 2022Thumbnail for version as of 13:13, 18 March 2022483 × 443 (20 KB)Brb (talk | contribs)

The following page uses this file: