File:SnrVScor.png: Difference between revisions

From 太極
Jump to navigation Jump to search
No edit summary
 
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 14: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
current14:13, 18 March 2022Thumbnail for version as of 14:13, 18 March 2022483 × 443 (20 KB)Brb (talk | contribs)

The following page uses this file: