In [1]:
%load_ext autoreload
%autoreload 2
In [2]:
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import cellpy
from cellpy import prms
from cellpy import prmreader
from cellpy.utils import batch
import holoviews as hv
%matplotlib inline
hv.extension('bokeh')
In [3]:
cellpy_batch_file = r"cellpy_batch_round_robin_002.json"
In [4]:
b = batch.init(default_log_level="INFO", db_reader=None)
b.experiment.journal.from_file(cellpy_batch_file)
b.link()
cell_labels = b.experiment.cell_names
print(" cell labels: ".center(80, "-"))
print(" - ".join(cell_labels))
In [5]:
b.make_summaries()
In [6]:
b.plot_summaries()
In [ ]:
In [ ]: