Skip to content
Snippets Groups Projects
Commit 45589faf authored by Etienne Rifa's avatar Etienne Rifa
Browse files

v1.3.2

fix na handling for ACP when some column have only NAs.
parent 9bec8d44
No related branches found
Tags v1.3.2
No related merge requests found
Package: graphstatsr
Title: graphstatsr
Version: 1.3.1
Version: 1.3.2
Authors@R:
person(given = "Etienne",
family = "Rifa",
......
......@@ -256,7 +256,7 @@ mod_Inputs_server <- function(id, r = r, session = session){
# Preview
output$prevds1 <- renderPrint({
cat(file = stderr(), 'rendering ds1', "\n")
cat('Running graphstatsr v1.3.1\n')
cat('Running graphstatsr v1.3.2\n')
cat(glue::glue("Features table with {nrow(dataset1())} rows and {ncol(dataset1())} columns.\n\n"))
head(dataset1()[, 1:6])
if (is.null(dataset1())) {
......@@ -526,7 +526,10 @@ mod_Inputs_server <- function(id, r = r, session = session){
}
if(input$naomit_method == 1){
Tfeat =t(r_values$features_final)
Tfeat0 =t(r_values$features_final)
allNA_index = apply(Tfeat0,2,function(x){all(is.na(x))})
Tfeat = Tfeat0[,!allNA_index]
Tfeat_ok <- na.omit(Tfeat)
acp_input <- t(Tfeat_ok)
r_values$snaomit <- setdiff(row.names(Tfeat),row.names(Tfeat_ok))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment