I have two datasets, which I would like to find the best fitting function types:
x <- c(10, 40, 70, 100, 130, 160, 190, 220)
y1 <- c(41.8, 45.2, 50.8, 62.5, 73.2, 86.9, 95.4, 107.9)
y2 <- c(1.9, 34.3, 269.2, 1119.4, 2627.1, 5801.2, 11794.8, 24139.9)
par(mfrow = c(1,2))
plot(x, y1); plot(x, y2)
I would like to say something about the trends of y1 and y2, like y1 seems to follow a linear trend, and y2 looks exponential. First I tried with symbolic regressions, especially with 'rgp' package, but that's documentation is very poor, and it has some problems as well (don't work in archive mode, and others). Unfortunately, there isn't any other symbolic regression package.
What do you suggest, what should I do? How can I say/proof such conclusions like: "y1 follows a linear trend in the function of x" ?