Featured Post

SQL Interview Success: Unlocking the Top 5 Frequently Asked Queries

Image
 Here are the five top commonly asked SQL queries in the interviews. These you can expect in Data Analyst, or, Data Engineer interviews. Top SQL Queries for Interviews 01. Joins The commonly asked question pertains to providing two tables, determining the number of rows that will return on various join types, and the resultant. Table1 -------- id ---- 1 1 2 3 Table2 -------- id ---- 1 3 1 NULL Output ------- Inner join --------------- 5 rows will return The result will be: =============== 1  1 1   1 1   1 1    1 3    3 02. Substring and Concat Here, we need to write an SQL query to make the upper case of the first letter and the small case of the remaining letter. Table1 ------ ename ===== raJu venKat kRIshna Solution: ========== SELECT CONCAT(UPPER(SUBSTRING(name, 1, 1)), LOWER(SUBSTRING(name, 2))) AS capitalized_name FROM Table1; 03. Case statement SQL Query ========= SELECT Code1, Code2,      CASE         WHEN Code1 = 'A' AND Code2 = 'AA' THEN "A" | "A

What is Tableau Software

Stanford University Computer Science department is the origin of Tableau. The initiation started in the Department of Defense, a sponsored research project. Chris Stolte, a Ph.D. candidate, was researching visualization techniques for exploring relational databases and data cubes.

Tableau Invention

Stolte's Ph.D. advisor, Professor Pat Hanrahan, a founding member of Pixar and chief architect for Pixar's RenderMan, was a worldwide expert in the science of computer graphics.

Chris, Pat, and a team of Stanford Ph. D.s realized that computer graphics could deliver huge gains in people's ability to understand databases.


Tableau


Before Tableau

Their invention VizQL™ brought together these two computer science disciplines for the first time.
VizQL lets people analyze data just by building drag-and-drop pictures of what they want to see.
Tableau 8
 
While Tableau 8 improves on the previous seven major releases of the software, the core approach to visual design remains the same: connect to the desired data source, and drag various data fields to desired parts of the Tableau screen.
 
The result is a basic visualization that can then be enhanced and modified by dragging additional data fields to different destinations in the workspace.
 
Beyond this basic visualization approach, Tableau's Show Me feature allows quick choices of predefined visualizations by just selecting relevant data fields and clicking a thumbnail.

Tableau Basics 

When you first start Tableau, you are presented with the Start Page. The largest portion of the Start Page is reserved for thumbnails of recent workbooks you have used. 

Simply click on any one of these to open the workbook (like Microsoft Excel, Tableau's format for storing data on your disk drive is in a workbook, with a .TWB or .TWBX file extension).

You may also open sample workbooks included with Tableau 8 by clicking the desired thumbnail at the bottom of the Start Page.

If you want to create a new workbook, you must first connect to a data source (types of data sources Tableau works with include industry-standard databases such as Oracle or Microsoft SQL Server, Microsoft Excel spreadsheets, text files, and so forth). 

Unlike spreadsheet or word processing programs, Tableau must connect to some existing data before you can create a visualization.

Certain data sources, known as saved data sources, will appear on the left side of the Start Page. These "pointers" to an existing data source can be selected by simply clicking them. If you want to connect to a different data source, click the Connect to Data tab (the tab with the "barrel" icon) in the upper right, or click Connect to Data in the upper left under the Data section. 

Once you've connected to a data source, a new workspace will appear where you can drag and drop desired data fields.

Comments

Popular posts from this blog

How to Fix datetime Import Error in Python Quickly

Explained Ideal Structure of Python Class

How to Check Kafka Available Brokers