maci.build
builds a maci data object
data = maci.build()
data.mydata1 = 'data'
data.mydata2 = [1,2,3]
data.mydata3 = TrueLast updated
builds a maci data object
Calling this function will simply return an empty MaciDataObj to build out data in your maci object manually. This function currently has no parameters.
maci.build -> MaciDataObj
Example building maci data object and building out data
data = maci.build()
data.mydata1 = 'data'
data.mydata2 = [1,2,3]
data.mydata3 = TrueIn this example, we created a new empty maci object and assigned it to a variable, then created new attribute names with data assigned. You may use any of the maci object features with this new object (See methods).
Last updated