Peter Solymos

Results 18 comments of Peter Solymos

Hi @Kodiologist I am not sure what the function does that you reference here, but if you wrap those in an anonymous function that returns `NULL` (which is what `invisible()`...

I've just spent some time on exploring github pages + jekyll + bootstrap/bootswatch/jQuery + MathJax + highlighter + remark.js and the results is this: http://datacloning.org/ Feel free to fork it,...

You can change the look & feel in the `_config.yml` by changing these lines: ``` # Bootswatch theme theme: flatly # fancy fonts on/off fancyfonts: true # navbar style: inverse,...

It kind of fall into my lap because of a website templating project (http://species.abmi.ca/) where the premise was: we want content for 2000 species up the web and don't care...

It fell into my lap because of a website templating project (http://species.abmi.ca/) where the premise was: we want content for 2000 species up the web and don't care about design....

The `diversity()` function in vegan calculates the empirical probability of randomly choosing 2 individuals from the sample being different species: `1-sum(p^2)` where `p=x/sum(x)`. ```r > library(vegan) > x1=c(0,1,2,5) > x2=c(2,2,2,2)...

Thank you @krlmlr this looks like a nice way of tibblifying the responses. Let me check your additions and try to do the same for a few more endpoints to...

The date handling can be done as `lcol_dat("dob", .parser = ~ cu_date_from(.x))` [not tested, just inferred from docs]. Do you think the inverse-tibblify could work for POST requests? Or should...