@import views.html.documentation.core @import views.html.documentation.imageSection @import views.html.documentation.section @import views.html.documentation.sectionNavigation @import views.html.documentation.core @import org.incal.play.controllers.WebContext @import org.incal.play.controllers.WebContext._ @import org.incal.play.routes.CustomDirAssets @()(implicit context: WebContext) @core("Basics") { @sectionNavigation()( ("section_data_set_tree", "Data Set Tree"), ("section_data_exploration", "Data Exploration"), ("section_data_export", "Export") ) @imageSection(id = Some("section_data_set_tree"), caption = Some("Data Set Tree"), picPath = Some("images/documentation/data_set_tree_2.png")) {

Imported data are organized hierarchically as a tree, which is located on the left side and is used for navigation.

There are three types of nodes:

Although, it is not recommended a single data set can reside at several locations in the tree.

} @section(id = Some("section_data_exploration"), caption = Some("Data Exploration")) {

Each data set contains any number of views. View is a container of different filters, widgets, and tables. Main view (usually called "Main") is invoked by default when a data set is selected in the navigation tree.

Graphical widgets, which represent the outcome of certain statistics (such as distribution or correlation) can be of 5 chart types: pie, column, bar, line, and polar. The chart type of a widget can be dynamically changed by clicking in the top left corner of the widget, and choosing a new type. The chart will redrawn immediately after the selection.

Views are not static; they can be dynamically filtered. The easiest way to filter is to click on a desired category in a distribution widget (e.g., "Female").

} {

} @section(id = Some("section_data_export"), caption = Some("Export"), withLine = false) {

Since one of the main functionalities of Ada is to provide comprehensive reports, which can be later included in other documents or post-processed, Ada provides several options for exporting.

More specifically, each (graphical) widget can be exported into four formats: PNG, JPEG, PDF, and SVG. This can be achieved by clicking either in the top right corner of a specific widget, or by selecting "Export charts as ..." in the Export menu located in the top right corner of the screen.

Besides the chart exports, data can be exported to CSV, JSON, or tranSMART file format, available in the Export menu. These include the following options:

For a CSV export, users can specify a delimiter (default ","), end-of-line String (default "\n"), and a replacement of the eol characters with white space (default yes). A custom delimiter can be also entered for a TranSMART export.

} {
Note
For a tab-delimited CSV export (i.e. TSV) specify "\t" as a delimiter. TranSMART data and mapping files use a tab delimiter by default (can be overridden if needed).
} }