search for: netvig

Displaying 20 results from an estimated 27 matches for "netvig".

Did you mean: natvig
2005 May 24
2
Tracking progress during iterations
Dear all, I am using R 2.1.0 for Windows on XP SP2. In a loop such as below, we can track the progress by a screen print display as below (in S): for (i in 1:10){ print(paste("Starting simulation run no...",i)) result<-c(result,mean(data)) #A dummy example of the simulation to be done } In S-plus environment, the statements Starting simulation run no...1 Starting simulation
2010 Feb 25
1
locfit: max number of predictors?
Hi All, In another thread Andy Liaw, who CRAN lists as locfit maintainer; said: <quote> From: "Liaw, Andy" <andy_liaw at merck.com> To: "Guy Green" <guygreen at netvigator.com>; <r-help at r-project.org> Subject: Re: Alternatives to linear regression with multiple variables Date: 22 February 2010 17:50 You can try the locfit package, which I believe can handle up to 5 variables. E.g., </quote> Looking in the locfit documentation (e.g. http://ww...
2009 Nov 27
0
META: Somebody please unsubscribe this chap until he fixes his problem
...2:30:16 -0500 (EST) Received: from mail.centos.org (voxeldev.centos.org [127.0.0.1]) by mail.centos.org (Postfix) with ESMTP id 28D216F774; Mon, 23 Nov 2009 22:29:24 -0500 (EST) X-Original-To: centos at centos.org Delivered-To: centos at centos.org Received: from mail.bradbury.edu.hk (ipvpn098242.netvigator.com [203.198.207.242]) by mail.centos.org (Postfix) with ESMTP id 80F3A6F774 for <centos at centos.org>; Mon, 23 Nov 2009 22:29:19 -0500 (EST) Received: from [192.168.9.5] (ipvpn098241.netvigator.com [203.198.207.241]) by mail.bradbury.edu.hk (Postfix) with ESMTPA id B12514795C for &...
2009 Mar 26
2
Getting started,
Hello, First of all, I'm new to R and I don't have anyone who already knows the language to ask for tips, so please excuse my ignorance. I'm trying to download data direct from the Federal Reserve statistics website and graph it, using the following: #This downloads the data from the Fed website
2006 Mar 16
3
Did I use "step" function correctly? (Is R's step() function reliable?)
Hi all, I put up an exhaustive model to use R's "step" function: ------------------------ mygam=gam(col1 ~ 1 + col2 + col3 + col4 + col2 ^ 2 + col3 ^ 2 + col4 ^ 2 + col2 ^ 3 + col3 ^ 3 + col4 ^ 3 + s(col2, 1) + s(col3, 1) + s(col4, 1) + s(col2, 2) + s(col3, 2) + s(col4, 2) + s(col2, 3) + s(col3, 3) + s(col4, 3) + s(col2, 4) + s(col3, 4) + s(col4, 4) + s(col2, 5) + s(col3,
2009 Jun 30
1
Clearing out or reclaiming memory
Hello, Is there a command for freeing up the memory used by R in holding data tables? The structure of the procedure I have is as follows: 1) Read multiple txt files in using read.table(...). 2) Combine the read tables using rbind(...). 3) Attach the data using attach(...) and then use do a multiple regression using lm(...). So far so good, but when I then perform a further regression by
2010 Apr 14
1
Problems getting symbols() to show table data
Hello, I am trying to create a graphic to help me visualise data. A (very simplified) sample of the data is http://n4.nabble.com/file/n1839676/circle_data.txt circle_data.txt : Aug-07 Nov-07 Feb-08 data1 1 1.5 -1 data2 1 1.2 1.6 data3 1.3 1.4 1.8 data4 1.3
2014 Dec 17
0
Virt SIG Meeting minutes for 16 Dec 2014
...[14:27] *** kbsingh_ (~kbsingh at n12.lon1.karan.org) has joined channel #centos-devel *** ChanServ (ChanServ at services.) has changed mode for #centos-devel to +o kbsingh_ <kbsingh_> thanks freenode [14:28] <gwd> Indeed we did lose kbsingh_ *** talori (~timothy.l at n219077078209.netvigator.com) has joined channel #centos-devel <gwd> dcaro: FYI a lot of the infrastructure for the SIGs isn't quite in yet; so even if we said "yes you're in", it may be some time before you can actually build something... [14:29] * kbsingh_ back - freenode deci...
2010 Apr 15
4
Does "sink" stand for anything?
Hello Everyone,   Learning about R and its wonderful array of functions. If it's not obvious, I usually try to find out what a function stands for. I think this helps me remember better.   One function that has me stumped is "sink." Can anyone tell me if this stands for something?   Thanks,   Paul         __________________________________________________ [[alternative HTML
2003 Dec 01
0
No subject
...dress(address); sender.setMobilePhone("+49171-2782880"); sender.setWebSiteUrl(" http://www.soldin.de "); sender.setEmail(" edgar@soldin.de "); sender.setGender(true); System.out.println(sender.toString()); } } Return-Path: <arraylai@netvigator.com> Delivered-To: samba@lists.samba.org Received: from imsm031.netvigator.com (imsm031.netvigator.com [208.167.231.149]) by lists.samba.org (Postfix) with SMTP id 0B70C4230 for <samba@lists.samba.org>; Tue, 12 Jun 2001 05:08:04 -0700 (PDT) Received: (qmail 1296 invoked from networ...
2004 Sep 21
1
Shorewall Problem!!!
Hello!!1 Everyone My shorewall version is 2.1.9. When i used one interface sample (http://slovakia.shorewall.net/pub/shorewall/Samples/samples-2.0.1/one-interface.tgz)to start my firewall (192.168.11.6), i cannot used another computer to login Webmin or ssh (192.168.11.5). So, what can i do ?
2007 Feb 10
1
where is the subfolders
I have just set up a dovecot IMAP + Maildir. Would any one tell me where Dovecot store the subfolders and how to delete invalid folders. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://dovecot.org/pipermail/dovecot/attachments/20070210/5e700999/attachment-0001.html>
2009 Jun 20
1
Maximum number of tables combined with rbind
Hello, I have been using read.table to read data files into R, then rbind to combine them into one table. The column headings are all identical, so it should be straightforward, and it seems to be working well so far. My question is: What is the maximum number of tables that can be combined with rbind? Is it driven by the number of rows in the tables, by a constraint with the syntax of rbind
2007 Jan 13
1
xapian query group result by domain?
Hi I know it might not possible, but just want to try my luck. say, for a web search engine backed by xapian.... Is it possible to group the result by domain just like google's [ More results from www.abc.com ], when there are more than 1 results from the same domain? Or, anyone have some work around to do it? Cheers Andrey Kong
2004 Apr 28
1
Feature Request: OS X / hfs+ / resources fork
rsync is a very useful tool for me to backup from Max OS X to a linux server. However, would developers please add one feature: When rsync runs on an OS X machine and the source files are in hfs+ (or hfs) filesystem, copy the resources fork to a file with filename starts with a dot and append the original filename. That's the current behaviour of samba client on OS X interacting with
2002 May 11
0
smbpasswd for normal user
Dear all, I have set up file sharing for users' directories on a RH7.2 linux server. I am running Samba 2.2.1a I configured all Linux users who have the right to use Samba to belong to "smbuser" group. However, user can't change their password using smbpasswd command. Only root user can change the password for user. When user tries to change password using smbpasswd, the
2007 Sep 27
0
NT domain or AD ?
Greetings, I am using samba as a file server (very happily). I currently have a samba PDC (3.0.25) which serves files to XP and linux clients (<10). This operates using tdbsam with all xp clients being members of the NT domain. The linux clients are not members of the domain, accessing files via a simple cifs mount. UID/GID for the same user name is the same on all unix clients (done manually
2005 May 20
1
Memory question on R
Dear all, Apology for posting this amateurish question. I am running R version 2.1.0 on Windows XP for a simulation exercise. Seemingly, I've encountered memory allocation problem during the recursive procedure. I've looked at the help section called ?Memory() and ?memory.limit(), and ?memory.size but the comamands seem to refer to Unix version of R. I wound be very grateful if anyone
2009 Jun 21
1
Warning messages when using rbind
Hello, I have been using a very simple rbind approach (simple enough for me to understand) to combine data files within R. It seems to work fine, but then generates warning messages for reasons that I can't begin to understand. The text below shows the issue. testread12=read.table("C:/Files/Test100.txt", head = T) testread11=read.table("C:/Files/Test101.txt", head =
2010 Mar 08
1
Help with Hmisc, cut2, split and quantile
Hello, I have a set of data with two columns: "Target" and "Actual". A http://n4.nabble.com/file/n1584647/Sample_table.txt Sample_table.txt is attached but the data looks like this: Actual Target -0.125 0.016124906 0.135 0.120799865 ... ... ... ... I want to be able to break the data into tables based on quantiles in the "Target" column. I can see (using