First meetup of the Trento R User Group, North Italy

[This article was first published on Something must break, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Our brand-new R User Group has met at Simposio Bar in Trento, Italy! The meetup started at 7pm and everything went smooth and fine.

With Daniele and Emanuele, we  founded the group on the 9th of May and our community grew quickly: now it counts 37 members.

I  met Leonardo, Francesca, Fulvio, Daniele, Emanuele, Giambattista, Giacomo, Alessio, Vittorio and some of them for the very first time. We are an interactive and  etherogeneous group of 5 engineers, 2 agronomists, 1 physic, 1 bioinformatician and (yeah!) 1 statistician!

We talked mainly about the organization of the User Group: we found a few candidate places for our next meetups (with a beamer and the free network connection) and we decided to schedule a meetup every month (more or less).

Then we tried to figure out how to get in touch with the other existing Free and Open Source Software groups in our area to join the efforts in promoting FOSS and R.

Then we moved on some ideas for some tutorials for sharing our knowledge with each other. The hot topics will be R vs Python, how to organize an R script and publish it as a package, and a crash course on Shiny.

A seminal idea for a R package for the exploitation of the local Open Data has been proposed by Giacomo and I am willing to help him. I’ll write about it in the next posts.


Trento R User Group: the first meetup in its full glory. 


If you wonder where Trento is placed on this planet, let’s put R at work! Here’s the code:

library(ggmap) 
 
simposioBar = c(11.1193,46.0680)
 
map = get_map(location= simposioBar, source= "stamen", maptype= "watercolor",crop=FALSE)
 
g = ggmap(map) + theme_void() + geom_point(data= data.frame(lon= simposioBar[1], lat= simposioBar[2]), size= 3, shape= 21, fill= "darkred", colour= "white" )) 
 

So, if you guessed right, we’re just in the middle of the Alps! If you want more details, you can just play around the get_map() command!

location of the Trento R User group (made with ggmap)

To leave a comment for the author, please follow the link and comment on their blog: Something must break.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)