🔬
Docs
  • 👋Vision lines from CEO
  • 📖Documentation
    • Getting Started
      • Introduction
      • Setting Up an Account
      • User Interface
        • Account
        • Project Manager
        • Diagram Editor
          • Main Canvas
            • Nodanomics Menu
            • Node Toolbox
            • Control Bar
            • Function Buttons
              • Node Explorer
            • Node Properties Drawer
          • Execution Graph
      • Creating Projects
        • Creating Diagrams
    • Nodes
      • Overview
      • Connections
      • Data-type Nodes
        • Data
        • Origin
        • Sink
        • Dataset
      • Logic-type Nodes
        • Formula
        • Loop
      • Event-type Nodes
        • Event Trigger
        • Event Listener
    • Tutorials
      • First diagram creation
      • Import existing diagram
      • Examples
        • Gatcha System
  • Use Cases
    • 🎯For Web3 Marketing Agencies
  • BUSINESS MODEL
    • 🎮For Blockchain Ecosystems
    • 🎮For Tokenomics Agencies
  • AI Tools
    • Tokenomics Architect
    • Step-by-step manual guideline
Powered by GitBook
On this page
  • Creating a spreadsheet
  • Styling
  • Importing spreadsheets
  • Interacting with the spreadsheet data
  1. Documentation
  2. Nodes
  3. Data-type Nodes

Dataset

PreviousSinkNextLogic-type Nodes

Last updated 1 year ago

The Dataset node is an array of data.

You can create a spreadsheet with your project's data and link it to the diagram, using the Dataset node. It's also possible to save and read data from Data nodes into Datasets.

Creating a spreadsheet

Using your favorite spreadsheet editor, create a table with your project's data.

Styling

The spreadsheet must be organized as such:

{Dataset Name}
{Data 1}
{Data 2}

0

3

1

4

2

5

Importing spreadsheets

To import the spreadsheet into your project, you must use the Spreadsheets library menu.

The spreadsheet file must be in the XLSX file format.

Interacting with the spreadsheet data

To reference the Dataset in the diagram, you need to use the following notation system: datasetTag[x][y]

Here's the above table with the coordinates individually marked:

Dataset Name (X = 0)
Data 1 (X = 1)
Data 2 (X = 2)

0 (Y = 0)

3 (Y = 0)

1 (Y = 1)

4 (Y = 1)

2 (Y = 2)

5 (Y =2)

To reference the number "5", per example, we would write datasetTag[2][2]

In the same manner, to reference the number "4", we would write datasetTag[2][1]

If we put this into a Formula's "Expression" field datasetTag[2][2] * datasetTag[2][1], it would be the same as inputting 5 * 4 and that would give 20 as the result.

Datasets are very useful to gather together the inputs from your project.

In this way, the only thing needed to update new values in your project is the spreadsheet with the updated values.

You can also use Datasets to output data from the diagram. e.g. Individual Player Data based on Day.

📖