Any solution to memory limitation problems?

Hi Murray
These problems relate to my skink capture data you looked at a few months ago. This computer has 3 GB of memory and I'd just like to check if there is anything I can do to get some fairly simple models running. E.g. I can run
mtb.hab.sig <- secr.fit(caps09, model = list(g0 ~ t+b+hab, sigma~hab), mask = M09_1_12, CL=TRUE, detectfn = 0)
but not
mtb.sp.sig <- secr.fit(caps09, model = list(g0 ~ t+b+sp, sigma~sp), mask = M09_1_12, CL=TRUE, detectfn = 0)
The latter tries to allocate a 200 Mb vector; sp has 3 levels whereas hab in the previous model has only 2 levels.
I get very different AICc and density by changing between hab and siz (also 2 levels) for example, so am keen to try other variables too.
Also, when using a continuous variable svl, secr wants a 6GB block even when I just use part of my dataset, e.g.
mtb.svl.sig <- secr.fit(caps09$In, model = list(g0 ~ t+b+svl, sigma~svl), mask = In09_1m_12m, CL=TRUE, detectfn = 0)
I've checked that svl is numeric and not a factor. You helped me with this variable once before and I'm wondering if every measurement is still being treated as a different level?
Happy to send you the files etc...
Cheers
Deb
These problems relate to my skink capture data you looked at a few months ago. This computer has 3 GB of memory and I'd just like to check if there is anything I can do to get some fairly simple models running. E.g. I can run
mtb.hab.sig <- secr.fit(caps09, model = list(g0 ~ t+b+hab, sigma~hab), mask = M09_1_12, CL=TRUE, detectfn = 0)
but not
mtb.sp.sig <- secr.fit(caps09, model = list(g0 ~ t+b+sp, sigma~sp), mask = M09_1_12, CL=TRUE, detectfn = 0)
The latter tries to allocate a 200 Mb vector; sp has 3 levels whereas hab in the previous model has only 2 levels.
I get very different AICc and density by changing between hab and siz (also 2 levels) for example, so am keen to try other variables too.
Also, when using a continuous variable svl, secr wants a 6GB block even when I just use part of my dataset, e.g.
mtb.svl.sig <- secr.fit(caps09$In, model = list(g0 ~ t+b+svl, sigma~svl), mask = In09_1m_12m, CL=TRUE, detectfn = 0)
I've checked that svl is numeric and not a factor. You helped me with this variable once before and I'm wondering if every measurement is still being treated as a different level?
Happy to send you the files etc...
Cheers
Deb