search for: coefficient2

Displaying 2 results from an estimated 2 matches for "coefficient2".

Did you mean: coefficients
2009 Jun 04
2
wrong labels and colors of points in graph/plot
Hi there, I trying to solve this problem for the whole day not going anywhere, so I really hope maybe somebody can help me in this community... I've got an object coefficient2 which I want to plot in differerent ways, with colors and labels added to the points, but somehow there seems to be a problem if a value is NA within the independent variable, resulting in false labels and false colors for the points. plot(coefficient2$intercept ~ coefficient2$average_height, main...
2011 Jul 30
2
iterative using values from a data frame to parameterize a function
Hello, I'm just trying to wrap my head around the syntax for creating loops, functions in R. I have an array of values from a .csv. Looks something like header<-c(species,coefficient1, exponent1, coefficient2, exponent2, constant) with a species name for the first column, and values for coefficient1, exponent1, coefficient2, exponent2, constant for each species. The values are parameters for an equation V<-((coefficient1*(x)^exponent1)+(coefficient2*(x)^exponent2)+constant) x<1:100 I'd li...