1 / 22

Some Tableau 8.0 Features

Some Tableau 8.0 Features. Some exciting new/improved features. Web Editing Forecasting New Visualization Types Sets Email Subscriptions Server Monitoring Federated Query Javascript API TDE Extract API. Watch the Tableau Customer Conference (TCC)

jonah
Download Presentation

Some Tableau 8.0 Features

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Some Tableau 8.0 Features

  2. Some exciting new/improved features • Web Editing • Forecasting • New Visualization Types • Sets • Email Subscriptions • Server Monitoring • Federated Query • JavascriptAPI • TDE Extract API Watch the Tableau Customer Conference (TCC) 2012 Keynote including unveiling of v8 @ 44 minutes: http://www.ustream.tv/recorded/27070401/theater Here’s another video on v8: http://www.tableausoftware.com/tcc12conf/videos/new-tableau-desktop-8

  3. Major v8/Kraken Themes

  4. Web Editing

  5. Forecasting

  6. Heatmap

  7. Bubble Map

  8. Word Cloud

  9. Multiple Labels

  10. Dashboard Float Layout

  11. Sets Create / add to sets Edit set Combine sets

  12. Visual Grouping

  13. Visual Grouping

  14. Targeted Filters

  15. Multiple Marks Accordion

  16. Email Subscription

  17. Email Subscription

  18. System Activity Analysis

  19. Improved Federated Query (“blending”)

  20. Javascript API

  21. Tableau Data Engine (TDE) Extract API Programmatically build extracts package com.tableausoftware.demos; import com.tableausoftware.DataExtract.*; import java.util.Calendar; public final class MakeOrder { public static void main( String[] args ) { try (Extract extract = new Extract("order.tde")) { TableDefinitiontableDef = new TableDefinition(); tableDef.setDefaultCollation(Collation.EN_GB); tableDef.addColumn("Purchased", Type.DATETIME); tableDef.addColumn("Product", Type.CHAR_STRING); tableDef.addColumn("uProduct", Type.UNICODE_STRING); tableDef.addColumn("Price", Type.DOUBLE); tableDef.addColumn("Quantity", Type.INTEGER); tableDef.addColumn("Taxed", Type.BOOLEAN); tableDef.addColumn("Expiration Date", Type.DATE); // Column with non-default collation tableDef.addColumnWithCollation("Produkt", Type.CHAR_STRING, Collation.DE); intnumColumns = tableDef.getColumnCount(); for ( inti = 0; i < numColumns; ++i ) { Type type = tableDef.getColumnType(i); String name = tableDef.getColumnName(i); System.out.format("Column %d: %s (%#06x)\n", i, name, type.getValue()); } Table table = extract.addTable("Extract", tableDef); Row row = new Row(tableDef); row.setCharString(1, "Beans" ); // Product row.setString( 2, "uniBeans"); // uProduct row.setDouble( 3, 1.08 ); // Price row.setBoolean( 5, false ); // Taxed row.setDate( 6, 2029, 1, 1 ); // Expiration date row.setCharString(7, "Bohnen"); // Produkt for ( inti = 0; i < 10; ++i ) { Calendar c = Calendar.getInstance(); row.setDateTime(0, c.get(Calendar.YEAR), c.get(Calendar.MONTH) + 1, c.get(Calendar.DAY_OF_MONTH), c.get(Calendar.HOUR_OF_DAY), c.get(Calendar.MINUTE), c.get(Calendar.SECOND), c.get(Calendar.MILLISECOND) * 10); // Purchased row.setInteger(4, i * 10); // Quantity table.insert( row ); } } catch (Throwable t) { t.printStackTrace(System.err); } } }

  22. Teach Yourself Tableau! Follow this plan: http://public.tableausoftware.com/views/TrainingResources_0/TrainingResources Watch webinars: http://www.tableausoftware.com/learn/webinars Join the Tableau community: http://community.tableausoftware.com

More Related