search for: suddenlink

Displaying 20 results from an estimated 59 matches for "suddenlink".

2014 Sep 06
2
bootable dvd
----- Original Message ----- From: "Gene Cumm" <gene.cumm at gmail.com> To: "Bill Cunningham" <billcun at suddenlink.net> Cc: "For discussion of Syslinux and tftp-hpa" <syslinux at zytor.com> Sent: Saturday, September 06, 2014 9:27 AM Subject: Re: [syslinux] bootable dvd > On Sat, Sep 6, 2014 at 9:10 AM, Bill Cunningham <billcun at suddenlink.net> > wrote: >> I want to m...
2014 Sep 06
0
bootable dvd
----- Original Message ----- From: "Bill Cunningham" <billcun at suddenlink.net> To: "Gene Cumm" <gene.cumm at gmail.com> Cc: "For discussion of Syslinux and tftp-hpa" <syslinux at zytor.com> Sent: Saturday, September 06, 2014 9:31 AM Subject: Re: [syslinux] bootable dvd > > ----- Original Message ----- > From: "Gene Cumm...
2014 Sep 06
2
bootable dvd
I want to make a bootable DVD and nothing I read works. The syslinux.cfg seems to be the most important. I get most of my info from www.syslinux.com of course and Arch linux's page. Nothing seems to work. I am using fedora codre 17 right now. Bill
2014 Sep 06
0
bootable dvd
On Sat, Sep 6, 2014 at 9:10 AM, Bill Cunningham <billcun at suddenlink.net> wrote: > I want to make a bootable DVD and nothing I read works. The syslinux.cfg > seems to be the most important. I get most of my info from www.syslinux.com > of course and Arch linux's page. Nothing seems to work. I am using fedora > codre 17 right now. Go down to ba...
2012 Jul 21
4
rhsape2 bug?
All, I believe I am running the latest version of rshape2 (1.2.1). But this code: library(reshape2) tmp <- melt(smiths, id.vars=1:2, measure.vars=c("age","weight","height"), variable.name="myvars", value.name="myvals" ) names(tmp) Produces this output: > names(tmp) [1] "subject" "time"
2014 Aug 18
1
Re: extended filesystems
----- Original Message ----- From: "Eric Sandeen" <sandeen@redhat.com> To: "Bill Cunningham" <billcun@suddenlink.net>; <Ext3-users@redhat.com> Sent: Sunday, August 17, 2014 4:47 PM Subject: Re: extended filesystems [snip] > So the first thing you've learned is that it is not in fact too much > overhead, because it's not there. ;) > > -Eric Ok I see. Well I have used fsarch...
2011 Jan 25
2
Can't get it working
I get dovecot to work and answer when telnet to 110 both local and from another computer. But it shows nothing in the log files except it's running. Here's the log and other info: /var/log/maillog: Jan 25 16:49:32 widgeteye dovecot: master: Dovecot v2.0.9 starting up (core dumps disabled) dovecot --version 2.0.9 dovecot -n output # 2.0.9: /usr/local/etc/dovecot/dovecot.conf #
2013 Feb 12
2
Data sets online for student use
All, If you have any good links for sites that contain data sets that can easily be accessed and copied (or downloaded) by students in introductory statistics, could you please share them? Thanks. David -- View this message in context: http://r.789695.n4.nabble.com/Data-sets-online-for-student-use-tp4658326.html Sent from the R help mailing list archive at Nabble.com.
2012 Aug 03
2
Printing a summary
All, Is this typical of how people will print a summary of results? CoinTosses <- function(n) { x <- sample(c(0,1), n, replace=TRUE) y <- x y[y==0] <- "T" y[y==1] <- "H" numHeads <- sum(x) numTails <- n-sum(x) p <- numHeads/n cat(cat(y,sep=""),"\n") cat("Number of heads: ", numHeads, "\n")
2012 Dec 30
0
[LLVMdev] [cfe-dev] !!! 3.2 Release RC3 source code available for download and testing
On Sun, Dec 30, 2012 at 1:58 AM, Larry Evans <cppljevans at suddenlink.net>wrote: > On 12/29/12 18:40, NAKAMURA Takumi wrote: > > 2012/12/30 Larry Evans <cppljevans at suddenlink.net>: > >> I just created clang with the tarballs without problem; however, > >> when `make check-all` was run, I got 1 error. My system is: > > &g...
2013 Sep 17
1
"With" question
All, Trying to avoid using attach and detach while teaching class in Intro Stats. data=read.delim("dataset1.dat",header=TRUE) with(data,{ sort(age) length(age) (age[10]+age[11])/2 }) However, this code only produces output for the last line between the curly braces. Granted, as we type the lines in one at a time and execute the code, we'll see each output. And, we can fix
2012 Nov 29
2
Analysis of Variance
Hi, I am encountering a difficulty I don't understand. Be patient, I'm very new to analysis of variance. If I load this data: example12_7=read.table("http://msemac.redwoods.edu/~darnold/math15/data/chapter12/example12_7.dat",header=TRUE) The run the oneway.test: oneway.test(time~drug,data=example12_7,var.equal=TRUE) I get these results: data: time and drug F = 4.1881, num
2012 Aug 15
4
Reading one column .csv file
My friend sent an Excel file: http://msemac.redwoods.edu/~darnold/temp/cyu01_iqscores.xls http://msemac.redwoods.edu/~darnold/temp/cyu01_iqscores.xls I opened it in Excel, saved is as cyu01_iqscores.csv, then imported it into R with: iqscores=read.csv('cyu01_iqscores.csv',header=TRUE) The result was: > head(iqscores) IQ.Scores X 1 145 NA 2 101 NA 3 123 NA 4
2012 Jul 18
4
Entering Data Files
Hi, Entering data from a given file is the hardest part of learning R for me. For example, I have this datafile from Moore's text: Live Age Count Parents Age19 324 Another Age19 37 OwnPlace Age19 116 Group Age19 58 Other Age19 5 Parents Age20 378 Another Age20 47 OwnPlace Age20 279 Group Age20 60 Other Age20 2 Parents Age21 337 Another Age21 40 OwnPlace Age21 372 Group Age21 49 Other Age21 3
2012 Jul 12
4
Adjusting format of boxplot
Hi, I managed to use the attached data set and figure out the following: flies <- read.table("example12_1.dat",header=TRUE,sep="\t") boxplot(long ~ group, data = flies, horizontal = TRUE, col = "red") I'm very new to R and would like some help with the following: 1. Change the order on the y-axis from 1, 2, 3, 4, 5 to 5, 4, 3, 2, 1.
2012 Dec 29
1
[LLVMdev] !!! 3.2 Release RC3 source code available for download and testing
On 12/06/12 01:12, Pawel Wodnicki wrote: > Hello, > > Release Candidate 3 has been branched. > RC3 source code can be downloaded as tarballs from: > > http://llvm.org/pre-releases/3.2/rc3/ > > or directly from svn. > > Binaries will be posted shortly. > > Testing > > RC3 has a number of fixes related to MIPS support > that need to be well
2014 Aug 17
2
extended filesystems
I would like to start experiemnting with the ext filesystems. I might like one day to develop something. :) What files contain the ext4 filesystem. That's what I'm running right now. I like ext 2/3/4 all of them. My fedora partition is only 20 GB in size. I don't need huge filesystem support which is a feature of ext4 I believe. Which feature can I remove to remove this feature? I
2014 Aug 17
0
Re: extended filesystems
On 8/17/14, 2:52 PM, Bill Cunningham wrote: > I would like to start experiemnting with the ext filesystems. I might > like one day to develop something. :) What files contain the ext4 > filesystem. That's what I'm running right now. I like ext 2/3/4 all of them. fs/ext4/*.[ch] fs/jbd2/*.[ch] in the linux kernel source tree. > My fedora partition is only 20 GB in size.
2007 Oct 25
2
Changing steps on a graphic axes
Hi, I would like to tell R what increments to put the tick marks on an axes, e.g. xlim=seq(-5,5,1). I know that will not work. xlim will only except the beginning and end of the range for the axes. Thanks, Keith jones
2008 Jan 05
2
Cumulative sum of vector
Hi, Maybe I have not been looking in the right spot, but, I have not been able to fine a command to automatically calculate the running cumulative sum of a vector. Is there such a command? Example of current code: > eig$values [1] 678.365651 6.769697 2.853783 > prop<-eig$values/sum(eig$values) > prop [1] 0.986012163 0.009839832 0.004148005 >