Skip to content

Commit

Permalink
documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
sammy woo authored and sammy woo committed Dec 21, 2023
1 parent b853aab commit 1eaf2c4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions ersilia/core/tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,12 @@ def sample_df(self, df, num_rows, num_cols):
"""
return df.sample(num_rows, axis=0).sample(num_cols, axis=1)

# Stats function: calculates the basic statistics of the output file from a model. This includes the
# mode (if applicable), minimum, maximum, and standard deviation.
# Stats function:
def stats(self, result):
"""
This function calculates the basic statistics of the .csv output file from a model. This includes the mode (if applicable),
minimum, maximum, and standard deviation.
"""
dat = read_csv(result)

# drop first two columns (key, input)
Expand Down

0 comments on commit 1eaf2c4

Please sign in to comment.