Displaying 2 results from an estimated 2 matches for "g1999".
Did you mean:
1999
2013 Feb 18
1
attempt to apply non-function
...ve mentioned error when I run the code below. I don't
know why because I have implemented the function and I'm calling the
function with a parameter. I'm obviously missing the plot ... Can someone
perhaps point out the error of my ways?
Error:
> out<-ode(y=init, times=times, func=G1999, parms=parms, method="lsoda")
Error in m_Na(v) : attempt to apply non-function
Code:
library(deSolve)
G1999 <- function(time, init, parms) {
with(as.list(c(init, parms)),{
m_Na <- function(v) 1 / (1 + 15 * exp(-0.769 * (v+34)) * ((1 -
exp(-0.05(v+6)/0.11 * v + 0.66))))...
2008 Sep 24
2
Why horizontal bars instead of a line
Hey list!
It looks simple, though it's not possible for me to plot the following
properly:
(some made-up data)
GrSe Clone1 Clone2 Clone3 Clone4 Clone...
G1999 2 3 6 5
G2000 2 5 7 4
G2001 5 3 7 3
G2002 4 5 8 3
G...
GrSe=Growing Season.
I've read the file as "x" and then tried: plot(x$GrSe,x$Clone1)
The output is 4 horizontal bars. Even if I write
plot(x$GrSe,x$Clone1,type="n") R is still plotting!
I figured already that if I...