[docs]defset_data(self,data_values:list):"""Sets the data for the custom study. Args: data_values (list): A list of data values to be used for the custom study. """self.instance.send(self.id,'setDataCustomStudy',{'dataValues':data_values})returnself
[docs]defadd_data(self,data_values:list):"""Adds additional data to the custom study. Args: data_values (list): A list of data values to be added to the custom study. """self.instance.send(self.id,'addDataCustomStudy',{'dataValues':data_values})returnself