Nothing
knitr::opts_chunk$set(echo = FALSE) dsl_sub <- subset(dsl, DIM == dim && funcId == fid && algId %in% algs) name <- get_data_id(dsl_sub) fvs <- get_funvals(dsl_sub) tryCatch( { fmin <- as.numeric(REG$FCEECDF.AUC.Min[name]) fmax <- as.numeric(REG$FCEECDF.AUC.Max[name]) fstep <- as.numeric(REG$FCEECDF.AUC.Step[name]) if (is.null(fmin) || is.na(fmin)) fmin <- min(fvs) if (is.null(fmax) || is.na(fmax)) fmax <- max(fvs) if (is.null(fstep) || is.na(fstep)) fstep <- NULL }, error = function(e) { fmin <- min(fvs) fmax <- max(fvs) fstep <- NULL } ) p <- Plot.FV.ECDF_AUC(dsl_sub, fmin, fmax, fstep) save_plotly(p, paste0('FV_ECDF_AUC_F', fid, '-', dim, 'D.pdf'), 'pdf', width = 1000, height = 500)
r paste(fid)
on r paste(dim)
Dr}, results='asis', fig.align='center', fig.cap="TEsting", fig.width=500, fig.height=300, fig.pos='!hbt'}
include_graphics(paste0('FV_ECDF_AUC_F', fid, '-', dim, 'D.pdf'))
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.