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"))
6-element CSV.File{false}: CSV.Row: (S = 0.138, v = 0.148) CSV.Row: (S = 0.22, v = 0.171) CSV.Row: (S = 0.291, v = 0.234) CSV.Row: (S = 0.56, v = 0.324) CSV.Row: (S = 0.766, v = 0.39) CSV.Row: (S = 1.46, v = 0.493)
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)