R with White Dwarf A distant star coding in R

Map any region in the world with R - Part IV: Object Oriented Programming in R with S3

You can find all the posts on this series under the tag maps-app (including the Spanish versions). You can also find the current state of the project under my GitHub repo mapic. Scope of this post We are creating maps of data showing changes over a span of time for different countries and pointing at all kinds of cities. That basically means that we need to map any region of the world with R.

Adding a website next to your Shiny server

I have been off from the blog lately due to a big load of personal projects. Just lately I got a few days off and found time to work on my personal website, to be ready soon. That made me get more into Nginx configuration, where I consider myself a total rookie. However, I was mainly adding a few domains that are intended for different purposes. That is incredibly easy to do using Nginx even with minimal knowledge, and that's what I want to show here.

Map any region in the world with R - Part III: Programming with ggplot2

You can find all the posts on this series under the tag maps-app (including the Spanish versions). You can also find the current state of the project under my GitHub repo mapic. Scope of this post We are creating maps of data showing changes over a span of time for different countries and pointing at all kinds of cities. That basically means that we need to map any region of the world with R.

Webscrap and iteration in R

About this post We are creating maps of data showing changes over a span of time for different countries and pointing at all kinds of cities. That basically means that we need to map any region of the world with R. Today there are all kinds of packages and techniques to do that. I will share the strategy I used with ggplot2 and maps packages, using support of Open Street Map to obtain the coordinates of cities and finally making it interactive with shiny.

Reference: Dockerizing shinny apps

Andrew Couch has a nice video about deploying a shiny app using docker. He goes from the very basics, that asume no knowledge of docker whatsoever, which is the position of many R users like myself. I’ve been working in some shiny app lately, and although I’ve never needed docker so far, I decided to start learning it because I can already foresee the future when it won’t be the case.

Deploy your own Shiny app server with debian

A few weeks ago I opened an account on Digital Ocean to start my own cloud server. Not long after that I took a workshop on Shiny and, although it was too technical with nothing new for me, I learn a couple of things unrelated to R. The speaker was talking about the importance of making your portfolio showing your apps instead of sharing the link to your code as most of us do.

Using Emacs for R

Easy Emacs To start using R, or almost anything else in Emacs you basically need to know 3 things: 1) How to move in Emacs, meaning understanding what is what and learning a few key commands; 2) What is the configuration file and how to use it and 3) How to use packages to extend Emacs. In the first half of this post I will try to show how easy it is to cover these 3 points even for people who are inexperienced in programming.

Map any region in the world with R - Part II: Obtaining the coordinates

You can find all the posts on this series under the tag maps-app (including the Spanish versions). You can also find the current state of the project under my GitHub repo mapic. Scope of this post This is the second part of the series to create a map of any region of the world with R. We are creating maps of data showing changes over a span of time for different countries and pointing at all kinds of cities.

Efficiency comparison of dplyr and tidyr functions vs base R

A couple of years ago I was interested in the efficiency of R when it comes to time processing and management of memory and I read a few blog posts about this topic, particularly pointing at the fact that R hasn’t been designed to be a very efficient language, especially when it comes to big data processing, and this could be its doom at some point in the future. By that time I also read a great article or blog post regarding the complexity of using the tidyverse family of packages in R, especially with the task of teaching R to beginners.

Map any region in the world with R - Part I: The basic map

You can find all the posts on this series under the tag maps-app. You can also find the current state of the project under my GitHub repo mapic (including the Spanish versions). Scope of this post When you prepare for a job interview one of the questions they always tell you to prepare is “What are you most proud of?”. Personally I’ve never been asked that question in a job interview but it kept me thinking.