Mikko Marttila

Results 17 issues of Mikko Marttila

In the [Purely Relative section](https://github.com/getify/Functional-Light-JS/blob/master/manuscript/ch5.md#purely-relative) of Chapter 5 you define a function called `median` to use in an example, but it doesn't actually find the median: it's just returning the...

second edition

It would be useful to have an easy way to reuse metadata included in the YAML front matter of an RMarkdown file for generating output file names when rendering. This...

feature
next

I’m trying to paginate a `facet_wrap()` plot with `dir = "v"`, such as this: ``` r library(ggplot2) library(ggforce) d Warning in max(layout$COL): no non-missing arguments to max; returning -Inf #>...

Inspired by [this StackOverflow question](https://stackoverflow.com/q/71090609/45506959), I was wondering if it might be useful to have a function to create functional sequences? AFAIK, the only way to create a `fseq` is...

feature

On Windows, I get: ``` r fs::path_real("~/R/dev") #> C:/Users/mikko/AppData/Local/Temp/Rtmpa8cpqi/reprex37584fd22289/Users/mikko/R/dev ``` I would expect to get: ``` r file.path(path.expand("~"), "R", "dev") #> [1] "C:/Users/mikko/Documents/R/dev" ``` Created on 2019-09-28 by the [reprex...

bug

A continuation (of sorts) of #971. #977 introduced updating filter properties other than just limits to `updateFilters()` by also supporting disabled status. One remaining property to manage is the internal...

It was quite confusing until I figured out that this section in `?load_all` refers to `pkgload::load_all()`: > is_loading() returns TRUE when it is called while load_all() is running. This may...

I was trying to follow the examples in Chapter 23 and had some strange results. Installing `countup.js` instead of `countup` fixed them for me.

Sometimes I need to match an argument against a long (100+) list of valid values. Currently the `arg_match()` error message will be overwhelmed by listing out all possible valid values....