Skip to content

Commit

Permalink
Add a summary stats demo script
Browse files Browse the repository at this point in the history
  • Loading branch information
falexwolf committed Mar 14, 2024
1 parent 93a73a0 commit ce3d00a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions compute-summary-stats.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import lamindb as ln

ln.settings.transform.stem_uid = "beoXrr2SDS7R"
ln.settings.transform.version = "1"

if __name__ == "__main__":

ln.track()

df = ln.Artifact.filter(uid="WDNVolxzqPiZ2Mtus9vJ").one().load()
print(df)

summary_stats = df.groupby("method").mean()
print(summary_stats)

0 comments on commit ce3d00a

Please sign in to comment.