For this tutorial we will use a dataset ofered by the Integrated Postsecundary Education Data System (IPEDS). It contains information about colleges and universities in the US.
For each institution, it has a lot of information. For example: number of students registered, higher degree offered, number of international students, geographical location, number of graduates. For more information, please visit: https://nces.ed.gov/training/datauser/IPEDS_01.html
We obtained a short version of the data from a Kaggle Project (https://www.kaggle.com/sumithbhongale/american-university-data-ipeds-dataset/version/1)
Import the Excel file "IPEDS_data.xlsx". Name the dataset "IPEDS_data".
First we will create a bar chart with the number of Universities per State. For this we will show show how many of institution (each institution is a row) belong to each state. For this:
While the visualization is correct, we would want to improve its apperance. We would want to add a title, axis labels and show the value on each bar.
Click on the gear beside the Type option 
Apply and close
Now lets change color.
We will now create a chart that presents the sector of the institutions (Private or Public) per Geographical Region.
By default, Exploratory create a Stacked Bar Chart. If we want to have the different sectors side by side:

Now, on your own, add a Title, labes for the X and Y axis, show values for the columns and change the color Palette.
We now would want to see how the tuition values have increased in New York University. To do this we will create a copy of the data to do some filtering and wrangling.
Beacuse the different tutions in 2010, 2011, 2012 and 2013 are different columns, we need to gather them into a single column. To do this we convert from wide to long.
Now we will change the value in the "Tuition-Year" column to remove inneceary text.
Now we have the data in the format that we needed for creating our chart:
To make the graph a little more readable, lets add points in the line:
Add title, labels and colors to finish the chart.
Now we will chart how the the tuiton has changed in different regions.
Now we will summarize according to the geographical region
With the dataset ready, we proceed to create the graph
Now that you know how, improve the chart adding a circle ot the line to make it more legible, add a title, labels and select another color palette.
Now we will see how many of the institutions offer research doctoral degrees.
Now, you can select between Pie or Ring (purely asthetic):
If we would want to see the percentages per Geographic region:
You can experiment with the colors and other settings that you already know.
Now we will see in which urban or rural environment these institutions are located.
Because there are some categories that are unfrequent, we can create a category "Other" to group them.
Imagine that we want to know the distribution of the size of the institutions (number of students enrolled) according if they are public or private universities.
We can see that public Universities tend to have more students that private universities. Does this trend is the same depending on the maximum degree they provide? To answer this question, we need to first convert "Highest degree offered" into a factor an order it in increasing level of degree.
The order should be:
fct_relevel(`Highest degree offered`, "Bachelor's degree","Master's degree","Doctor's degree - other","Doctor's degree - professional practice","Doctor's degree - research/scholarship and professional practice","Doctor's degree - research/scholarship")
You can decide if include or exlude outliers (those that are beyond the 1.5 Interquartile Range - IQR)
Plays with colors and add the title and labels to the graph.
This are another version of the boxplots. Let's recreate the previous chart.
We can see that additionally to the boxplot, we can see the density distribution of the values. To make it clearer we can add the datapoints.
Given that we have the name of the state on which each institution is, we can map aggregates by state in an map. Lets create a map that show the number of institutions per state.
Now we can color them according to any variable, for example, let's color them by the sum of all the students enrolled in that state.
Instead of Circles, we can color each state.
We will now present a map of the institutions colored accordingly to they sector (public or private).
Now we will want to visualize each institution by their geographic coordinates
Let's change the type of map and try to find NYU
To see it better, change:
Now, let's group institutions by their geographic region
Let's find the most common settings of different types of universities. For this we will use a heatmap:
To make it clearer, let's add the value on the plot:
Change the color to make it more salient:
If we want to compare two individuals or groups based on three to seven dimensions, you can use radar graphs.
Create a note that show all the types of visualizations that you did with a brief explanation of for what do you think they could be useful (the visualization, not the actual data depicted in the chart)
Share that note in Brightspace