Displaying 20 results from an estimated 2000 matches similar to: "read.table error"
2009 Jan 14
1
quartz options not permanent
Hi all,
I use a mac and was trying to reset my quartz options. However, every
time I restart R, the options are gone and I have to type them again.
Any idea as to what's going wrong?
Thanks,
Premal
2011 Jun 24
1
Installation of bigmemory fails
Hello All,
I tried to intall the bigmemory package from a CRAN mirror site and
received the following output while installing. Any idea what's going
on and how to fix it? The system details are provided below.
--------------------- begin error messages -----------------------
* installing *source* package 'bigmemory' ...
checking for Sun Studio compiler...no
checking for
2013 Mar 04
1
Choosing nlme or lme4?
Hi List,
I’ m analysing the selectivity of
resting site use by forest carnivores through mixed modelling techniques and I
wonder which will be the best r package to deal with several aspects simultaneously:
- binomial
variable response;
- possible
spatial and/or temporal correlation;
I have tried nlme (lme function) and
lme4 (lmer function) packages, however I realize that the
2012 Nov 15
4
Can I create virtual resources with create_resources function
I am trying to add ability to add virtual users to
the git://github.com/erwbgy/puppet-system.git module as I really want the
ability to use virtual users and then combine that with "User <| group ==
''x'' and group == ''y'' |>" way of realizing the users. This is much more
flexible than what I can do with this module out of the box.
Using the
2008 Sep 04
1
read.table error
Dear all,
I have a tab-delimited text (.txt) file which I'm trying to read into R. This file is of column format - there are in fact 3 columns and 259201 rows (including the column headers). I've been using the following commands, but receive an error each time which prevents the data from being read in:
> Jan <- read.table("JanuaryAvBurntArea.txt", header=TRUE)
Error in
2007 Apr 18
1
[Bridge] Bridge / Transparent Proxy
Hi,
I am using my machine as a Bridge and running transparent proxy on it.
My question is - where the brdige will work?
Do brdige will forward the packet before it reaches to iptables rule?
If yes then what is the solution - as I want to use my machine as
Transparent proxy and I have setup iptables rules on it.
I have tried so many times - look at the tcpdump also - but it seems
that packets
2006 Nov 24
6
Rails 1.2 RC1 problem
Hi
Have this helper method inside a sites_helper.rb module
def distritos
[
['0', 'Todos'],
['1', 'Aveiro'],
['2', 'Beja'],
['3', 'Braga'],
['4', 'Brangança'],
['5', 'Castelo Branco'],
['6', 'Coimbra'],
['7',
2008 Jul 30
2
problem with read.table()
Hello R-User
I have a table as tab-delimited textfile (291 rows, 83 columns).
The first row are labels and the first line the variable names.
I used the following code several times with different similar tables and it
always worked.
But now:
setClass("of")
setAs("character", "of", function(from) as.ordered(from))
Classe82<-cclasses <-
2013 Apr 18
2
How to remove a node from Puppet CA, Puppet DB from a remote host
I need to programmatically remove cert from Puppet master and remove all
information in Puppet DB for a node from another machine which is neither
Puppet Master or PuppetDB. It does have a Puppet signed cert since it is
also provisioned using Puppet.
I can''t find any decent documentation on this. I am using the Community
Edition.
Any pointers / help is appreciated.
Rajul
--
You
2007 Dec 06
1
Building package - tab delimited example data issue
Hello,
I'm trying to integrate example data in the shape of a tab delimited ASCII
file into my package and therefore dropped it into the data subdirectory.
The build works out just fine, but when I attempt to install I get:
** building package indices ...
Error in scan(file, what, nmax, sep, dec, quote, skip, nlines,
na.strings, :
line 1 did not have 500 elements
Calls: <Anonymous>
2013 Oct 04
2
Tab Separated File Reading Error
Hello,
I have a seemingly simple problem that a tab-delimited file can't be read in.
> annoTranscripts <- read.table("matched.txt", sep = '\t', stringsAsFactors = FALSE)
Error in scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings, :
line 5933 did not have 12 elements
However, all lines do have 12 columns.
> lines <-
2007 Apr 18
2
[Bridge] Bridge Problem with RedHat and iptables
Hello,
I am running into a strange problem here. I wrote you a mail earlier
also regarding this.
1. I am trying to run the bridge mode over Redhat 7.3 (kernel 2.4.18).
I tried the latest version of brdige mode utility and also I tried
version 0.94 as well. But whenever I run the brdige mode on this
kernel - the kernel goes panic saying "aiee - killing interrupt
handler". Now I am in a
2008 Mar 20
2
Importing an Excel spreadsheet
Hello
I am trying to import an *.xls spreadsheet into R. I am doing this as
follows:
> read.table(file("A5_DL.xls"))
But obtain the error:
Error in type.convert(data[[i]], as.is = as.is[i], dec = dec, na.strings
= character(0)) :
invalid multibyte string at '?????'
So I copied it all over to a text document and tried to import that, thus:
>
2009 Apr 30
2
problem in reading data
Dear R users
I am runing into a problem in reading data in R
This is the error information
a<-read.table("tt_mb_200409.txt",as.is=T)
Error in scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings,
:
line 1653997 did not have 5 elements
It seams that some lines don't have equal variables. I want to try
>
2011 Apr 07
2
error reading data help please
Dear Readers,
Sorry to bother you.
Have been try to read my data into R (something I have done in the past) but
having an error message with this one.
Any possible help please?
Thanks.
Oz
This is the error I am getting (please see bold):
> setwd("D:/Replication/")
>library(gmp)
> dataFrame2=read.table("data.txt",header=T)
Error in scan(file, what, nmax,
2008 Nov 19
1
controllername_url vs controllername_path
Hi,
''m new RoR.
I was just going thru one book.
I was confused between Controllername_Path() and Controllername_Url()
in RESTful Rails apps.
Can anyone tell me the clear difference?
Thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send
2011 Jun 09
2
Problem with a if statement inside a function
I have a really long functions, and at the end of the function, I am using a
if statement
to tag certain keywords based on whether they have certain values contained
in them.
However, the if statement doesn't seem to work.
When I had split up the commands into various functions, it worked fine, but
I'm not sure
what going on now that it's combined into a single function.
myfunc
2009 Dec 17
1
Configure a linux client to be a member of a Samba Domain and allow users from Domain to sign on.
Hi,
I have a Samba server setup as a PDC. I have a mostly Windows client in the
domain. I have one linux client that I configured and joined the domain.
However, after joining the domain, I can't login with any of the domain
users.
I have the SMB.conf configured on the client side as security=domain
What else do I have to do to allow smb users to login to the linux box? I
searched google
2008 Sep 04
1
text file imported incorrectly
Dear R-users,
When I tried to import a text file (tab delimited) which has 2000+ rows with the following command (With the importData in S, it works though),
x <- read.table(textfile, sep= "\t", skip=5, stringAsFactors=F)
I received the following warning message: Error in scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings,: number of items read is not a multiple of
2004 May 01
5
skip lines on a connection
Hi,
I am looking for an efficient way of skipping big chunks of lines on a
connection (not necessarily at the beginning of the file). One way is to
use read lines, e.g. readLines(1e6), but a) this incurs the overhead of
construction of the return char vector and b) has a (fairly remote)
potential to blow up the memory.
Another way would be to use scan(), e.g.
scan(con, skip=1e6, nmax=0)