Search Archives
Search tips
from:Name
Search by author name, e.g. from:Duncan Murdoch
"exact phrase"
Match an exact phrase
word1 word2
Match messages containing both words
Date range
Use the date pickers to filter results to a time period
Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.
Hey, You should probably check out the =forecast= package which is pretty close to a default solution as you'll find. https://cran.r-project.org/web/packages/forecast/ If you google around this you should find some useful stuff...
You might find the patchwork library helpful (plot_layout function) https://github.com/thomasp85/patchwork I'm not sure if it's on CRAN but you can devtools::github_install it. Cheers, Alex On Wed, May 30, 2018 at 6...
The stringr package might beof interest to you (and I think magrittr makes it more readable). > library(stringr) > library(magrittr) > '10110111' %>% str_split('') %>% unlist %>% str_flatten('.') [1] "1.0.1.1.0.1.1.1" Note that the unlist is...
While we are on the topic, if you wanted to go the other way (open help in terminal without a whole R session) you can do R --no-init-file --slave -e "?sd" I suspect this does start an R...
Hey, Nice question, I'm interested to see what others have to say on this. I'd like to point out a couple of algorithmic points: - If you are using regularisation the scaling /will/ lead to different results. - If you...
Sourcing scripts is a bit hacky but it is a quick way to get a job done. If you want to take your source-ing to the next level you might want to look up how to use the "local...
Can't find what you're looking for? Try searching with Google .