Re: [R] help with problem

2015-10-06 Thread David L Carlson
Subject: [R] help with problem *When i tried to read a table i**n .csv or .txt format R i get the following message and give some problem in orden to run the data o make test, etc* *Warning message* *In read.table(file = file, header = header, sep =";") *>* incomplete fin

Re: [R] help with problem

2015-10-06 Thread Sarah Goslee
http://stackoverflow.com/questions/5990654/incomplete-final-line-warning-when-trying-to-read-a-csv-file-into-r On Tue, Oct 6, 2015 at 11:14 AM, Marco Otoya Chavarria wrote: > *When i tried to read a table i**n .csv or .txt format R i get the > following message and

Re: [R] help with problem

2015-10-06 Thread Sarah Hardy
t; -Original Message- > From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of Marco > Otoya Chavarria > Sent: Tuesday, October 6, 2015 10:15 AM > To: r-help@r-project.org > Subject: [R] help with problem > > *When i tried to read a table i**n .csv or .txt format R i get

[R] help with problem

2015-10-06 Thread Marco Otoya Chavarria
*When i tried to read a table i**n .csv or .txt format R i get the following message and give some problem in orden to run the data o make test, etc* *Warning message* *In read.table(file = file, header = header, sep =";") *>* incomplete final line found by readTableHeader on 'test.csv* *I

Re: [R] Help! Big problem when using browser() to do R debugging?

2011-12-03 Thread Liviu Andronic
On Sat, Dec 3, 2011 at 2:38 AM, Michael comtech@gmail.com wrote: Hi all, Could you please help me? I am having the following weird problem when debugging R programs using browser(): In my function, I've inserted a browser() in front of Step 1. My function has 3 steps and at the end of

[R] Help! Big problem when using browser() to do R debugging?

2011-12-02 Thread Michael
Hi all, Could you please help me? I am having the following weird problem when debugging R programs using browser(): In my function, I've inserted a browser() in front of Step 1. My function has 3 steps and at the end of each step, it will print out the message Step i is done... However, after

Re: [R] Help! Big problem when using browser() to do R debugging?

2011-12-02 Thread Duncan Murdoch
On 11-12-02 8:38 PM, Michael wrote: Hi all, Could you please help me? I am having the following weird problem when debugging R programs using browser(): In my function, I've inserted a browser() in front of Step 1. My function has 3 steps and at the end of each step, it will print out the

Re: [R] help biglm.big.matrix; problem with weights

2010-06-18 Thread Thomas Lumley
On Tue, 15 Jun 2010, Rahim Hajji wrote: Hello colleagues, I have tried to use the package biglm. I want to specify a multivariate regression with a weight. I have imported a large dataset with the library(bigmemory). I load the library (biglm) and specified a regression with a weight. But I

[R] help biglm.big.matrix; problem with weights

2010-06-15 Thread Rahim Hajji
Hello colleagues, I have tried to use the package biglm. I want to specify a multivariate regression with a weight. I have imported a large dataset with the library(bigmemory). I load the library (biglm) and specified a regression with a weight. But I get everytime a error message like “object

[R] Help: Some problem with gdata package when using Dates

2008-12-18 Thread Prabhanjan Tattar
Dear List: I encountered this strange problem. I want to read dates in a R program. This is a sample data: Dates 12/12/08 14/12/08 18/01/08 28/02/08 16/06/08 19/07/08 28/09/08 If I save these dates in a .csv file, and read it in R using read.csv, I can perfectly read the data, and the commands

Re: [R] Help: Some problem with gdata package when using Dates

2008-12-18 Thread Gabor Grothendieck
Convert the date column to Date class and then access that column, not the entire data frame: library(gdata) Dates - read.xls(/tmp2/date.xls, header = FALSE) Converting xls file to csv file... Done. Reading csv file... Done. months(as.Date(Dates[[1]], %m-%d-%y)) [1] December December January