# Some other metadata are defined: # # * `history`: history of operation achieved on the object since the object creation # * `description`: A user-friendly description of the objects purpose or contents. # * `title`: A title that will be used in plots or in some other operation on the objects. # # # All this metadata (except, the `id`, `created`, `modified`) can be changed by the user. # # For instance: # %% d1D.title = "intensity" d1D.name = "mydataset" d1D.history = "created from scratch" d1D.description = "Some experimental measurements" d1D # %% [markdown] # d1D is a 1D (1-dimensional) dataset with only one dimension. # # Some attributes are useful to check this kind of information: # %% d1D.shape # the shape of 1D contain only one dimension size # %% d1D.ndim # the number of dimensions # %% d1D.dims # the name of the dimension (it has been automatically attributed)
# Some other metadata are defined: # # * `history`: history of operation achieved on the object since the object creation # * `description`: A user friendly description of the objects purpose or contents. # * `title`: A title that will be used in plots or in some other operation on the objects. # # # All this metadata (except, the `id`, `created`, `modified`) can be changed by the user. # # For instance: # %% d1D.title = 'intensity' d1D.name = 'mydataset' d1D.history = 'created from scratch' d1D.description = 'Some experimental measurements' d1D # %% [markdown] # d1D is a 1D (1-dimensional) dataset with only one dimension. # # Some attributes are useful to check this kind of information: # %% d1D.shape # the shape of 1D contain only one dimension size # %% d1D.ndim # the number of dimensions # %% d1D.dims # the name of the dimension (it has been automatically attributed)