search for: ford

Displaying 20 results from an estimated 474 matches for "ford".

Did you mean: for
2009 Mar 28
0
R: Fortran 90 etc.
...attachment) to interface them with R. The compiler automatically caled by R CMD command line prints a bunch of error messages (as follows). I think I'm better off translating the Fortran implementation into R ... which is what I hoped I could avoid. Maura host705:Desktop mauede$ R CMD SHLIB ford.f90 gfortran -arch i386 -fno-common -g -O2 -c ford.f90 -o ford.o ford.f90:2: c ----------------------------------------------------------------------------- 1 Error: Unclassifiable statement at (1) ford.f90:3: c --- Choozing wavelet order from minimum enthropy of squared wavelet 1 Error: Unclas...
2013 Jan 22
2
Creating a Data Frame from an XML
...package. I am unable to get the data into a data frame as I would like. I have some sample code below. *XML Code:* Header... Data I want in a data frame: <data> <row BRAND="GMC" NUM="1" YEAR="1999" VALUE="10000" /> <row BRAND="FORD" NUM="1" YEAR="2000" VALUE="12000" /> <row BRAND="GMC" NUM="1" YEAR="2001" VALUE="12500" /> <row BRAND="FORD" NUM="1" YEAR="2002" VALUE="13000" /> <row BRAND=&q...
2012 Jun 01
3
Add rank column to data frame as in SQL...
...alaries within them. A column is then added to the data.frame which should give the descending rank for each employee, partitioned by company. But when I implemented it, the results weren't the expected rankings. What am I doing wrong? set.seed(1) DF <- data.frame(Company=sample(c("Ford","Toyota","GM"),size=18,replace=TRUE), Person=LETTERS[1:18],Salary=runif(18)*1e5) DF <- within(DF, rank <- ave(Salary, Company, FUN=function(x)rev(order(x)))) # Then checking each category manually DF[DF$Company == "Ford",] DF[DF$Company == "GM",]...
2007 Apr 21
4
Ford Tech Serv app does not work
This just an FYI. Yesterday I updated to top of trunk wine and rebuilt and installed. I have a Ford Service CD (for 1999 models) and wine on the exe does not work (on an old Windows ME laptop it all works). The startup.exe sort of seems to work AFAICT, but when it's done and the app exe started the app exe ( installed on disk) cannot seem to find the cd (the app needs the CD, the install...
2017 Dec 17
1
Auto Data in the ISLR Package
myAuto <- Auto[ grep("ford|toyota",Auto$name),] myAuto$Make <- NA myAuto$Make[grep("ford",myAuto$name)] <- "Ford" myAuto$Make[grep("toyota",myAuto$name)] <- "Toyota" Regards, Eric On Sun, Dec 17, 2017 at 11:58 AM, AbouEl-Makarim Aboueissa < abouelmakarim1962 at gmai...
2017 Dec 17
4
Auto Data in the ISLR Package
myAuto <- Auto[ grep("ford|toyota",Auto$name),] On Sat, Dec 16, 2017 at 10:28 PM, Bert Gunter <bgunter.4567 at gmail.com> wrote: > I did not care to load the packages -- small reproducible examples are > preferable, as the posting guide suggests. > > But, if I have understood correctly: > > S...
2009 Sep 23
3
Ford Fulkerson
Hi, Is there any R implementation of the well-known algorithm from the Operations Research literature, the Ford-Fulkerson algorithm of maximum flow in networks with capacities. Thanks. [[alternative HTML version deleted]]
2010 Sep 16
3
get top n rows group by a column from a dataframe
Hi, is there an R function like sql's TOP key word? I have a dataframe that has 3 columns: company, person, salary How do I get top 5 highest paid person for each company, and if I have fewer than 5 people for a company, just return all of them? Thanks, Richard [[alternative HTML version deleted]]
2017 Dec 17
0
Auto Data in the ISLR Package
Dear Eric: Thank you very much. It works nicely. *Just one more thing;* how to create a new variable (say, *Make*) with *Make = Ford* for the ford brand and *Make = T**oyota* for the toyota brand. Once again thank you all. abou ______________________ *AbouEl-Makarim Aboueissa, PhD* *Professor of Statistics* *Department of Mathematics and Statistics* *University of Southern Maine* On Sun, Dec 17, 2017 at 3:10 AM, Eric Be...
2017 May 30
1
URGENT: Update issues from 3.6.6 to 3.10.2 Accessing files via samba come up with permission denied
...el7_3.noarch On the samba logs for the machine I notice something weird, samba seems to be trying to stat the file we are trying as a directory to see if it contains desktop.ini: [2017/05/30 10:13:07.297026, 0] ../source3/modules/vfs_glusterfs.c:870(vfs_gluster_stat) glfs_stat(ACTIVE/Automotive/FORD/AN - Ford East/02 DRAWINGS/CURRENT/AN-FORD EAST_04-05-17_CD_R17.rvt/desktop.ini) failed: Not a directory [2017/05/30 10:13:07.298155, 0] ../source3/modules/vfs_glusterfs.c:870(vfs_gluster_stat) glfs_stat(ACTIVE/Automotive/FORD/AN - Ford East/02 DRAWINGS/CURRENT/AN-FORD EAST_04-05-17_CD_R17.rvt/de...
2013 Jan 22
1
Create a Data Frame from an XML
...package. I am unable to get the data into a data frame as I would like. I have some sample code below. *XML Code:* Header... Data I want in a data frame: <data> <row BRAND="GMC" NUM="1" YEAR="1999" VALUE="10000" /> <row BRAND="FORD" NUM="1" YEAR="2000" VALUE="12000" /> <row BRAND="GMC" NUM="1" YEAR="2001" VALUE="12500" /> <row BRAND="FORD" NUM="1" YEAR="2002" VALUE="13000" /> <row BRAND=&q...
2009 Jan 26
1
Sweave'ing Danish characters
...ne can point me towards a solution. To illustrate: > library(xtable) > library(Hmisc) > rm(list=ls()) > load("u:/kirurgi/cholecystit/Chol_oprenset.Rdata") > > test2 <- chol$nydiag[3] # This 3rd observation contains a diagnosis with Danish characters ("Kr?ft i ford?jelsessystemet", meaning gastrointestinal cancer). > > print(xtable(table(test2))) % latex table generated in R 2.8.1 by xtable 1.5-4 package % Mon Jan 26 23:31:37 2009 \begin{table}[ht] \begin{center} \begin{tabular}{rr} \hline & test2 \\ \hline Kr?ft i ford?jelsessystemet &am...
2017 Dec 17
0
Auto Data in the ISLR Package
That probably works in this case, but it would cause grief if another car make had "ford" somewhere inside its name e.g. "bedford". Safer general practice is Auto[Auto$name %in% c("ford", "toyota"),] or similar using subset(). -pd > On 17 Dec 2017, at 09:10 , Eric Berger <ericjberger at gmail.com> wrote: > > myAuto <- Auto[ gre...
2007 May 03
7
How to create a drop-down list with Markaby?
...oid Android</option> <option value="arthur">Arthur Dent</option> <option value="zaphod">Zaphod Beeblebrox</option> <option value="trillian">Tricia McMillan</option> <option value="ford">Ford Prefect</option> </select> with Markaby? Thanks, Thomas -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://ru...
2006 Jul 18
5
SQL query question
Hello, I know it''s off-topic. But I''m sure you are using SQL and can help me ;) I''ve a table CARS and a table KEYS and a LOCKS table. CARS id|name 1|audi 2|ford 3|mazda 4|porsche ... KEYS id|car_id|lock_id 1|1|1 2|2|1 3|2|2 4|3|1 5|3|2 6|4|1 7|4|2 8|4|3 ... LOCKS id|name 1|main 2|spare 3|engine ... A car can have many keys. Keys are for different locks. How can I get the cars which have at least the keys for locks like another car. So in the above exam...
2004 Apr 02
4
avaya and linux
Does anyone know if avaya voip product is running linux under the hood? Thanks, /glen -- Glen Ford gford@idiom.com
2009 Mar 31
2
scope of variables in R
...------- GLOBAL DATA & CONSTANTS ---------------------- EntrThreshold <- 1.e+35 NCMAX <- 50 ncof <- 0 ioff <- 0 joff <- 0 sig <- 0.0 cc <- vector(length=NCMAX) cr <- vector(length=NCMAX) Function "pwtset", called by function "ford", changes the content of variable 'ncof' as confirmed by the debigging printed values. But when function "pwset" exits and the flow control returns to the caller "ford" then variable 'ncof' has not kept the value assigned by "pwset", as if functio...
2011 Nov 30
0
mkfs.btrfs failure on ARM
I''m hitting an error with the default mkfs.btrfs in debian wheezy: ford:~# uname -a Linux ford.blinkenlights.nl 3.1.0-1-kirkwood #1 Tue Nov 15 00:17:24 UTC 2011 armv5tel GNU/Linux ford:~/btrfs-progs# dpkg -l | grep btrfs ii btrfs-tools 0.19+20111105-1 Checksumming Copy on Write Filesystem utilities ford:~# mkfs.btrfs /dev/vgroot/home WARNIN...
2004 Apr 19
2
Windows 2003 Server and Active Directory
I am currently in need of turning my old Server into a data tank I don't want to buy another copy of server 2k or 2k3 I would like to use Linux and samba how ever I'm not sure if samba will work in an Active Directory Network or not can any one clear this up for me? Thank you, Marc Ford mford@bbmusa.com
2006 Feb 10
10
Seeing the IP addresses of domUs from dom0
Using a default xen3.0.1 setup for dom0(rhel4 distro) and domUs (gentoo, rhel4, centos4.2 distros, ttylinux) with the domUs all having dhcp turned on, is there an easy way to tell from within the dom0 what ip addresses were assigned to the domUs after bootup? Toby Ford USi _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users