Displaying 20 results from an estimated 2000 matches similar to: "function bug (PR#7199)"
2004 Oct 21
2
a few questions
I don't have any there; I suppose that is the problem. I did a locate
*.xslt and nothing pertaining to icecast came up. I suppose I should
grab the source and check it out. I installed from the rpm.
Thanks,
Richard
Michael Smith wrote:
>On Thursday 21 October 2004 14:50, Richard Morey wrote:
>
>
>>Ok, I think I see. The xslt files are kind of a template which tells
2004 Aug 24
1
(PR#7199) function bug
This is a misunderstanding, I think, not a bug. R is using partial
matching and the `2', since it is not named, is being sent through the
`...'.
-roger
morey@banta.psyc.missouri.edu wrote:
> output of R.version
> platform i686-pc-linux-gnu
> arch i686
> os linux-gnu
> system i686, linux-gnu
> status
> major 1
> minor 9.1
> year 2004
2004 Aug 24
2
bug or no?
The following code prints [1] 2, as it should
temp<-function(ab,...){
print(ab)
}
temp(2,s=3)
However, this code prints [1] 3:
temp<-function(sb,...){
print(sb)
}
temp(2,s=3)
It should still print [1] 2. It appears
that if a variable in ... begins with the same letter as another variable,
the value in the variable in ... overwrites the value in the variable with
the same first letter.
I
2007 Mar 05
1
Samba over SSH to Windows Vista
After having scoured the net for a way to do SMB over SSH with Windows,
I've tried everything I have found and I still can't get it to work.
I'm using Windows Vista as the client and FC6 with Samba 3.0.24-1 as the
server. I have set up a share and can successfully connect to that share
with no ssh tunnel.
I would like to tunnel SMB over SSH, so here is what I have tried:
1.
2007 Mar 16
1
error code 5 from Lapack routine 'dsyevr'
While using the rmvnorm function, I get the error:
Error in eigen(sigma, sym = TRUE) : error code 5 from Lapack routine
'dsyevr'
The same thing happens when I try the eigen() function on my covariance
matrix. The matrix is a symmetric 111x111 matrix. Well, it is almost
symmetric; there are slight deviations from symmetry (the largest is
3e-18). I have this in an MCMC loop, and it
2007 Sep 07
1
contourplot lines, text, and mtext
If I have a contourplot (in the lattice package) and I want to add
straight lines to it, how do I do this?
I see that there are llines() and lsegement() functions for lattice
plots, but they don't seem to do anything in this case:
library(lattice)
library(KernSmooth)
x=rnorm(10000)
y=x+rnorm(x,0,.5)
a=bkde2D(cbind(x,y),.7)
z=as.vector(a$fhat)
grid=expand.grid(x=a$x1,y=a$x2)
grid$z=z
2008 May 07
0
got stuck in setting up samba to linux box through putty tunneling
I read the posting below. but I have not figured out why my vista pc won't work.
here is what I did -
1. I disable window file sharing;
2. in putty, i add a tunnel:
???? source port: 445
???? destination port: my linux box IP: 139
? ?I forward 80. i see http://127.0.0.1 yields my web server's start page.
3 i also use secpol.msc and change local policies -> security options.
By default
2007 Mar 10
3
Mac vs. PC
My adviser has a Mac notebook that he bought 6 months ago, and I have a
PC notebook I bought a month ago. Here are the respective specs, as far
as I know them:
His:
Mac OSX
1 GB DDR2 RAM
Intel Core Duo, 2 GHz (2MB cache per core)
Unknown HD
Mine
Windows Vista Home Premium 32bit
2 GB DDR2 RAM
Intel Core 2 Duo, 2 GHz (4MB cache)
5400 RPM Hard Drive
We are both running R. As a test to see whose
2008 May 07
1
two questions
1. I just found out port 445 and 139 are both blocked by my ISP (cablevision).
i use Vista Ultimate.
Is there a way to solve my problem? see my email below.
2. I am a new user of this mailing list. how can i read the postings and reply to a post? it does not seem allow me to reply to a post in your archive page.
thanks,
Dan
----------------------------------
I read the posting below. but I
2009 Apr 09
4
problems with integrate ... arguments
Hi everyone,
I saw this problem dealt with here:
http://markmail.org/search/list:r-project?q=integrate#query:list%3Ar-project%20integrate+page:1+mid:qczmyzr676pgmaaw+state:results
but no one answered that request that I can tell. I'm having the same
problem. I'm having problems passing arguments to functions that I'd
like to integrate. I could swear this worked in the past, but I
2009 Jul 09
1
Changing text in a tkentry widget
I searched the web and the list archives for a solution to this, but
didn't see anything, so here goes. I'm new to tcltk. I'm trying to
change the contents of a tkentry widget when a button is pressed. Once I
get that working, the widget will be read only to the user. Here is some
toy code:
###############
require(tcltk)
thisEnv=environment()
tt<-tktoplevel()
Name <-
2011 Mar 17
1
assigning to list element within target environment
I would like to assign an value to an element of a list contained in an
environment. The list will contain vectors and matrices. Here's a simple
example:
# create toy environment
testEnv = new.env(parent = emptyenv())
# create list that will be in the environment, then assign() it
x = list(a=1,b=2)
assign("xList",x,testEnv)
# create new element, to be inserted into xList
c = 5:7
2004 Oct 20
2
a few questions
Ok, I think I see. The xslt files are kind of a template which tells
icecast how to format the xml file that is the admin interface? Where
can I get either an example xslt file or information on how this works?
I didn't see details in the icecast docs. I have now skimmed the
information on xml.com, but don't I need to know what xml tags icecast uses?
Thanks for the help,
Richard
2004 Oct 20
2
a few questions
I was under the impression icecast wrote useage statistics to that
directory, and you accessed them via http://host:port/admin/
Where does the xslt file come from that it tries to access when you
attempt to access the admin page?
Michael Smith wrote:
>On Thursday 21 October 2004 05:36, Richard Morey wrote:
>
>
>>I have just gotten a stream working and it is very cool. I am
2010 Oct 07
2
long double, C, fortran
I'm using .Call() to call C code from R under Windows (on an Intel
Core 2 duo). The C code involves some very small numbers, and I think
I'm losing precision using doubles. I thought I might use long doubles
to see if I can get that precision back. I have a few questions:
1. Does this affect the portability to other OSs or processors?
2. I'm returning the results in a matrix. Will
2008 Aug 25
1
aov, lme, multcomp
I am doing an analysis and would like to use lme() and the multcomp
package to do multiple comparisons. My design is a within subjects
design with three crossed fixed factors (every participant sees every
combination of three fixed factors A,B,C). Of course, I can use aov() to
analyze this with an error term (leaving out the obvious bits):
y ~ A*B*C+Error(Subject/(A*B*C))
I'd also like
2006 Jan 31
1
approximation to ln \Phi(x)
I am using pnorm() with the log.p=T argument to get approximations to ln \Phi(x) and qnorm with the log.p=T argument to get estimates of \Phi^{-1}(exp(x)). What approximations are used in these two functions (I noticed in the source pnorm.c it doesn't look like Abramowitz and Stegen) and where can I find the citation?
Thanks,
Richard Morey
2005 Mar 24
1
Has the add parameter of plot commands been deprecated?
R for OS X, version 2.0.1
Has the add parameter of plot commands been deprecated? It no longer
occurs in the help listing for plot, and doesn't work, either. If it
has been deprecated, what is the replacement? That is, how does one
overlay an existing plot?
--
John R. Vokey, PhD
Professor
B.E.R.G. - Behaviour and Evolution Research Group
Micro-Cognition Laboratory
Department of
2009 Nov 04
2
error in install.packages() (PR#14042)
Full_Name: Michael Spiegel
Version: 2.10
OS: Windows Vista
Submission from: (NULL) (76.104.24.156)
The following error is produced when attempting to call install.packages. Here
is the results of the traceback:
> source('http://openmx.psyc.virginia.edu/getOpenMx.R')
Error in f(res) : invalid subscript type 'list'
> traceback()
7: f(res)
6: available.packages(contriburl =
2013 Oct 26
1
samba + kerberos + active directory with multiple domains
I've almost got this thing working. I have it set up on a centos machine to authenticate logins and automounts to windows file servers. But it won't allow me to specify a domain as part of the userid. I can set a default domain in smb.conf and logging into that domain works like a champ. And I can list the other domains with "wbinfo --online-status" (not sure what