search for: waded

Displaying 20 results from an estimated 756 matches for "waded".

Did you mean: wade
2006 Jul 14
1
Cluster Analysis with flexible beta linkage method
Hi all, I am trying to run a cluster analysis using Sorenson (Bray-Curtis) distance measure with flexible beta linkage method. However, I can't seem to find flexible beta in any of the functions/packages I have looked at. Any help would be appreciated. [[alternative HTML version deleted]]
2001 Feb 22
2
afx.h... configure: error: Could not find the MFC includes
This is driving me nuts. I'm trying to compile an MFC application using WINE. I can specify the location of the ATL includes and configure is quite happy but it chokes when I give it the MFC includes in the same way: ./configure --with-atl-includes=/home/wade/VC98/atl/Include --with-mfc-includes=/home/wade/VC98/mfc/Include Wassup? I'm using Winemaker 0.5.5 And wine
2006 Nov 16
3
X-fold cross validation function for discriminant analysis
Hi all, I ran a discriminant analysis with some data and want to get a general idea of prediction error rate. Some have suggested using X-fold cross validation procedure. Anyone know if there is a function for this in R? Thanks, Wade [[alternative HTML version deleted]]
2006 May 22
3
ssize_t not defined in sockconn.c (PR#8889)
Problem: Build of R failed when compiling sockconn.c. The problem seemed to be that ssize_t was not defined. The following change in sock.h fixes the problem, though it's probably not fixed the _right_ way. /* Following line changed by WTR (Cira) to overcome make problem. #if defined Win32 && !defined _SSIZE_T_ typedef int ssize_t; #endif */ typedef int ssize_t; Thanks! Wade
2008 Jan 07
3
Naming list objects
Hi all, I am trying to name list objects, but am having trouble doing so. At the moment I have list alninc that has 3 objects and I can refer to them as alninc[[1]] . . .alninc[[3]]. I would like to refer to them as alninc$F, alninc$V and alninc$G. How do I do this? This appears to be an elementary question, but I can't find the solution anywhere. Thanks Wade Wall [[alternative HTML
2008 Oct 26
3
Process dataframes from list
Hi all, I have roughly fifty dataframes and a dataframe with the names of the fifty dataframes. I want to perform the same set of manipulations on all fifty dataframes, but can't find a way to batch process from a list with the dataframe names using a loop. Is there a way to read the file names from the dataframe with the names and then call the referenced dataframe? This would save me a
2009 Oct 14
1
change order of bar plot categories
Is this what you want? temp<-c(rep("Low",2),rep("Medium",2),rep("High",2)) light<-rep(c("Dark","light"),3) avg<-dat.avg2[,3] # se<-dat.avg2[,4] dat.avg.temp<-data.frame(cbind(avg,se)) dat.avg.temp<-data.frame(cbind(temp,light,dat.avg.temp)) dat.plot<-qplot(light,avg, fill=factor(temp),data=dat.avg.temp, geom="bar",
2008 Feb 02
9
best text editor for Linux?
Hi all, I know this question has been asked in the past, but I am wondering if anyone running R on Linux has any guidance as to a text editor that works well with R. At the present time I am running R on Windows and using TINN-R. For a number of reasons I want to switch to Linux, but can't find much in the way of a text editor in sync with R. Any experiences, recommendations would be
2003 Mar 12
4
Printers Icon
I have installed Samba2.2.7a on an Ultra5 Solaris 8 Operating System. The smb.conf file has been configured and all appears to work fine. However, along with my shared resource, I am seeing the Printers icon. I only want to use Samba to share resources, and not for printing. Is there a way to make the Printers Icon invisible? I already tried the hide files, and veto files parameters in
2006 Jul 24
3
random section of samples based on group membership
Hi all, I have a matrix of 474 rows (samples) with 565 columns (variables). each of the 474 samples belong to one of 120 groups, with the groupings as a column in the above matrix. For example, the group column would be: 1 1 1 2 2 2 . . . 120 120 I want to randomly select one from each group. Not all the groups have the same number of samples, some have 4, some 3 etc. Is there a function to
2010 Nov 05
4
assignment operator saving factor level as number
Hi all, I have a dataframe (df1) that I am trying to select values from to a second dataframe that at the current time is only for the selected items from df1 (df2). The values that I am trying to save from df1 are factors with alphanumeric names df1 looks like this: 'data.frame': 3014 obs. of 13 variables: $ Num : int 1 1 1 2 2 2 3 3 3 4 ... $ Tag_Num : int 1195
2009 May 29
2
excluding NAs in data frame without deleting rows
Hi all, I have a binary matrix with NAs included. Each row and column includes at least one NA, so I don't want to omit them. Is there a way to sum across rows and columns, ignoring the NAs but not deleting the row or column? If not, I suppose I can write a loop function, but I have learned that it is best to stay away from loops if possible. Thanks for any help, Wade
2006 Jul 24
3
trim function in R
Hi all, I am looking for a function in R to trim the last two characters of an 8 character string in a vector. For example, I have the codes 37-079-2, 370079-3,37-079-8 and want to trim them to 37-079 by removing the last two characters. Is sub the correct function to use, and if so how can I specify trimming the last 2 characters? I have read the help file, but can't quite figure out how
2010 Oct 13
3
Matrix subscripting to wrap around from end to start of row
Perhaps it is just that I don't even know the correct term to search for, but I can find nothing that explains how to wrap around from the end to a start of a row in a matrix. For example, you have a matrix of 2 years of data, where rows are years, and columns are months. month.data = matrix(c(3,4,6,8,12,90,5,14,22, 8), nrow = 2, ncol=5) I would like to take the average of months 5:1 for
2006 Jun 23
3
NT_STATUS_SHARING_VIOLATION when trying to delete files
I searched the archives already and couldn't find an answer to this. I'm running an automated process via a cron job on a SUSE Linux Enterprise Server 9 box. The cron runs a Perl script, which uses the SmbClientParser module. The Perl script grabs files from clients running Windows 2000. The files on the client computers are created by in-house MFC applications on those computers.
2008 Oct 07
11
Creating GUIs for R
Hi all, I have looked around for help on creating GUIs for R, but haven't found anything. I would be interested in any advice or webpages that have information on the best language, tutorials etc. for creating simple GUIs. Mainly I want to do this as a heuristic exercise. Thanks for any help. Wade Wall [[alternative HTML version deleted]]
2008 Jul 28
3
Case statements in R
Hi all, I am trying to convert geometric means in a matrix to cover classes. My values are as such: perc<-c(0,0.025136418, 0.316227766, 1.414213562,3.16227766, 7.071067812, 15.8113883, 35.35533906, 61.23724357, 84.40971508, 97.46794345) cover<-c(0,1,2,3,4,5,6,7,8,9,10) This is what I am trying to accomplish veg_mean[veg_mean>0 && veg_mean < .1] <- 1
2007 Jun 12
3
Updating Folders in Mail box
Im looking on the dovecot documentation about how to update the folder structure. I had some computer problems so I back up my mail and when I reinstalled I got rid of a bunch of unused old mail. But now when I open my mail client it still things all of those folders are still there. Im looking for how to update the file on what is and isnt there. wade
2003 Sep 08
5
Help needed with IAX behind NAT
Hi All, I know, IAX is NAT friendly, but... I have a problem running gnophone from a box behind NAT firewall. I can register gnophone with * through NAT, but when I try to make a call it instantly disconnects. CLI iax show peers command tells me that peer is unreachable. However this peer is registred. Gnophone also tells me that it is registred. It seems that registration handshake has
2008 Jun 04
2
Can icecast stream a file from disk?
On Jun 4, 2008, at 5:25 AM, Thomas B. Ruecker wrote: > H. Wade Minter schrieb: >> I'm in a situation where I have some MP3 files I'd like to stream on- >> demand, but for various reasons can't just make the MP3 files >> themselves available. >> >> Is there a way, using icecast, to set up a server that would just >> bind >> to a port, and