Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

80 results for “from:Marcio”

Time series of spatial data
Marcio Pupin Mello · Apr 7, 2011 · r-help

Hi idham, Welcome to the R! It will depend on what you want to do with your data. But you can take a look at the packages sp, spdep. And I also recomend the book: R.S. Bivand, E.J...

predict and arima
Jose-Marcio Martins da Cruz · Feb 9, 2011 · r-help

bryan wrote: > Indeed, there was a bug ... my current play code looks like this ... Hmmmm.... the bug seems to be there, still. > fit<- arima(x.ts, order=c(p,q,d), ***** > seasonal=list(order=c(P,D,Q), > period=frequency...

Image from bytes streams
Márcio de Medeiros Ribeiro · Aug 16, 2005 · r-help

Hi, First, thank you very much for the answers... I have used the png() function before for generate the image and then capture its bytes. My big problem is that my program reads the image before that its complete by...

Fitting my data to a Weibull model
Marcio · Aug 30, 2011 · r-help

Hi guys, I have a data-set that fits well into a Weibull model y = a-b*exp(-c*x^d). I want to estimate the parameters of the coefficients a, b, c and d, given x and y. Can...

optimize()
dnz.marcio · Dec 8, 2011 · r-help

Hi! I have a difficulty in the use of function optimize(). Could you help me? I want to maximize this function: ##### Logaritmo da distribui??o condicional de alpha[i] lp_alphai <- function(alphai, i, beta, tau, N){ t1 <- (N[i...

how to track a number in a row
Márcio Resende · Jan 11, 2010 · r-help

Hi, I have a 100x15 matrix and in each row a set of 15 random numbers out of 25. for example: b <- c(1:25) a <-matrix(0,10,15) for (i in 1:10){ a[i,] <- sample(b,15...

Image Classification - Wish List?
Marcio Pupin Mello · Nov 26, 2012 · r-sig-geo

Perhaps too late but as a summary I'd suggest the paper SLUITER, R.; PEBESMA, E. J. Comparing techniques for vegetation classification using multi- and hyperspectral images and ancillary environmental data. International Journal of Remote Sensing, v. 31, n. 23...

Image from bytes streams
Márcio de Medeiros Ribeiro · Aug 15, 2005 · r-help

Hello! I'm trying to get an array of bytes from graphic images generated by R. Here, you can see my Java code: -------------------------------------------------------------------------------------------------------------------------- Process p = Runtime.getRuntime().exec("C:/Arquivos de programas/R/rw1090/bin/Rterm.exe --no-save"); DataOutputStream...

How can I include a new book on the
Marcio Pupin Mello · Apr 11, 2011 · r-help

It's there. Thank you Ben and also Kurt! Best, Marcio Em 4/7/2011 10:19 AM, Marcio Pupin Mello escreveu: > Thanks Ben! I will! > > Em 4/7/2011 8:32 AM, Ben Bolker escreveu: >> Marcio Pupin Mello<mello...

equivalent of ifelse
Márcio Resende · Dec 9, 2009 · r-help

David Winsemius wrote: > > > On Dec 9, 2009, at 12:40 PM, carol white wrote: > >> Hi, >> Is there any equivalent for ifelse (except if (cond) expr1 else >> expr2) which takes an atomic element as argument but returns vector >> since ifelse returns...

force output dimension of table function
Marcio Pupin Mello · Apr 6, 2011 · r-help

You can do it using factor: s0<-factor(0:5) s1<-sample(s0,5,re=T) s1 [1] 0 2 2 4 0 Levels: 0 1 2 3 4 5 table(s1) s1 0 1 2 3 4 5 2...

predict and arima
Jose-Marcio Martins da Cruz · Feb 8, 2011 · r-help

I think ther's a bug here : bdp wrote: > > Some code I have been playing with to do this follows ... > > get.best.arima<- function(x.ts, minord=c(0,0,0,0,0,0), > maxord=c(2,1,1,2...

Incorrect Dimension
Marcio Resende · Sep 17, 2009 · r-help

I am new in R and i am having trouble here. I?ve already searched in the list but hasn?t helped When i run this script above i get the message "Error in gen[j, i] : incorrect number of...

Mixed Models providing a correlation structure.
Marcio · Jul 11, 2012 · r-help

Dear Simon, Thanks for the quick reply. Unfortunately I don't have access to Pinheiro and Bates. I tried googling the pdSymm and lme but I still cannot get the syntax right. In my model, I only have 1 random...

Using two (...) in a function
Márcio Resende · Dec 1, 2009 · r-help

Hello R-Helpers, I am not sure if it is a very simple question but I would like to use two (...) in a function, for example, this is a script where I would like to input the variable names (in...

how to solve a simple discrete Bayesian Belief Network?
Marcio Pupin Mello · Sep 28, 2011 · r-help

Can somebody save-me? Thanks in advance! #R script: #trying to find out how solve a discrete Bayesian Belief Network. #option: using 'catnet' package #BEGIN library(catnet) cnet <- cnNew(nodes = c("a", "b", "c"), cats = list(c("1", "2"), c...

Sum of Product in a Matrix
Marcio Resende · Sep 22, 2009 · r-help

Hi, I am new in R and I don?t know how to sum the product of two elements at the time in a matrix X=[ 1 5 9 13 2 6 10 14 3 7 11 15 4 8...

for cycle with uncontinuous numbers
Marcio Resende · Sep 27, 2009 · r-help

Hi Tobias, thanks for the help, the code I am using is quite long, but basically what I tried to do was test <- matrix(0,6,1) x <- matrix( c(50,100,200,300,900,2343) ,ncol = 1) for (i...

BLUP with missing data
Marcio Resende · Sep 22, 2009 · r-help

hello guys, I need to do a BLUP in the simplest model y = Xm + Zg + e however I have missing data in the analysis which I can?t consider as 0(zero). So I need to generate the matrix X...

selecting n smallest values from a Raster
Marcio Pupin Mello · Nov 11, 2013 · r-sig-geo

Great! I was trying "order(my.r)" instead of "order(my.r[])". Thank you Roman! Cheers, Marcio www.dsr.inpe.br/~mello On 11/11/2013 11:15, Roman Lu?trik wrote: > Something like this? > > library(raster) > > my.r <- raster...

Can't find what you're looking for? Try searching with Google .