Here is a short document to get Norm started using R. As we discussed on the phone earlier today, this is the first of a series of exercises that will get you comfortable with the environment.
Markdown allows the analyst to create professional, appealing documents in-line with their analyses. It’s great for creating reports, documents or simply keeping track of the work you are doing.
This link will be very helpful.
\[F(\omega) = \int_{-\infty}^{\infty} f(t) e^{-j \omega t} dt,\] which you may remember as the Fourier Transform g. include a hyperlink of your choice.
Review the use of package magrittr, and the three magrittr operators, %>%, %<>%, and %$%
Since you are interested in plots, include the following code chunk and output:
library(ggplot2); library(magrittr)
data(mtcars)
mtcars %>% ggplot(aes(x = mpg, y = hp, size = disp, color = drat)) + geom_point() + geom_smooth() + ggtitle("Motor Trend Car Graph")
## `geom_smooth()` using method = 'loess'