A quick guide on how to do a fixup, inserting changes into a "deep" commit
read moreVectorizing functions in R is easy
Imagine you have a function that only takes one argument, but you would really like to work on a vector of values. A short example on how function
Vectorize()
can accomplish this. Let's say we have adata.frame
read morexy <- data.frame(sample = c("C_pre_sample1", "C_post_sample1 …
How I implemented googleSignIn in R (shiny) and lived
Known user identity when building shiny apps can sometimes come really handy. While you can implement your own user login, for instance using cookies, you can also use some of the services which authenticate a user for you, such as Google. This way, you don't have to handle cookies or …
read moreHow to authenticate using OAuth2 through R
If you need to have authentication of users in your application, you could invent the proverbial warm water by implementing register, login, logout and other features. Or, you could outsource part of that functionality to well established establishments such as Google, Facebook, Github and other. In addition to knowing the …
read moreHow to combine plots and table made with ggplot (or grid graphics) in R