Useful Resources
A list of resources I often use and recommend

Books

Books which are freely available from the author are highlighted.

R for Data Science - Hadley Wickham & Garret Grolemund (Free)

A good allrounder book on using R for data science. It comes with lots of code snippits for you to try our yourself.

Python Data Science Handbook - Jake VanderPlas (Free)

I’ve not read it yet myself. I heard it is a very comprehensive resource for data science in python.

An Introduction to Statistical Learning - Gareth James, Daniela Witten, Trevor Hastie and Robert Tibshirani (Free from Gareth James's academic website)

Statistical Analysis with R for Dummies - Joseph Schmuller

I like this book for the step by step calculations of core statistics such as R-squared and also has detailed walkthroughs of hypothesis testing.

Hands-On Programming with R - Garrett Grolemund (Free)

This book takes you from the absolute beginning with zero coding knowledge. A great place to start learning R. It is a good overview from a general programmng perspective. I recommend chapters 1-7. The later chapters seem more understandable once you have some hands-on experiene with data science. Appendix E also provides some good debugging tips.

Advanced R - Hadley Wickham (Free)

This book is on my reading list. I know colleagues who refer to it often for more advanced topics.

This book is an excellent resource for understanding the statistical fundamentals of the most commonly used machine learning algorithms. I consider it a must read. It also comes with lab exercises in R but the book is great based on its mathematical and statistic introductions alone.

Python Machine Learning - Sebastian Raschka

This book has some good illustrations on how scikit learn works and might be helpful generally for people wanting to use sklearn for machine learning. It is a good book for people who already know machine learning and want to know how to implement their favourite algorithms in python but it also introduces concepts in machine learning too.

Fluent Python - Luciano Ramalho

If you are like me and want to understand the inner workings of Python, this is a good read. This book helped me learn more about base python. I didn’t read it cover to cover but pick it up, read a chapter and you will learn something new to improve your code.

Weapons of Math Destruction - Cathy O’Neil

Because we are not doing data science in an isolated bubble. Our decisions have consequenses and this book is a great start to being aware of them.

Fundamentals of Data Visualization - Claus O. Wilke (Free)

I’ve not fully explored this yet but it seems like a great resource on how to ensure your data visualisations are as communicative as possible and tell the story you want to tell.

R Graphics Cookbook - Winston Chang (Free)

This book should be your first reference when trying to work out how to do certain things using ggplot2.

The Linux Command Line - William Shotts (Free)

Great reference and introduction to Linux commands. I consider linux command line basics as essential for any programmer.

Documentation (API References)

Whenever I am coding I have mutliple documentation pages open. It’s not possible to remember how every single function is used. I’m a big fan of documentation so clicking through the “related functions” lets me discover new functions which are sometimes even more suited to what I want to do.

RDocumentation

The content of the help section of RStudio but a much better use interface. Allows you to have multiple tabs open relating to different functions/packages.

Pandas

Pandas is used for handling data structured in dataframes with column names. This documentation is best viewed using the search function.

Numpy

I see Numpy as the stripped down version of pandas. It is highly optimised for vector and matrix calculations. In my excperience, repeated calculations on a numpy array are much quicker than the equivalent calculations on a pandas DataFrame.

Scipy

Scipy is like Numpy with a statistical boost. It is a collection of more statistics-focussed functions and works well with numpy and Pandas. It also forms the basis of many scikit learn methods.

scikit learn

scikit-learn is a collection of machine learning algorithms and preprocessors for use in python. It is primarily based on numpy arrays and scipy but also handles pandas DataFrames well too.

pyspark

Although the search function is not the best, this is also essential whenever manipulating datasets using spark.

Plotly (for Python) Open Source Guide

This is an overall user guide for plotly visualisations. I find it really useful for finding out how to define the smaller specifics of visualisations. If you are a fan of visualisation like I am, this is a great set of packages to get familiar with.

Plotly Express Guide (Python)

This documenations is for Plotly Express, the high-level interface/API for creating interactive JS-based visualisations.

Plotly (for Python) Figure Reference

This is my go-to for all (detailed) things plotly. It is the complete API guide for Figures. If you are already familiar with plotly Figures and want to find out all there is to know, reading this will give you the answers. I strongly recommend using the “magic underscores” when using plotly rather than nested dictionaries.

caret

In particular sections 6 and 7 list the available models. Sections 3, 4 & 5 also describe some key principles of machine learning and how you can implement them using caret.

Regular Expressions (regex) Tester

A great tool to check if a pattern successfully recognises characters in a given input. Helps to understand unexpected outputs of code.

colorbrewer2

A colour-selection tool developed by Prof. Cynthia Brewer. I use this tool to select the best colours for my visualisations. I particularly like the “colorblind safe” option. This tool works great in combination with some of the principles of O. Wilke’s book (see below)

w3schools

I use this to brush up on my SQL and HTML knowledge. The instructions are clear and the site is easy to navigate.

MDN CSS Reference

A comprehensive API reference to CSS including interactive examples.

stackoverflow

This is a question and answer site about a range of coding topics. It’s not a site I would ever go on to search for specific questions. But when I google something and see one of the results is a page in stackoverflow there is a good chance it will help my answer my question.

Shiny Tutorials (RStudio)

A collection of video and written tutorials great for helping you develop shiny web applications.

Cheatsheets

R Cheatsheets

A great collection of around 30 cheatsheets for different tidyverse and non-tidyverse packages in R.

Scikit-learn

An overview of the key functions to use when doing machine learning in python using scikit-learn.

pandas Cheatsheet

Complementary to the pandas documentation. This gives an overview of commonly used functions.

Git Cheatsheet

I don’t have a recommendation for a specific cheatsheet but I recommend finding one you like and saving it somewhere useful. Everybody needs to look up anything more compley rthan the basic commands.

Machine Learning Flashcards - Chris Albon

A great resource to test your machine learning knowledge every now and then.

Podcasts

General

Women In Technology Spotlight

This video series is hosted by Ronke Babajide, Dr.rer.nat. It features women working in IT over a spectrum of different roles.

Austrian AI Podcast

Hosted by Manuel Pasieka, this podcast talks about AI-related topics and how they are done in Austria.

Freakonomics Radio

If you’re curious about the role of data in the real world, this podcast is for you.

Data Visualisation

Explore Explain

Storytelling with Data

Data Stories

Machine Learning

Linear Digressions

This podcast is an intermediate level podcast about different machine learning related mathmatical concepts and algorithms. Presented by one expert, Katie Malone, and one non-expert, Ben (couldn’t find his SM details!).

Social

Twitter

Vienna Data Science Group (vdsg)

I attended hackathon run by VDSG in which I worked on projects from non-profit organisations to help them get the most out of their data. I have also worked with this group on other data4good projects.

R-Ladies Vienna

Events ranging from beginner to advanced on different R topics.

Women&&Code

I’ve not been to this series of meetups but I’ve heard great things about it.

I like to stay active in the twitter-sphere to keep track of the latest data science goings-on. You can hear directly from any data scientists/programmers/visualisation experts you admire. Recommended hashtags to search for/accounts to follow:


*****
© 2023 Jillian Augustine