Error

Sorry, ${user()}

This dataset is not available for you. Ask the owner to get access.
Type: ${ds_act.type}
Name: ${ds_act.name}
File
Data: ${ds_act.valuetype.name} ${ds_act.valuetype.comment} ? ± ? ${ds_act.valuetype.unit}, n=${n}
Site:
Responsible: ${ds_act.measured_by}
Quality:
Data source:
Project:
Calibration:
Transformation: $~f(x)=${ds_act.latex}~$
Comment:
-
$~x\prime = ~$
$~\cdot\ x\ +\ ~$
$~f(x)=~$
$~f(x)=~$

Some help for the Python and latex expressions

Do not use any other variables in the expression than x (the values of the timeseries)
Equation type Example Python code Latex code
Polynom $~-0.5\cdot10^{-5}x^3+2.35x^2-124.5x+15.3~$ -0.5e-5*x**3 + 2.35*x**2 - 124.5*x + 15.3 -0.5\dot10^{-5}x^3+2.35x^2-124.5x+15.3
Exponential $~3.2 e^{0.5x}~$ 3.2 * exp(0.5*x) 3.2 e^{0.5x}
nat. log. $~\ln{x}~$ log(x) \ln{x})
dec. log. $~\log_{10}{x}~$ log10(x) \log_{10}{x}
cumulative sum \[\int_{t=0}^{t(x)}x dx\] cumsum(x) \int_{t=0}^{t(x)}x'dx