similar to: locale problem in W98

Displaying 20 results from an estimated 7000 matches similar to: "locale problem in W98"

2008 Jun 26
3
bug in nls?
Dear all Nobody responded to my previous post so far so I try with more offending subject. I just encountered a strange problem with nls formula. I tried to use nls in cycle but I was not successful. I traced the problem to some parse command. Here is an example DF<-data.frame(x=1:10, y=3*(1:10)^.5+rnorm(10)) coef(lm(log(DF[,2])~log(DF[,1]))) (Intercept) log(DF[, 1]) 0.7437320
2010 Mar 18
5
language!!!
Hi, there´s something that really bothers me about R and after hours and hours of internet research, I´m still stuck with the same problem: I installed R and it is in Spanish, as the system on my work. I would really like it in English and there seems to be no way to change that!?! I´m doing an abroad internship, so my Spanish is far from perfect and my tutorial is in English. Is there any
2017 Aug 16
5
strange behaviour read.table and clipboard
Hi Duncan The simples spreadsheet is: Put a name in the cell, let say "a1" Put number e.g. 1 below "a1" Copy the number to enough rows Select this column and press ctrl-c result is > temp<- read.delim("clipboard") > str(temp) 'data.frame': 1513 obs. of 1 variable: $ a1: Factor w/ 2 levels "1","a1": 1 1 1 1 1 1 1 1 1 1 ...
2017 Aug 17
2
strange behaviour read.table and clipboard
Hi > -----Original Message----- > From: Robert Baer [mailto:rbaer at atsu.edu] > Sent: Wednesday, August 16, 2017 3:04 PM > To: PIKAL Petr <petr.pikal at precheza.cz>; Duncan Murdoch > <murdoch.duncan at gmail.com> > Cc: r-devel at r-project.org > Subject: Re: [Rd] strange behaviour read.table and clipboard > > You said, "put a name in the cell".
2017 Oct 20
1
Error messages using nonlinear regression function (nls)
Hi Keep your messages in the list, you increase your chance to get some answer. I changed your data to groupedData object (see below), but I did not find any problem in it. plot(wlg) gives reasonable picture and I am not such expert to see any problem with data. Seems to me, that something has to be wrong with nlsList function. > wheat.list <- nlsList(Prop ~ SSlogis(end,Asym, xmid,
2004 Feb 04
2
Latin 2 encoding + fonts
Hi, In the FAQ I read about options to specify different fonts than the default ones for the console (in the file Rprofile) and for the graphical output (Rdevga). I would however like to replace Latin 1 with Latin 2 enconding for both (console and graphical) output in Windows and just graphical output in Linux. I guess it is possible but I did not find the way. How can I use the fonts
2017 Aug 02
2
symantec and R instalation info
Dear all I am not sure if this is appropriate for the list, but I have recently found that Symantec blocks R devel from installation. Enclosed is copy of Symantec message. Our IT installed it but I wont be probably alone with this problem. > sessionInfo() R Under development (unstable) (2017-07-31 r73003) Platform: x86_64-w64-mingw32/x64 (64-bit) Running under: Windows 10 x64 (build 14393)
2013 May 13
3
help: R GUI front-end has stopped working
Hello, I'm using the function nlminb of the package stats inside a loop and when the number of trials grows, R crashes and says "R GUI front-end has stopped working". Could you help me with this problem? I have try in versions 2.15.1,2.15.2 and 3.0.0. > sessionInfo() R version 2.15.2 (2012-10-26) Platform: i386-w64-mingw32/i386 (32-bit) locale: [1]
2017 Aug 15
2
strange behaviour read.table and clipboard
Dear all I used to transfer data from excel to R by simple ctrl-c and read.delim("clipboard") construction. I know it is a bad practice but it is easy and for quick exploratory work it is OK. However after changing to new R devel few days ago I encountered weird behaviour. I tried one or two columns. In case of 2 columns, header is repeated after 526 items >
2013 Feb 15
1
Why no line? (ex. from Andy Filed book)
The following script is written by the author of a book on R--Andy Field: You can also download the small datafile, hiccups.dat, from this address: http://www.sagepub.com/dsur/study/articles.htm The script: hiccupsData <- read.delim("Hiccups.dat", header = TRUE) hiccups<-stack(hiccupsData) names(hiccups)<-c("Hiccups","Intervention")
2001 Dec 18
1
W98-compatible sharing
Hi! The problem is that W98 doesn't ask user for username when connecting to SMB-share. This is not a problem when sharing between W98-computers, since those only require password for connecting - username is not taken into account. Problems start when connecting to NT/Samba-servers, which only seem to support two options: - username and password - no username, no password (guest) I have
2004 Sep 01
1
slow backup using W98
I have been using Samba as a Windows server replacement for years, both in my shop and most of my clients. Recently I replaced a WNT 4 server at a customer location with a Linux box - Mandrake 10.0 - which is strictly a file server. The machine my client is using to backup his server is a W98 box w/ 350MHz/256MB, an HP Travan tape drive and Stomp Backup My PC V5.0. This backup was taking about 4
2017 Aug 16
0
strange behaviour read.table and clipboard
>>>>> PIKAL Petr <petr.pikal at precheza.cz> >>>>> on Wed, 16 Aug 2017 06:25:48 +0000 writes: > Hi Duncan The simples spreadsheet is: > Put a name in the cell, let say "a1" Put number e.g. 1 > below "a1" Copy the number to enough rows Select this > column and press ctrl-c > result is >>
2017 Aug 16
0
strange behaviour read.table and clipboard
You said, "put a name in the cell". Does that mean you forgot a header = TRUE? On 8/16/2017 1:25 AM, PIKAL Petr wrote: > Hi Duncan > > The simples spreadsheet is: > > Put a name in the cell, let say "a1" > Put number e.g. 1 below "a1" > Copy the number to enough rows > Select this column and press ctrl-c > > result is > >>
2002 Jul 23
2
Samba + VPN + W98
Hello, I have a network in my office width a Linux RedHat 7.2 Samba Server and W98 Stations, and I want to connect via VPN from my home to the office network from my home W98 station, and I want to have access to all stations from both sides. It's possible to do that? Where can I find documentation or software to implement the solution? Note: I have a ADSL Internet connection. Tia, Jorge
2008 Jun 24
0
bug? nls and "[" indexing
Dear all I just encountered a strange problem with nls formula. I tried to use nls in cycle but I was not successful. I traced the problem to some parse command. Here is an example > DF<-data.frame(x=1:10, y=3*x^.5+rnorm(10)) > coef(lm(log(DF[,2])~log(DF[,1]))) (Intercept) log(DF[, 1]) 0.7437320 0.6831726 # this works > coef(nls(y~a*x^b, data=DF, start=list(a=3, b=.7)))
2017 Aug 17
0
strange behaviour read.table and clipboard
Thank you for the report, it is a bug in buffering in R (not specific to Windows) and will be fixed. Best Tomas On 08/17/2017 10:37 AM, PIKAL Petr wrote: > Hi > >> -----Original Message----- >> From: Robert Baer [mailto:rbaer at atsu.edu] >> Sent: Wednesday, August 16, 2017 3:04 PM >> To: PIKAL Petr <petr.pikal at precheza.cz>; Duncan Murdoch >>
1998 Oct 29
1
w98 password fail
Hi! I?ve just upgraded from w95 to w98 and now I can?t login to the samba server anymore, it does not accept the passwors. NOthing has been changed on the server. I run samba-1.9.16p11. Peter
2008 May 12
3
Curiosity when installing CentOS 5.1 in addition to W98 & WXP
I got half way through an installation of CentOS on a box that has Window$ 98 in the first partition and Window$ XP in the second, where CentOS was designated for partitions 3 (/boot - 128MB) and 4 (/) and had some strange results. During the install, I changed the default OS to boot to Window$ (because I rarely use this machine, but others who don't have a clue use Wxx), but then while the
2003 May 22
3
SAMBA 2.2.8 and W98/NT
Hi, With WXP it's fine but with W98 or NT I don't see services. Here is an extract of the "log.machine" [2003/05/22 10:51:13, 1] smbd/service.c:make_connection(636) pcvideo (141.115.16.24) connect to service rieux as user rieux (uid=902, gid=900) (pid 956) [2003/05/22 10:51:29, 0] smbd/service.c:make_connection(252) pcvideo (141.115.16.24) couldn't find service