View in NBViewer Open in binder Download notebook View source


9.2. Modelagem de reações enzimática

using Random
using Statistics
using LinearAlgebra
using LsqFit
using CSV
using Plots
theme(:ggplot2)
csv_data = CSV.File(joinpath("data", "reacao_enzimatica_figado_porco.csv"))
Error: ArgumentError: "data/reacao_enzimatica_figado_porco.csv" is not a va
lid file or doesn't exist
S = [csv_data[j][1] for j in 1:length(csv_data)]
v = [csv_data[j][2] for j in 1:length(csv_data)]
scatter(S,v, xlabel="S", ylabel="v", label=false,
    title = "Enzima vs velocidade", titlefont=10)
Error: UndefVarError: csv_data not defined