Daniel Gromer
Daniel Gromer
To specify a bit: - If "get" is the first item of a run, it can be used with an empty "label" column. - If it appears somewhere within a...
Here's a run that returns `NA`: https://get-url-parameter-test-label.formr.org/ And here's one that returns `""`: https://get-url-parameter-test-nolabel.formr.org/ One note: either the problem turned around or I described it the wrong way around the...
Having `data` as the first argument seems more intuitive to me, since then all following arguments clearly refer to this data frame. Right now, the first two arguments are somewhat...
After searching the Google group again, I found that this was already discussed and a solution has been proposed: https://groups.google.com/g/formr/c/ukw90XEfcpE/m/Ww3zsfeoAAAJ?pli=1 Edit: And a solution for more than two empty labels:...
In your example, `.progress` is passed to `map()` via `...`. Since you use `.depth = 1`, it's not distinguishable whether the progress bar is from `map_depth()` or from `map()`. If...
Will take a look into that when I have some spare time.
Check [ec5a2d7](https://github.com/dgromer/apa/commit/ec5a2d744ec1e9b5782ad0f1091d18adb9f95c3b) ```r iris |> group_by(Species) |> summarize(cohen_d = cohens_d(Sepal.Length), hedges_g = cohens_d(Sepal.Length, corr = "hedges_g"), check = cohen_d == hedges_g) ``` now returns ``` # A tibble: 3 ×...
CI for Cohen's d is was implemented in 5cd789ae9de434e699ffb3c1cc099bbf90fc69a5 and 281aed7e4437eb777fa02b1dedab567f6fb4d6a5 using `MBESS::conf.limits.nct()` (released in apa 0.3.3 on CRAN). Example: ```r library(tidyverse) library(apa) t_test(extra ~ group, data = sleep, var.equal...
@mutlusun @crsh Sounds like a good idea, because right now, similar functionality (formatting in APA style) is scattered around in multiple packages. When it comes to supporting different style guides...
@mutlusun I would like to keep the `apa` repository and corresponding package on CRAN as it is for now (and implement some stuff that I need). But we could open...