PharmCat

Results 38 issues of PharmCat

Is it possible to change metadata in existing sav (SPSS) files? If possible can you kindly provide example for library usage?

SPSS

I try to use GLM for standart bioequivalence testing for crossover design to get ANOVA table (protocol defined test) using `ftest` and have: ``` ArgumentError: F test is only valid...

Hello! I try to make code for bioequivalence studies and validate it with reference datasets (https://www.ncbi.nlm.nih.gov/pubmed/25212768). I use dataset: https://static-content.springer.com/esm/art%3A10.1208%2Fs12248-014-9661-0/MediaObjects/12248_2014_9661_MOESM1_ESM.txt for it. This data used for assessing the robustness of...

is it possible to create dynamic content like this in *.jl script: ``` for i in 1:10 #' Some content # some code end ```

enhancement

Implementation for Superiority/Non-Inferiority, Equivalence, Equality interval hypothesis for proportion difference, odd ratio, risk ratio, issue #217. Need review or/and validation. Structures are discussible.

How Superiority/Non-Inferiority, Equivalence, Equality hypothesis for proportion difference, OR, RR can be realized?

Why matrix field of struct ContrastsMatrix is Matrix{Float64}? For many cases fo DummyCoding() or FullDummyCoding() this can be BitMatrix or SparseMatrixCSC{Bool, Int64}. For big datasets I try to make something...

Is it possible to add to API some like this: ``` function term_n_to_modelmatrix_col(mm::ModelMatrix, i::Int) inds = findall(x -> x==i, mm.assign) end ``` Generally I try to make function that can...

Method for human to make formula with FunctionTerm in expression. I try to make dynamic formula like this: ``` module XXX using StatsModels global i = Symbol() for v in...

is it possible For model (x ~ a + b + c) I want to get contrast L vector for each categorical factor.