[R] Neural Network models

2019-07-28 Thread Agustín Alonso Rodriguez
I apologize for writing my question in Spanish. I thought that I was writing my question to the Spanish list. Agust�n Alonso --- Este correo electr�nico ha sido comprobado en busca de virus por AVG. http://www.avg.com [[alternative HTML version deleted]]

[R] neural network, random forest with survey data

2015-02-09 Thread ying_chen wang
Hi, everyone: Does anyone know if any statistical packages (such as R) can accommodate neural network or random forest with survey data? With survey data, we have to incorporate weight with sampling issue or even with design effect. Would appreciate if anyone can help. Grace [[alternat

Re: [R] Neural Network

2015-01-26 Thread Charles Determan Jr
of Chlorophyll a can make the > Eutrophication in lake along with other algeas. > So I think they are dependent variables. > Regards. > > > > ------------ > On Thu, 1/22/15, Charles Determan Jr wrote: > > Subject: Re: [R] Neural Network

Re: [R] Neural Network

2015-01-23 Thread javad bayat via R-help
) Is it possible to predict the Eutro. by these variables? Many thanks for your help. Regards, On Thu, 1/22/15, Charles Determan Jr wrote: Subject: Re: [R] Neural Network roject.org> Date: Thursday, January 22, 2015, 4:41 PM Javad, Fi

Re: [R] Neural Network

2015-01-23 Thread javad bayat via R-help
variables. Regards. On Thu, 1/22/15, Charles Determan Jr wrote: Subject: Re: [R] Neural Network roject.org> Date: Thursday, January 22, 2015, 4:41 PM Javad, First, please make sure to hit 'reply all' so that these messages go

Re: [R] Neural Network

2015-01-22 Thread Charles Determan Jr
> 2) Is it possible to predict the Eutro. by these variables? > > > Many thanks for your help. > Regards, > > > > > > > > ------------ > On Wed, 1/21/15, Charles Determan Jr wrote: > > Subject: Re: [R] Neural Network > To

Re: [R] Neural Network

2015-01-21 Thread Charles Determan Jr
Javad, You question is a little too broad to be answered definitively. Also, this is not a code writing service. You should make a meaningful attempt and we are here to help when you get stuck. 1. If you want to know if you can do neural nets, the answer is yes. The three packages most commonl

[R] Neural Network

2015-01-20 Thread javad bayat via R-help
Dear all; I am the new user of R. I want to simulation or prediction the Eutrophication of a lake. I have weekly data(almost for two years) for Total phosphorus, Total N, pH, Chlorophyll a, Alkalinity, Silica. Can I predict the Eutrophication by Neural Network in R? How can I simulation the Eutro

[R] neural network in R

