Frederik Ziebell

Results 20 issues of Frederik Ziebell

This works as expected: ``` tibble(i=1:3) %>% ggplot(aes(x=0, y=0)) + geom_text(aes(label=i)) + transition_time(i) ``` ![test](https://user-images.githubusercontent.com/28304028/120381607-f7491b80-c322-11eb-89e2-93f74decc5eb.gif) however, this fails: ``` tibble(i=1:3) %>% ggplot(aes(x=0, y=0)) + geom_text(aes(label=paste0("value: ", i))) + transition_time(i) ```...

question

This ``` set.seed(1) tibble( x = runif(1e5,max=10), y = rnorm(1e5, sd=1e-4) ) %>% ggplot(aes(x,y)) + ggpointdensity::geom_pointdensity() ``` results in: Does ggpointdensity compute the neighborhood-radius relative to the dynamic range of...

`RunHarmony()` does not have a default random seed defined, e.g. consinder ``` library("Seurat") pbmc_test

For binary data, it would be helpful to support the binary metric as implemented in `dist(metric="binary")`. Currently, the only way is to pass the `dist` object directly, which is very...

enhancement

I have been working on creating a Docker image that allows to run MOFA2 in GPU mode. Here's the modified Dockerfile that can be used to create the image ```...

The documentation of `plot_factors()` says _a vector of length two with the factors to plot. Factors can be specified either as a characters_. I'd suggest to change it to _a...

Sometimes it's nice to have a 'log'-transformation that also works for negative values to have points more evenly spread-out: ``` ihs

feature

When viewing the online version of the book from a mobile device like a tablet, the list of contents is relatively wide and cannot be hidden, see [here](http://i.imgur.com/qQeXV2D.jpg).