Description Usage Source Examples
Silver dielectric function from Palik
1 |
E. D. Palik. Handbook of Optical Constants of Solids, volume I. Academic Press, 1985 luxpop.com
1 2 3 4 |
'data.frame': 241 obs. of 4 variables:
$ wavelength: num 0.155 0.207 0.248 0.275 0.31 ...
$ epsilon : cplx 1+0i 1+0i 1+0i ...
$ real : num 1 1 1 1 1.01 ...
$ imag : num 5.84e-06 1.68e-05 3.04e-05 4.42e-05 7.16e-05 ...
$source
[1] "Silver in the visible, Palik"
$units
[1] "nanometres"
demo(AgPalik)
---- ~~~~~~~
> library(dielectric)
> library(ggplot2)
> data(AgPalik)
> AgPalik$set_span(200, 800)
> raw <- dielectric2plot(AgPalik$raw())
> silver <- AgPalik$predict(n=300, all.knots=TRUE, df=200)
> d <- dielectric2plot(silver)
> ggplot(d, aes(wavelength, value)) + geom_path() +
+ facet_grid(variable~., scales="free") +
+ geom_point(data=raw)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.