2014-05-16 Thread azam jaafari
 Hello everybody   I try to fit a neural network on my data by using package 'neuralnet' or 'nnet'. I did it several times but I got an unexpected answer,   this is my code (num.obs=100): ( library('nnet') y<-data.frame(data$CU) (y is cu concentration) x<-data.frame(data$mrvbf,data$plcurvature

[R] Neural Network Problem

2013-07-25 Thread nntx
Hello Professionals, I am new to R and am planning to use R for a Artificial Neural Network regression. I have 10 different scenarios for each observation (Input). For each scenario, there are 7 variables, which means 7 output. I have 1000 observations in total and I do have 1000 expected output

[R] Neural network: Amore adaptative vs batch why the results are so different?

2013-05-20 Thread xiaoyan yu
I am using the iris example came with nnet package to test AMORE. I can see the outcomes are similar to nnet with adaptative gradient descent. However, when I changed the method in the newff to the batch gradient descent, even by setting the epoch numbers very large, I still found all the iris expe

Re: [R] Neural Network

2010-07-19 Thread Rainer Stuetz
2010/7/18 Arnaud Trébaol : > Hi all, > > I am working for my master's thesis and I need to do a neural network to > forecast stock market price, with also external inputs like technical > indicators. > I would like to know which function and package of R are more suitable for > this study. > > Than

Re: [R] Neural Network

2010-07-18 Thread Corey Sparks
I'd start with the nnet library type: ?nnet CS - Corey Sparks, PhD Assistant Professor Department of Demography and Organization Studies University of Texas at San Antonio 501 West Durango Blvd Monterey Building 2.270C San Antonio, TX 78207 210-458-3166 corey.sparks 'at' utsa.edu https://row

[R] Neural Network

2010-07-18 Thread Arnaud Trébaol
Hi all, I am working for my master's thesis and I need to do a neural network to forecast stock market price, with also external inputs like technical indicators. I would like to know which function and package of R are more suitable for this study. Thanks a lot for your response, Arnaud TREB

[R] Neural Network package AMORE and a weight decay

2010-07-13 Thread Ron Shefi
Hi, I want to use the neural network package AMORE and I don't find in the documentation the weight decay option. Could someone tell if it is possible to add a regularization parameter (also known as a weight decay) to the training method. Is it possible to alter the gradient descent rule for

[R] Neural Network

2010-03-05 Thread Francis_Statistics
Hi, We are trying to implement a early stopping rule with validation set on a neural network. We’re using the AMORE package (http://rwiki.sciviews.org/doku.php?id=packages:cran:amore) of R and when you train the network you have to specify following variables: Pval Tval What do we have to put h

[R] neural network arguments

2009-10-07 Thread CJ Rubio
hi everyone! my inquiry with neural network is rather basic. i am just learning neural network, particularly the VR bundle. i read the documentations for the said bundle but still is struggling on understanding some arguments - x is the matrix or data frame of x values for example does this m

Re: [R] Neural Network resource

2009-06-02 Thread Indrajit Sengupta
  From: "jude.r...@ubs.com" Sent: Thursday, May 28, 2009 10:49:36 PM Subject: Re: [R] Neural Network resource The package AMORE appears to be more flexible, but I got very poor results using it when I tried to improve the predictive accuracy of a

Re: [R] Neural Network resource

2009-05-28 Thread jude.ryan
The package AMORE appears to be more flexible, but I got very poor results using it when I tried to improve the predictive accuracy of a regression model. I don't understand all the options well enough to be able to fine tune it to get better predictions. However, using the nnet() function in packa

Re: [R] Neural Network resource

2009-05-27 Thread Tony Breyal
assed the input dataset and tried to > get the predictions, all the predicted values were identical! This confused > me a bit and was wondering whether my understanding of the Neural Network was > wrong. > > Have you ever faced anything like it? > > Regards, > Indrajit > &

Re: [R] Neural Network resource

2009-05-27 Thread Indrajit Sengupta
### Here I am trying to predict Oxygen levels using the 6 independent variables. But whenever I am trying to run a prediction - I am getting constant values throughout (In the above example - the values of pred). Thanks & Regards, Indrajit   - Original Message F

Re: [R] Neural Network resource

2009-05-27 Thread Max Kuhn
> I fed this data into a Neural network (3 hidden layers with 6 neurons in each > layer) and trained the network. When I passed the input dataset and tried to > get the predictions, all the predicted values were identical! This confused > me a bit and was wondering whether my understanding of th

Re: [R] Neural Network resource

2009-05-27 Thread Indrajit Sengupta
understanding of the Neural Network was wrong. Have you ever faced anything like it? Regards, Indrajit From: "markle...@verizon.net" Sent: Wednesday, May 27, 2009 7:54:59 PM Subject: Re: [R] Neural Network resource Hi: I've never used that p

Re: [R] Neural Network resource

2009-05-27 Thread Tony Breyal
There's a link on the CRAN page for the AMORE package which apears to have some cool information: http://wiki.r-project.org/rwiki/doku.php?id=packages:cran:amore Seems like an interesting package, I hadn't actually heard of it before your post. HTH, Tony On 27 May, 09:13, Indrajit Sengupta wro

[R] Neural Network resource

2009-05-27 Thread Indrajit Sengupta
Hi All, I am trying to learn Neural Networks. I found that R has packages which can help build Neural Nets - the popular one being AMORE package. Is there any book / resource available which guides us in this subject using the AMORE package? Any help will be much appreciated. Thanks, Indrajit

[R] neural network not using all observations

2009-05-12 Thread jude.ryan
I am exploring neural networks (adding non-linearities) to see if I can get more predictive power than a linear regression model I built. I am using the function nnet and following the example of Venables and Ripley, in Modern Applied Statistics with S, on pages 246 to 249. I have standardized vari