fixed pos_count cals in function by specifying dplyr and changed summarize to summarise
This commit is contained in:
parent
bf432cd054
commit
449af7acf4
3 changed files with 24 additions and 16 deletions
|
@ -6,7 +6,6 @@
|
|||
#########################################################
|
||||
#lib_loc = "/usr/local/lib/R/site-library")
|
||||
|
||||
|
||||
require("getopt", quietly = TRUE) # cmd parse arguments
|
||||
|
||||
if (!require("tidyverse")) {
|
||||
|
@ -19,6 +18,11 @@ if (!require("shiny")) {
|
|||
library(shiny)
|
||||
}
|
||||
|
||||
if (!require("shinyBS")) {
|
||||
install.packages("shinyBS", dependencies = TRUE)
|
||||
library(shinyBS)
|
||||
}
|
||||
|
||||
if (!require("gridExtra")) {
|
||||
install.packages("gridExtra", dependencies = TRUE)
|
||||
library(gridExtra)
|
||||
|
@ -39,6 +43,11 @@ if (!require("ggridges")) {
|
|||
# library(dplyr)
|
||||
# }
|
||||
|
||||
if (!require ("DT")){
|
||||
install.packages("DT")
|
||||
library(DT)
|
||||
}
|
||||
|
||||
if (!require ("plyr")){
|
||||
install.packages("plyr")
|
||||
library(plyr)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue