These values should be stored in a classifier
(s. below). At the same, it adds specimen
and species
info from the respective columns of the classifier
.
The classifier
should have the following format:
species | specimen | measurement | amp | lever.ratio |
species.1 | specimen.1 | measurement.1 | amp.1 | lever.ratio.1 |
... | ... | ... | ... | ... |
species.n | specimen.n | measurement.n | amp.n | lever.ratio.n |
It must contain one row per unique measurement number that is present in the
df.
The force (F
) in Newton is calculated via the following formula:
F = y * lever.ratio * (1 / amp)
where y
is the measurement series, e.g. in V
,
amp
is the amplification value, e.g. in V/N
,
and lever.ratio
is the mechanical lever ratio of the measurement setup.
df
should have the following format:
t | y | measurement |
t.1 | y.1 | measurement.1 |
t.2 | y.2 | measurement.1 |
... | ... | ... |
t.n | y.n | measurement.1 |
t.1 | y.1 | measurement.2 |
t.2 | y.2 | measurement.2 |
... | ... | ... |
t.m | y.m | measurement.2 |
... | ... | ... |
t.o | y.o | measurement.o |