Description Usage Arguments Value Examples
Function to performed zoomed analysis of the wavelet screening output
| 1 | extract_tree(res, lev_res, thresh)
 | 
| res | Output of Wavelet_screening. | 
| lev_res | the maximum level of resolution needed, has to be less or equal to the request level of resolution in the Wavelet_screening. | 
| thresh | Minimal value of the Bayes Factor to defined a sub-region if missing set as 1. | 
A vector corresponding to the subtree for the zoomed analysis.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | ## Not run: 
#using res for the Wavelet_screening exemple
sub_analysis <- function(res, lev_res )
{
 sub <- extract_tree(res,lev_res=lev_res)
 my_pi <- adaptative_EM_Lambda(sub)
 out <-  adaptative_Lambda (my_pi, sub)
 return(out)
}
sub_analysis(res, 6)
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.