8 lines
224 B
Python
8 lines
224 B
Python
from plotnine import ggplot, aes, geom_point, geom_smooth
|
|
from polars import read_csv
|
|
import mpmath
|
|
|
|
from sympy import symbols, Function, Lambda, lambdify, exp, diff, limit, oo
|
|
|
|
a, b, x, z, t = symbols('alpha beta x z t')
|
|
|