Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove deprecated functions #21

Merged
merged 3 commits into from
Feb 7, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -30,8 +30,6 @@ S3method(print,infer_ts_ind_ttest)
S3method(print,infer_ts_paired_ttest)
S3method(print,infer_ts_prop_test)
S3method(print,infer_ts_var_test)
S3method(print,var_test_shiny)
S3method(var_test_shiny,default)
export(binom_calc)
export(binom_test)
export(chisq_gof)
@@ -70,16 +68,13 @@ export(ts_prop_grp)
export(ts_prop_test)
export(ttest)
export(var_test)
export(var_test_shiny)
importFrom(Rcpp,sourceCpp)
importFrom(dplyr,"%>%")
importFrom(dplyr,funs)
importFrom(dplyr,group_by)
importFrom(dplyr,group_by_)
importFrom(dplyr,mutate)
importFrom(dplyr,pull)
importFrom(dplyr,select)
importFrom(dplyr,select_)
importFrom(dplyr,summarise_all)
importFrom(magrittr,"%>%")
importFrom(magrittr,subtract)
@@ -93,6 +88,7 @@ importFrom(rlang,"!!")
importFrom(rlang,enquo)
importFrom(rlang,quo_is_null)
importFrom(rlang,quos)
importFrom(rlang,sym)
importFrom(shiny,runApp)
importFrom(stats,anova)
importFrom(stats,as.formula)
@@ -116,4 +112,4 @@ importFrom(stats,var)
importFrom(tibble,as_data_frame)
importFrom(tibble,tibble)
importFrom(tidyr,gather)
useDynLib(inferr, .registration = TRUE)
useDynLib(inferr)
4 changes: 2 additions & 2 deletions R/RcppExports.R
Original file line number Diff line number Diff line change
@@ -2,10 +2,10 @@
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393

nsignC <- function(x) {
.Call(`_inferr_nsignC`, x)
.Call('_inferr_nsignC', PACKAGE = 'inferr', x)
}

gvar <- function(ln, ly) {
.Call(`_inferr_gvar`, ln, ly)
.Call('_inferr_gvar', PACKAGE = 'inferr', ln, ly)
}

89 changes: 0 additions & 89 deletions R/infer-two-samp-var-test-shiny.R

This file was deleted.

14 changes: 8 additions & 6 deletions R/infer-utils.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#' @importFrom dplyr group_by group_by_ select_ summarise_all funs mutate
#' @importFrom dplyr group_by summarise_all funs mutate
#' @importFrom magrittr %>% use_series
#' @importFrom stats var sd
#' @importFrom tibble tibble as_data_frame
@@ -741,10 +741,12 @@ indpool <- function(n1, n2, mean_diff, se_dif) {
return(out)
}

#' @importFrom rlang sym
tibble_stats <- function(data, x, y) {

by_factor <- data %>%
group_by_(y) %>%
select_(y, x) %>%
group_by(!! sym(y)) %>%
select(!! sym(y), !! sym(x)) %>%
summarise_all(funs(length, mean, var, sd)) %>%
as_data_frame() %>%
mutate(
@@ -755,7 +757,7 @@ tibble_stats <- function(data, x, y) {

tbl_stats <- function(data, y) {
avg <- data %>%
select_(y) %>%
select(y) %>%
summarise_all(funs(length, mean, sd)) %>%
as_data_frame() %>%
mutate(
@@ -837,8 +839,8 @@ paired_data <- function(x, y) {
#' @importFrom dplyr select
paired_stats <- function(data, key, value) {
d <- data %>%
group_by_(key) %>%
select_(value, key) %>%
group_by(key) %>%
select(value, key) %>%
summarise_all(funs(length, mean, sd)) %>%
as_data_frame() %>%
mutate(
66 changes: 0 additions & 66 deletions man/var_test_shiny.Rd

This file was deleted.

23 changes: 0 additions & 23 deletions tests/testthat/test-two-samp-var-test-shiny.R

This file was deleted.