Skip to content

Data Types

mathcoll edited this page Dec 1, 2020 · 9 revisions

Data Types in t6

t6 implement a list of 8 datatypes:

  • Integer
  • Time
  • Date
  • Float
  • Json
  • Geo
  • String
  • Boolean

Each of them is having two attributes: type and classification which must match the following diagram:

               ________________t6 Data Types_________________              
              |                       |                      |             
              |                       |                      |             
              v                       v                      v             
        +-------------+        +-------------+        +-------------+      
        |  Numerical  |        |   Object    |        | Categorical |      
        +-------------+        +-------------+        +-------------+      
                  /\                  |                  /\                
                 /  \                 |                 /  \               
                v    v                |                v    v              
  +-------------+    +-------------+  |  +-------------+    +-------------+
  |   Discrete  |    |  Continuous |  |  |   Ordinal   |    |   Nominal   |
  +-------------+    +-------------+  |  +-------------+    +-------------+
                            |         |         |                  |       
                            v         v         v                  v       
                         Integer    Json      String            Boolean    
                         Time       Geo                                    
                         Date                                              
                         Float                                             

A specific Api is provided to list those datatypes dynamically including their attributes : General - Get DataTypes

Clone this wiki locally