@@ -597,7 +597,7 @@ def get_meta_data(self):
597597 for key in OBJ_DESC ['meta_data' ]})
598598
599599
600- def get_data_component (self , component = 'full' , space = 'log' ):
600+ def get_data (self , component = 'full' , space = 'log' ):
601601 """Get a data component.
602602
603603 Parameters
@@ -620,7 +620,7 @@ def get_data_component(self, component='full', space='log'):
620620 Notes
621621 -----
622622 The 'space' parameter doesn't just define the spacing of the data component
623- values, but rather defines the space of the additive data definiton such that
623+ values, but rather defines the space of the additive data definition such that
624624 `power_spectrum = aperiodic_component + peak_component`.
625625 With space set as 'log', this combination holds in log space.
626626 With space set as 'linear', this combination holds in linear space.
@@ -642,7 +642,7 @@ def get_data_component(self, component='full', space='log'):
642642 return output
643643
644644
645- def get_model_component (self , component = 'full' , space = 'log' ):
645+ def get_model (self , component = 'full' , space = 'log' ):
646646 """Get a model component.
647647
648648 Parameters
@@ -668,7 +668,7 @@ def get_model_component(self, component='full', space='log'):
668668 values, but rather defines the space of the additive model such that
669669 `model = aperiodic_component + peak_component`.
670670 With space set as 'log', this combination holds in log space.
671- With space set as 'lienar ', this combination holds in linear space.
671+ With space set as 'linear ', this combination holds in linear space.
672672 """
673673
674674 assert space in ['linear' , 'log' ], "Input for 'space' invalid."
0 commit comments