@@ -28,7 +28,7 @@ def __init__(
2828 key (dict, optional): key from ephys.QualityMetric table. Defaults to None.
2929 scale (float, optional): Scale at which to render figure. Defaults to 1.4.
3030 fig_width (int, optional): Figure width in pixels. Defaults to 800.
31- amplitude_cutoff_maximum (float, optional): Cutoff for unit ampliude in
31+ amplitude_cutoff_maximum (float, optional): Cutoff for unit amplitude in
3232 visualizations. Defaults to None.
3333 presence_ratio_minimum (float, optional): Cutoff for presence ratio in
3434 visualizations. Defaults to None.
@@ -61,7 +61,7 @@ def key(self) -> dict:
6161 def key (self , key : dict ):
6262 """Use class_instance.key = your_key to reset key"""
6363 if key not in self ._ephys .QualityMetrics .fetch ("KEY" ):
64- # If not already full key, check if unquely identifies entry
64+ # If not already full key, check if uniquely identifies entry
6565 key = (self ._ephys .QualityMetrics & key ).fetch1 ("KEY" )
6666 self ._key = key
6767
@@ -127,7 +127,7 @@ def units(self) -> pd.DataFrame:
127127 def _format_fig (
128128 self , fig : go .Figure = None , scale : float = None , ratio : float = 1.0
129129 ) -> go .Figure :
130- """Return formatted figure or apply prmatting to existing figure
130+ """Return formatted figure or apply formatting to existing figure
131131
132132 Args:
133133 fig (go.Figure, optional): Apply formatting to this plotly graph object
@@ -252,7 +252,7 @@ def get_grid(self, n_columns: int = 4, scale: float = 1.0) -> go.Figure:
252252 """Plot grid of histograms as subplots in go.Figure using n_columns
253253
254254 Args:
255- n_columns (int, optional): Number of colums in grid. Defaults to 4.
255+ n_columns (int, optional): Number of column in grid. Defaults to 4.
256256 scale (float, optional): Scale to render fig. Defaults to scale at class
257257 init, 1.
258258
@@ -334,7 +334,7 @@ def get_grid(self, n_columns: int = 4, scale: float = 1.0) -> go.Figure:
334334
335335 @property
336336 def plot_list (self ):
337- """List of plots that can be rendered inidividually by name or as grid"""
337+ """List of plots that can be rendered individually by name or as grid"""
338338 if not self ._plots :
339339 _ = self .plots
340340 return [plot for plot in self ._plots ]
0 commit comments