Displaying 1 result from an estimated 1 matches for "met_eco_deg".
Did you mean:
met_eco_bet
2009 Jul 13
2
Problems in plotting with abline
Dear R-users,
I am using R(a package igraph) to calculate certain
topological features of networks. When I try to draw a plot between these
features I get an error. Following is the code I am using :
*> plot(met_eco_deg,met_eco_bet)
> lmout<-lm(met_eco_bet ~ met_eco_deg)
> abline(lmout)
Error in int_abline(a = a, b = b, h = h, v = v, untf = untf, ...) :
plot.new has not been called yet*
*met_eco_deg* and *met_eco_bet* are the two objects generated from igraph
package. I don't get any error when I j...