Patrick Toche
Patrick Toche
Thanks for the feedback. Here's what I get: ~ qlmanage -m|grep QLS public.data -> /Library/QuickLook/QLStephen.qlgenerator (1.5.1) public.content -> /Library/QuickLook/QLStephen.qlgenerator (1.5.1) ~ codesign -dvvvv /Library/QuickLook/QLStephen.qlgenerator/ Executable=/Library/QuickLook/QLStephen.qlgenerator/Contents/MacOS/QLStephen Identifier=com.whomwah.quicklookstephen Format=bundle with Mach-O thin...
Workaround of sorts: ``` r library(ggplot2) ggplot(mtcars, aes(hp, disp, color = mpg, shape = factor(cyl))) + geom_point(size = 2) + theme(legend.position = "top") + guides(shape = guide_legend(label.position = "bottom", title.position...
The reasoning for having clippings saved to Desktop was that screenshots get saved there. However, one doesn't, I think, produce hundreds of screenshots every day... Going back to older issues,...
See: https://github.com/TermiT/Flycut/issues/154#issuecomment-645122440
I'm installing tex 2021 on MacOS and indeed I can confirm that MacTeX is the most common way to install it. http://tug.org/mactex/mactex-download.html It's a 4.4GB download so I wouldn't be...
I wonder how much the other tools are needed for a minimal usage. Instructions in the manual are clear, but there are a lot of steps: `pdf2svg`: [https://github.com/dawbarton/pdf2svg](https://github.com/dawbarton/pdf2svg) `poppler`: [https://poppler.freedesktop.org/](https://poppler.freedesktop.org/)...
A shot in the dark. At the last step, replace ``as.integer`` with something like: integerate .Machine$integer.max, round(x), as.integer(x)) .Machine$integer.max ## [1] 2147483647 integerate(2147483647) ## [1] 2147483647 integerate(2147483648) ## [1] 2147483648...
**Example 1:** **Objective:** reveal a single point sequentially: reveal ``(x_{i}, y_{i})`` + hide ``(x_{i-1}, y_{i-1})`` ``` r library(reprex) # Packages + Data library(ggplot2) library(gganimate) library(tibble) df Enabled features: cairo, fontconfig,...
Following on from the previous examples, below are attempts to reveal points sequentially while keeping them on the graph. Thanks Thomas for showing me how to achieve this objective. **Example...
The default ``nframes`` is 100. This seems like an excessive number of frames for an animation that would be expected to have 21 frames. I wonder if the gifs above...