- Installing Tableau and Creating Your First Visualization
- Using Joins in Tableau
- Creating Visualizations
- Using Calculated Fields and Bins
- Summary
- Tableau Public is a free version of Tableau with limited features but ideal for learning and portfolio building.
- Steps to install:
- Download from Tableau Public's official website: https://www.tableau.com/products/public
- Provide an email and install the application.
- Open Tableau Public and navigate the interface.
- Use the Video Game Sales dataset from Kaggle for practice: https://www.kaggle.com/datasets/gregorut/videogamesales
- Load the dataset by selecting Text File in Tableau.
- Tableau automatically categorizes data types (numeric, text, date).
- Line Chart:
- Import the video game sales CSV into Tableau Public and open a new worksheet.
- Drag the
Global Sales
measure onto the Rows shelf and theYear
dimension onto the Columns shelf to create a basic line graph. - Add the
Genre
dimension to the Marks card under Color to visually differentiate each game genre. - Include labels for min and max values along the lines to provide additional context.
- Genre Sales Chart:
- Open another worksheet to focus on overall sales by game genre.
- Set
Genre
as your primary dimension andGlobal Sales
as the measure. - Use the sorting feature to organize the data and assign distinct colors to each genre for clarity.
- Finally, combine these worksheets into a dashboard for a comprehensive view.
Download excel file: https://github.com/AlexTheAnalyst/PortfolioProjects/blob/main/Tableau%20Joins%20File.xlsx
- Tableau uses Relationships by default, which dynamically infer joins based on data.
- Joins allow more control over how tables merge.
- Inner Join: Includes only matching records between tables.
- Left Join: Includes all records from the left table and matches from the right.
- Right Join: Includes all records from the right table and matches from the left.
- Full Outer Join: Includes all records from both tables.
Download this dataset: https://www.kaggle.com/datasets/starbucks/store-locations
-
Bar and Line Graphs: Combine bars and lines for comparative sales analysis.
-
Maps: Use geographic data (longitude/latitude) to create density or filled maps.
-
Scatter Plots: Compare two numeric fields to analyze correlations.
- Bins group numeric data into defined ranges (e.g., 1990–1994, 1995–1999).
- To create bins, right-click a numeric field (such as
Year
) and select Create → Bins, then choose a bin size (e.g., 5). - Bins turn continuous numeric values into categories, making it easier to compare grouped data (for instance, total sales per 5-year range).
- You can exclude null or unwanted values from the view if needed (e.g., by right-clicking on null bars and selecting Exclude).
- Calculated fields let you build new measures or dimensions from existing data (e.g.,
[Global Sales] - [EU Sales]
). - To create one, click the dropdown next to a field, choose Create → Calculated Field, then enter your formula.
- Quick table calculations (like “Percent of Total”) are built-in options, and you can drag them into the data pane to save them as custom fields.
- Use calculated fields to perform basic arithmetic, combine fields, or handle more complex logic, depending on your analysis needs.
These tutorials provide a foundational understanding of Tableau, covering installation, joins, visualization types, and calculations. For a deeper understanding, practicing with real-world datasets and different chart types is recommended.