Ggplot R plot not showing up in RStudio

When working with RStudio you define a plot (either with R-base or ggplot2), but the chart doesn’t show up in the Plots tab in RStudio. Most probably, you can solve this issue by explicitly printing your plot: Display R plot if not showing up in RStudio Follow the steps below to print your R-base or … Read more

Solve the there is no package called ggplot2 error in R

To fix the R no package called ggplot2 error in RStudio or Jupyter, proceed as following: Read on for a more detailed explanation on how to reproduce and fix the error. Reproducing the no package ggplot error In order to reproduce the error, proceed as following: Here is a screenshot take from RStudio on Windows … Read more

How to set Teams as your default Outlook meeting type?

Here’s a question from our reader Bobbi: When working for my previous employer, we had an hybrid work setup which meant that some of our group meetings were conducted in the office and some offline. I just switch to a new, remote only employer who uses Outlook Calendar and Microsoft Teams. The thing is that … Read more

How to fix the there is no package called ‘tidyverse’ error in R?

Today we will learn how to fix error messages that you could find in your R development tool such as RStudio, Jupyter and others, when trying to invoke the tidyverse library without it being installed. Understanding the error Error in library(tidyverse) : there is no package called ‘tidyverse’ Here’s a screenshot from the RStudio Console … Read more

How to fill a pandas column with a list?

In this tutorial we will learn how to append the contents of a Python list to a pandas DataFrame. We will start by creating a simple DataFrame and a Python list. You can use both to follow along with this example. Assign a Python list to a DataFrame From my experience, the easiest ways to … Read more

How to plot multiple pandas time series in a chart?

In today’s data visualization we will learn how to plot multiple time series on the same chart with pandas. Time series is basically information that is time dependent such as prices, inventory, sales etc’. In our example, we would like to plot revenue, expenses and ultimately profit for a fictitious business. We’ll use a line … Read more

How to pin a Teams folder for Quick access in File Explorer?

Here’s another reader question we just received: I work for a contracting project management firm and use Microsoft Teams on a daily basis on my Windows 10 and 11 computers. I have a folder located in the Microsoft Teams channel that i manage that contains a couple of spreadsheets which contains supplier information which i … Read more