similar to: A Question about "R"

Displaying 20 results from an estimated 2000 matches similar to: "A Question about "R""

2004 Jul 21
2
nonparametetric bivariate regression
Hi there, Does R has built-in codes for nonpara. bivariate regression so that I can estimate the joint distribution of two variables as a function of some covariates? Thanks a lot. --------------------------------------------------- Ximing Wu Department of Economics University of Guelph Guelph, Ontario, Canada, N1G 2W1 Tel: (519) 842-4120, ext 53014 Fax: (519) 763-8497 email: xiwu at
2012 Aug 07
2
What is this called? lapply(datum,"[[","ColumnName")
Hello R users I recently learned how to use this command: lapply(datum,"[[","ColumnName") Unfortunately, I don't know how exactly it works, what it's called (in particular the "[[" part], and what other things you can do with it (retrieve multiple columns?). Given datum is a list of dataframes with the same column, but different number of rows,
2000 Jan 28
0
Archetypal Analysis in R
Is a library available for R that includes algorithms for something called "archetypal analysis," a method similar to principal components analysis that is designed to find "archetypes" or "pure types" from multidimensional data. I have contacted one of the authors who has written about archetypal analysis but thought I'd check here also. Thanks. Loren
2010 Jul 20
1
metaplot (rmeta)
Greetings I have been trying to use metaplot to create a forest plot of my meta-analysis results. My data is in the form of ORs, so I've been inputting the ORs as the point estimate (mn) and the SEs of the logORs as the SE (se). However, whilst the point estimates appear to be displayed properly, many of the confidence intervals go below zero (not possible for an OR, as far as I know). I
2003 Jan 06
3
Printer Driver Download Problem - PPD's Not DL'ing
Hey All, just a quick question about printer upload/download stuff that's been confusing the hell out of me for a couple days... This might be a Samba, or a CUPS problem, so i've posted this on both newsgroups, but if anyone's had a similar problem I'd really appreciate any help! I'm running Samba 2.2.7 and CUPS 1.1.17 on a RedHat 7.3 System.. I'm trying to get the
2016 Apr 08
5
how to manually specify domain controllers
We have two Samba 4.2.3 servers with FreeRadius to authenticate wireless users against active directory. Using DNS, sometimes both servers end up using the same domain controller to authenticate users. I would like to distribute the load to different DCs. Is there a way to manually point Samba to certain DCs? I tried the following configuration: security = ads password server =
2012 Jun 26
1
Storing whole regression results
Hello seasons R users, Is it possible to store a complete regression result into an array? I've already been able to save individual regression coefficients, but would like to store the whole regression results into different arrays through a loop. So that in under different quantiles regressions, I would be able to create a loop and store the full regression result each time into a
2010 Feb 05
1
Error 11: can not backup /var/lib/zope2.9
Moin, I wrote a small backup script that use rsync: r5backup (http://sourceforge.net/projects/r5backup/). It backup dozen of unix machines for many people. But when I try to backup /var/lib/zope2.9 I get an error 11. It does not matter if zope is running or not. I can't see an error meassge in the (verbose) logfile: [client] parse_filter_file(/etc/r5backup/profiles/boulder.exclude,0,3)
2006 Dec 23
0
[Fwd: [AGDG-LIST:428] Summer Course in Guelph]
-------- Original Message -------- Subject: [AGDG-LIST:428] Summer Course in Guelph Date: Fri, 22 Dec 2006 09:12:24 -0500 From: Larry Schaeffer <lrs at uoguelph.ca> Reply-To: lrs at uoguelph.ca To: Animal Geneticist's Discussion <agdg-list at colostate.edu> The Centre for Genetic Improvement of Livestock at the University of Guelph is pleased to announce a one week summer course
2007 May 25
3
normality tests
Hi all, apologies for seeking advice on a general stats question. I ve run normality tests using 8 different methods: - Lilliefors - Shapiro-Wilk - Robust Jarque Bera - Jarque Bera - Anderson-Darling - Pearson chi-square - Cramer-von Mises - Shapiro-Francia All show that the null hypothesis that the data come from a normal distro cannot be rejected. Great. However, I don't think it looks
2005 Dec 08
0
Genetic Algorithms with rbga.bin using AIC as the evalFunc
Hi all. I would like to use the rbga.bin function (from the "genalg" package) as part of a model selection process to whittle down a list of ~40 potential explanatory variables to only the most important ones. Unfortunately, despite my working knowledge of R for linear modeling and basic statistics, I cannot understand the two examples provided with the documentation for rbga.bin
2003 Jul 30
1
compile c code from R
Hi, Can I turn my R code automatically into C? If yes, how can I do that? Do I benefit by doing it? (I know I can do this in matlab and it increases the speed when there is a lot of looping...) thanks a lot. x.w ------------------------ Ximing Wu Department of Economics University of Guelph Guelph, ON, N1G 2W1 Canada Tel: (519) 824-4120 ext. 53014 Fax: (519) 763-8497 email: xiwu at uoguelph.ca
2012 Jul 05
5
Netbios over VPN
I am attempting to utilize BackupPC on a Fedora 14 server to backup a remote client. As I understand, it's primary mechanism for finding clients is performing a nmblookup <clientname> This works fine for computers connected to the local network. My issue is extending ?Samba's? search to encompass our other network - the point-to-point VPNs Using OpenVPN, we have a number of road
2006 Oct 21
0
[Fwd: [AGDG-LIST:405] R Computing Contest]
-------- Original Message -------- Subject: [AGDG-LIST:405] R Computing Contest Date: Sat, 21 Oct 2006 12:08:13 -0400 From: Larry Schaeffer <lrs at uoguelph.ca> Reply-To: lrs at uoguelph.ca To: Animal Geneticist's Discussion <agdg-list at colostate.edu> For those that are interested only: R Computer Programming Challenge Given: y = Factor A + Factor B + b1(Covariate1) +
2015 Jan 19
2
migrating accounts and passwords
Hi all, I'm trying to migrate my users to new hardware. They're currently using Samba version 3.4.7-0.50 on Fedora 11 I have a new F20 server set up with Samba version 4.1.14 As you know, F11 had user accounts starting at uid 500 whereas F20 has accounts starting at uid 1000 I've already done usermod -u <NewUID> and groupmod -g <newGID> for the Linux accounts to bump
2000 Feb 02
0
Summary: Archetypal Analysis in R
I previously asked a question about performing archetypal analyis in R. In addition to the responses I received from r-help, the author sent me some S code to peform the analysis. With the author's permission, I ported the S code to R using two excellent sets of instructions: (1) From the FAQ - 5.5 How can I create an R package? (2) Thomas Lumley's instructions on porting S to R -
2016 Apr 27
4
wbinfo -u and -g gives no output
The strange thing is that I cloned this server from another server, and the original server does not have the "wbinfo -u" problem. Both servers have the exact same configurations.. Thanks. ----- Original Message ----- From: "Peter Bulin" <bulin.peter at gmail.com> To: dxu at uoguelph.ca Cc: "samba" <samba at lists.samba.org> Sent: Wednesday,
2009 Mar 10
0
[SoC09-Idea] cranlab.
Hi everybody, just another Google Summer of Code project idea. Best, Manuel. ---------------------------------------------------------------------- cranlab -- "You can't control what you can't measure" [0] Mentor: Manuel J. A. Eugster Summary: The aim of this project is the (1) implementation of software metrics to analyze R packages and (2) the creation of a CRAN
2012 Mar 30
6
9-STABLE, ZFS, NFS, ggatec - suspected memory leak
Hi all, Setup: I'm running 2 machines (amd64, 16GB) with FreeBSD 9-STABLE (Mar 14 so far) acting as NFS servers. They each serve 3 zpools (holding a single zfs, hourly snapshots). The zpools each are 3-way mirrors of ggate devices, each 2 TB, so 2 TB per zpool. Compression is "on" (to save bandwith to the backend, compressratio around 1.05 to 1.15), atime is off. There is no
2016 Jun 08
1
wbinfo -u and -g gives no output
What version are you using? I also had this problem with a security update of debian. I reported this to then and they fixed it. So if you are using debian, update to the latest version and see if this works Op 8 jun. 2016 10:13 p.m. schreef Dennis Xu <dxu at uoguelph.ca>: Hi, I am checking again if there are any other suggestions. The Samba server is joined to AD successfully. I can