fixed pos_count cals in function by specifying dplyr and changed summarize to summarise

This commit is contained in:
Tanushree Tunstall 2021-09-15 15:46:42 +01:00
parent bf432cd054
commit 449af7acf4
3 changed files with 24 additions and 16 deletions

View file

@ -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)