Displaying 20 results from an estimated 2000 matches similar to: "save(iris,file="
2003 Nov 05
1
save(iris,file="clipboard",ascii=TRUE)
Is this a bug? I thought that "clipboard" could always be substituted
for a filename when dealing with ASCII files.
> data(iris)
> save(iris,ascii=TRUE,file="clipboard")
Error in file(file, "wb") : `mode' for the clipboard must be `r' or `w'
Also this (where gclip is a utility found at unxutils.sourceforge.net
that copies its standard input to the
2003 Nov 08
5
accessing windows clipboard from load and save (PR#4999)
Full_Name: Gabor Grothendieck
Version: 1.7.1
OS: Windows 2000
Submission from: (NULL) (207.35.143.81)
save(x,ascii=TRUE,file("clipboard"))
works but
load(file("clipboard"))
does not.
Even better would be if
save(x,ascii=TRUE,"clipboard")
and
load("clipboard")
worked as that would provide consistency with
2016 Feb 19
2
should `data` respect default.stringsAsFactors()?
Aha... Hadn't noticed that stringsAsFactors only works via as.is in read.table.
Yes, the doc should probably be fixed. The code probably not -- packages loading different data sets depending on user options is an even worse idea than hav?ng the option in the first place... (I don't mean having the possibility, I mean the default.stringsAsFactor thing).
In general, read.table() gets
2016 Feb 19
4
should `data` respect default.stringsAsFactors()?
Hi Peter,
Sorry if I was not clear. Perhaps an example will make my point:
> data(iris)
> class(iris$Species)
[1] "factor"
> write.table(iris,'data/myiris.tab')
> data(myiris)
> class(myiris$Species)
[1] "factor"
> rm(myiris)
> options(stringsAsFactors = FALSE)
> data(myiris)
> class(myiris$Species)
[1] "factor"
>
2016 Feb 19
0
should `data` respect default.stringsAsFactors()?
On Thu, Feb 18, 2016 at 6:03 PM, Cook, Malcolm <MEC at stowers.org> wrote:
> Hi Peter,
>
> Sorry if I was not clear. Perhaps an example will make my point:
>
>> data(iris)
>> class(iris$Species)
> [1] "factor"
>> write.table(iris,'data/myiris.tab')
>> data(myiris)
>> class(myiris$Species)
> [1] "factor"
>>
2013 Feb 13
1
context of runif()
Greetings,
I am exploring some random forest analysis methods and have come upon one
aspect I don't fully understand from any manual. The code of interest is
as follows from the randomForest package:
myiris=cbind(iris[1:4], matrix(runif(508*nrow(iris)),nrow(iris),508))
This would be following by the rfcv() function for cross-validation but I
am confused about the former syntax.
My
2016 Feb 19
0
should `data` respect default.stringsAsFactors()?
Hi,
> Aha... Hadn't noticed that stringsAsFactors only works via as.is in read.table.
>
> Yes, the doc should probably be fixed. The code probably not
Agreed.
Is someone on-list authorized and willing to make the documentation change? I suppose I could learn what it takes to be a "player", but for such a trivial fix, it probably is overkill. Dissenting opinions?
2016 Feb 18
2
should `data` respect default.stringsAsFactors()?
Hiya,
Probably been debated elsewhere....
I note that R's `data` function does not respect default.stringsAsFactors
By my lights, it should, especially as it is documented to call read.table, which DOES respect.
Oh, but: http://r.789695.n4.nabble.com/stringsAsFactors-FALSE-tp921891p921893.html
Compelling. I have to agree.
So, I change my mind.
By my lights, `data` should then be
2005 Jul 01
3
error while connecting from squirrelmail
Hi all,
I am new to dovecot and squirrelmail and I am trying to configure squirrelmail with dovecot as its imap server. When i disable "Secure Imap (TLS)" option (2-A-7) from squirrelmail configure menu, it's working fine. But when i try to enable tls support, squirrelmail is giving the following error:
Warning: fsockopen(): unable to connect to 192.xx.xx.xx:993 in
2003 Oct 14
1
Web Site Suggestion Regarding R Source
In the Lua language they have put the entire source on the net in
such a way that you can easily browse it. Go to:
http://www.lua.org/source/5.0/
to see what I mean.
One of the nice things about R is that if you want more info on
a function than in the help page you can just type the name of
the function at the R prompt and you get its source, at least if
it itself was written in R.
2003 Dec 25
1
problem with pipes (PR#5053)
I gather that the pipe problem is a difficult one to solve
since its highly desirable (at least for me) to be able to
use Windows pipes yet its been outstanding since the previous
R release.
I have one idea on a possible workaround and associated
feature and I wonder if this feature is feasible?
I just noticed that
z <- system("c:\\a.bat", intern = TRUE, invisible = TRUE)
is
2005 Jul 06
1
dovecot not able to access sentmail folder in home directory(chdir)
using dovecot version 0.99.11
while accessing through squirrelmail or even connecting manually(using openssl) to the server dovecot is not able to access the folder
the mail.err log file has the following entry:
dovecot: (/home/user) permission denied error no 89 returned by child process
the squirrel mail error was
connection dropped by imap server
Query capability
thanks
vineet
2006 Sep 27
1
Almost 300 hours of videos about Free and Open Source Software
Hello!
People from International Free Software Forum (the largest brazilian event about FLOSS) have done it two times in a row. They've put online the whole video coverage for this year's event (also online are the videos from last year). It's almost 300 hours in Ogg Theora. I think it's worth a mention in theora.org website. It's a shame there's no subtitles, for most of
2004 Apr 20
1
Re: [R] Error message during debug (PR#6804)
On Tue, 20 Apr 2004 13:48:43 -0400 (EDT), "Gabor Grothendieck"
<ggrothendieck@myway.com> wrote :
>
>In R 1.9.0 on Windows XP Pro I get an error if I try to
>debug the identity function f shown:
>
> > f <- function(x)x
> > debug(f)
> > f(1)
> debugging in: f(1)
> Error in f(1) : Unimplemented feature in eval
> > R.version.string
> [1]
2004 Jan 26
4
net: ../../../libraries/liblber/decode.c:644: ber_scanf: Assertion `((ber)->ber_opts.lbo_valid==0x2)' failed.
net groupmap modify ntgroup="Domain Admins" unixgroup=504
net: ../../../libraries/liblber/decode.c:644: ber_scanf: Assertion `((ber)->ber_opts.lbo_valid==0x2)' failed.
I was told this may be specific to ldap setup with samba 3.0.0, but is fixed in later versions of samba.
however, in 3.0.1, there is a far worse bug that makes machines only available some of the time(i was told
2006 Aug 09
3
Regarding samba compilation
Hi,
Am trying to add some Debug statement to smbd, for example in service.c. But problem is when I recomplile and make install, smbd doesnt get updated with that code. problem here is this smbd executable(usr/sbin/smbd) doesnt get updated with the latest install. please help..
Regards,
Samid.
_______________________________________________
No banners. No pop-ups. No kidding.
Make My Way
2008 Feb 22
1
Integrating Misys into existing Samba network
Hi,
I do the networking for a smallish medical clinic here. They have
decided to go with the Misys MyWay Electronic Medical Records system.
The engineers from Mysis about freaked out when the found out that I'm
running Samba on OpenBSD, and had all kinds of issues they were worried
about--whether their Windows Server 2003 system with Active Domain would
integrate with Samba was the
2004 Nov 18
5
Building Packages on Windows using .Rbuildignore (PR#7379)
On Thu, 18 Nov 2004 00:38:47 +0000 (UTC), Gabor Grothendieck
<ggrothendieck@myway.com> wrote :
>DIFFERENCE BETWEEN USING .RBUILDIGNORE AND NOT
>
>The reason that the processing is different according to whether one
>uses .Rbuildignore or not is that
> R CMD build
>takes the .Rbuildignore file into account but
> R CMD install
> R CMD check
> R CMD build
2004 Jan 07
3
different win machines on PDC not accessible at different times
I am having nearly the EXACT same problem as
http://lists.samba.org/archive/samba-technical/2003-December/033315.html
I have samba 3.0.1-1 rpms and fedora core 1.
Samba is set as a WINS server, which the win2k machines, who use DHCP from router, are pointed to by the WINS server address specified in router(each of the win2k machines, via ipconfig /all reveal they do in fact use the wins server).
2004 Jan 27
0
re: cannot map ntgroup to ldap group-fixed
ok, i noticed the gid of ldap group "users" was 539, but the one it was migrated from in /etc/group was 100, so I changed the gid and everything seems to work now? but why should it care that the gid is the same as it's /etc/group counterpart?
--- On Tue 01/27, John H. < mrmailer@myway.com > wrote:
From: John H. [mailto: mrmailer@myway.com]
To: samba@lists.samba.org