Links

Tables

Overview

A table is the primary tool on Redivis to view and investigate data. A table can be thought of as a grid made up of variables (columns) and rows (records). You'll see tables:
  • On the Tables tab of datasets
  • On table nodes in a project
Every table has three tabs where you can view the data and interact with it in different ways:

Table characteristics

Field
Notes
Name
The table's name. If in a dataset, must be unique across all tables for that version of the dataset. If in a project, must be unique across all tables currently in the project.
Description
Optional. A free-form description of the table's contents. May not exceed 5000 characters.
Variable count
Total number of variables in the table.
Row count
Total number of rows, or records, in the table.
Size
Total size of the table, in bytes.
Entity
Optional. Documents the concept that one record in this table represents. For example, the table's entity might represent a unique patient, or a specific hospitalization, or a prescription.
Temporal range
Optional. The range of time that this table covers. This can either be set manually, or calculated from the min/max of a particular variable.
If calculated from a variable, that variable must have type date, dateTime, or integer. If the variable is an integer, its values will be assumed to represent a year and must be in the range [0, 9999].
Sample
If this table is sampled, you will see a marker for whether you are looking at the full dataset or the 1% sample. To interact with sampled tables, add the dataset to a project.

Viewing variables

The Variables tab provides a searchable list of the table's variables. In order to view this tab, you will need metadata access to the corresponding table.
Clicking any row will display the variable's statistics panel, which shows some common summary statistics calculated from the variable's data.
View all the variables in a table, and select one to view its summary statistics

Viewing cells

The Cells tab allows you to quickly preview and explore the table's data as a grid, regardless of the table's size. In order to view this tab, you will need data access to the corresponding table.
Clicking any the header or cells in any column will display the variable's summary statistics. You can also right click a cell to filter by a specific value, or sort on that variable.
For any Geography type variables, you can hover on the cell or click to see a preview.
Easily explore the cells of your table — even if it has billions of records.

Querying tables

Project transforms provide the most robust and reproducible mechanism for querying tables on Redivis. However, you can execute SQL queries directly on a table for when you want to perform a quick, one-off analysis. In order to perform a query, you will need data access to the corresponding table.
The Query tab on a table contains a SQL editor with scaffolding to reference that table. The query syntax follows the same rules as the transform SQL query syntax.
Choose one of the templates or type your own SQL query, and click the Run button to see the results below. Select any column in this table to view the summary statistics for a particular variable in your output.
If you update the query after running, it will become "stale" (marked in yellow), which is a reminder that these results don't match the query you are typing. The results will still be available to inform the query you are writing.
Query the table to filter for a particular value, or explore variable correlations via a cross-tab
Accessibility note for keyboard navigation: When you open the query tab, we'll focus your cursor immediately on the query editor. To navigate away using the keyboard, first press Escape, then press Tab to focus with other non-editor elements.