This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library( quantreg ) | |
| x <- runif( 1000, 0, 10 ) | |
| y <- 30*exp(-(x-5)^2) + rnorm(1000) + x*rnorm(1000) | |
| plot( x, y ) | |
| fit <- rq( y ~ x + I(x^2), .9 ) | |
| xg <- seq( 0, 10, l=1000 ) | |
| lines( xg, predict( fit, data.frame( x=xg, `I(x^2)`=xg^2 ) ), col="red" ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # A sketch on how one can use hwriter to display an image when hovering | |
| # over a table row. | |
| library( hwriter ) | |
| # Make a data frame with some parameters or other data | |
| df <- data.frame( | |
| name = sprintf( "Lissajous-%02d", 0:99 ), | |
| freq.x = floor( runif( 100, min=2, max=8 ) ), | |
| freq.y = floor( runif( 100, min=2, max=8 ) ) ) |
NewerOlder