01_user_documentation:05_object:06_references:03_datasets
This is an old revision of the document!
Table of Contents
Dataset references
The DatasetRef class is used not only to create a reference to a dataset but also to initially create a dataset.
Creation
A DatasetRef can be initialized as a class with the name of the dataset a parameter, or using the rgg library function dataset(“DS_name”). If no dataset with this name exists an empty one is created.
Cleaning
To delete all data from a dataset using rgg:
dataset("DS_name").clear();
Adding data
dataset("DS_name").addRow().set(0,11.4).set(1,23.5); dataset("DS_name").addRow().set(0,18.2).set(1,2.73);
01_user_documentation/05_object/06_references/03_datasets.1755269459.txt.gz · Last modified: 2025/08/15 16:50 by Tim
