[R] plotting multiple variables

2013-10-27 Thread Hansol Yu
When my data has 50 rows, 100 columns and class column. How can I plot this data and show classes? Do I have to draw 100 lines? [[alternative HTML version deleted]] __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-hel

[R] nls function error

2013-10-27 Thread Hansol Yu
data(Boston, package='MASS') y <- Boston$nox x <- Boston$dis nls(y~ A + B * exp(C * x), start=list(A=1, B=1, C=1)) Error in nls(y ~ A + B * exp(C * x), start = list(A = 1, B = 1, C = 1), : step factor 0.000488281 reduced below 'minFactor' of 0.000976562 I don't know how to fix this error. I th