search for: colinx

Displaying 3 results from an estimated 3 matches for "colinx".

Did you mean: colin
2003 Jun 10
2
Compiling 2.2.8a with SSL support on Solaris 7
I'm running into a problem when compiling Samba 2.2.8a with SSL support on Solaris 7. The build appears to be choking on redefinitions between the Openssl des.h and kerberos/des.h (which is grabbed because it is on the system). Here's the error I'm getting: In file included from /usr/local/include/openssl/evp.h:89, from /usr/local/include/openssl/x509.h:67,
2012 Jan 24
6
Checking for invalid dates: Code works but needs improvement
Hello Everyone, Still new to R. Wrote some code that finds and prints invalid dates (see below). This code works but I suspect it's not very good. If someone could show me a better way, I'd greatly appreciate it. Here is some information about what I'm trying to accomplish. My sense is that the R date functions are best at identifying invalid dates when fed character data in their
2012 Jan 18
4
R-Help
I am trying to create a frequency distribution and I am a bit confused. Here are the commands I have entered: > data <- read.csv(file="40609_sortedfinal.csv",head=TRUE,sep=",") > NumberOfActionsByStatus = data$STATUS > NumberOfActionsByUser = data$ETS_LOGIN > NumberOfBidOffer = data$BID_OFFER > NumberOfActionsByUser.freq = table(NumberOfActionsByUser) >