Giter Club home page Giter Club logo

Comments (2)

LittleBeannie avatar LittleBeannie commented on June 26, 2024

Test plan of new_outdata():

  • It outputs an error when metalite:::new_outdata(1)
  • The output of the following code is an "outdata
meta <- meta_dummy()
x <- list(meta = meta_dummy(), population = "apat", observation = "wk12", parameter = "rel", n = meta$data_population %>% group_by(TRTA) %>% summarize(n = n()), group = "TRTA", reference_group = 1, order = 1:3)
new_outdata(x)

from metalite.

LittleBeannie avatar LittleBeannie commented on June 26, 2024

Test plan of validate_outdata()

  • It outputs an error
Error in `FUN()`:
! variable 'reference_group' must be a numeric value

when run

meta <- meta_dummy()
validate_outdata(outdata(meta = meta_dummy(), population = "apat", observation = "wk12", parameter = "rel", n = meta$data_population %>% group_by(TRTA) %>% summarize(n = n()), group = "TRTA", reference_group = "Placebo", order = 1:3))
  • It outputs an error
Error in `FUN()`:
! variable 'order' must be a numeric value

when run

meta <- meta_dummy()
validate_outdata(outdata(meta = meta_dummy(), population = "apat", observation = "wk12", parameter = "rel", n = meta$data_population %>% group_by(TRTA) %>% summarize(n = n()), group = "TRTA", reference_group = 1, order = c("Placebo", "Xanomeline Low Dose", "Xanomeline High Dose")))
  • It outputs an error
Error in `FUN()`:
! variable 'population' must be a character value

when run

meta <- meta_dummy()
validate_outdata(outdata(meta = meta_dummy(), population = 1, observation = "wk12", parameter = "rel", n = meta$data_population %>% group_by(TRTA) %>% summarize(n = n()), group = "TRTA", reference_group = 1, order = 1:3))
  • It outputs an error
Error in `FUN()`:
! variable 'reference_group' must be length 1

when run

meta <- meta_dummy()
validate_outdata(outdata(meta = meta_dummy(), population = "apat", observation = "wk12", parameter = "rel", n = meta$data_population %>% group_by(TRTA) %>% summarize(n = n()), group = "TRTA", reference_group = 1:2, order = 1:3))
  • It outputs an error
Error in `FUN()`:
! variable 'population' must be length 1

when run

meta <- meta_dummy()
validate_outdata(outdata(meta = meta_dummy(), population = c("apat", "ITT"), observation = "wk12", parameter = "rel", n = meta$data_population %>% group_by(TRTA) %>% summarize(n = n()), group = "TRTA", reference_group = 1, order = 1:3))

from metalite.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.