Recent content by shreyansh

  1. S

    Joining Datasets in Tableau

    First, download the dataset with all countries and their continents from Our World in Data. Then, also download the CSV file that has the population for each country here. After you have them both downloaded and saved onto your file system, we can join the datasets together. We drag the table...
  2. S

    Importing Data in Tableau

    Now that you’ve downloaded Tableau Public, we can start it and load the data. In this tutorial we will use the our world in data dataset related to water withdrawals per person. To provide some context, water withdrawal refers to the amount of freshwater that is collected from surface water (for...
  3. S

    Tableau Tutorial for Beginners

    When you are dealing with real data and you want to be able to work with it and derive information in an efficient way, you should consider using Tableau. Tableau allows you to simply push buttons and now you too can create beautiful, interactive, and dynamic visualizations of your data without...
  4. S

    Best Practices for Alteryx

    Alteryx, like any tool, has some best practices to follow so you get the best output. We will look at 5, but if you want to find out more, look for the PDF with 24 Best Practices that was shared in the Alteryx community. 1. Eliminate any browse tools: The browse tool is beneficial during the...
  5. S

    Automate Workflows with Alteryx

    Workflow automation means using software to execute jobs without human involvement. It is a tool that is commonly used in business that speeds up processes and minimizes the need for manual work and activities that are repetitive. We can automate workflows in Alteryx by utilizing Batch Macros...
  6. S

    Data Transformation in Alteryx

    Data can take on many forms, shapes, and structures. Sometimes, you may be set to jump right into analysis, but usually this is in a data competition. In the real world, data is messy and a data professional's job is to organize data in a way that can be queried to provide valuable meaning...
  7. S

    Data Preparation or Pre-Processing in Alteryx

    Data preparation is also known as pre-processing, which is simply the process of taking raw data and transforming it into a version that is easy and accurate enough to analyze or be used as input into a machine learning model. People typically don't like to talk about this aspect of being a data...
  8. S

    Build Sample Alteryx Workflow

    When you open Alteryx Designer, you would automatically be provided with a Workflow, but let's pretend that is not the case. To create a new workflow, click on “File” on the top left hand corner and select “New Workflow.” This will create a new tab in the Workflow Canvas for your new workflow...
  9. S

    Alteryx Workflow Canvas

    Workflows are created in the Workflow Canvas space. For clarity, a workflow only defines a series of tools that execute various functions that ultimately process data. Within the workflow, you can save relative paths to the various data sources, and you will be able to share workflows with...
  10. S

    Introduction to Alteryx

    We have a complete guide talking about Alteryx and what it is. However, to make it brief, Alteryx is a data analytics and visualization tool that focuses on making advanced analytics automation simple and making it available for all data professionals. Alteryx is a tool that allows users to...
  11. S

    Different Formats in SAS

    What Are Formats in SAS? Formats in SAS are used to control how data values are displayed rather than how they are stored. They can be applied in a number of ways, including :Displaying numeric values in a readable way (e.g., currency, percent) Grouping categories Formatting dates and times...
  12. S

    How to convert Numeric to date format in SAS

    This tutorial will explain how to change a numeric variable to a date variable in SAS with examples. Assuming you have a numeric variable that contains dates, you are asked to convert it to SAS date format. Although this may seem easy, it can often be a troublesome task if you don't understand...
  13. S

    How to convert Char to date format in SAS

    This lesson details a variety of approaches we can use to convert a character variable (string) to a date variable in SAS. Let's assume you run into a situation in which you need to convert character variable to SAS date format. This will typically happen when we upload raw data file type (TXT...
  14. S

    Missing Values in SAS

    What Are Missing Values in SAS? In SAS, missing values indicate an absence of values. Missing values can occur in both numeric and character variables:Numeric Missing Value: A dot (.).Character Missing Value: A blank space (' ' or ""). Row 1 has a missing numeric value for age. Row 3 has a...
  15. S

    Using IN operator in SAS

    The IN operator in SAS is used to make a comparison between an individual value and a collection of values. It allows one to choose several values within a SAS dataset. It works as a substitute of several OR statements. The IN operator's syntax in SAS is as follows: Here a set of discrete...
Back
Top