search for: ff0000ff

Displaying 8 results from an estimated 8 matches for "ff0000ff".

Did you mean: ff00007f
2009 Apr 24
1
MENU not having to press <ENTER> key?
...lt;Enter> Has anyone got any idea on how to get it sorted? Cheers, Guy menu title PXE Boot Menu menu background graphics/main.jpg menu tabmsgrow 22 menu cmdlinerow 22 menu endrow 24 menu color title 1;34 #00000000 #00000000 none menu color sel 7;37 #ff0000ff #00000000 none menu color border 30;44 #00000000 #00000000 none menu color pwdheader 31;47 #ff0000ff #ffffffff none menu color hotkey 35;40 #bb9999aa #00000000 none menu color hotsel 35;40 #bb9999aa #00000000 none menu color t...
2008 Aug 18
2
Fwd: Parsing XML or KML into CSV /Using R for geocoding , OR problem
...11 shape.kml</name> <Style id="sh_icon17_copy3"> <IconStyle> <scale>1.1</scale> <Icon> <href>http://maps.google.com/mapfiles/kml/pal4/icon17.png</href> </Icon> </IconStyle> <LineStyle> <color>ff0000ff</color> </LineStyle> <PolyStyle> <fill>0</fill> </PolyStyle> </Style> <Style id="sn_icon25_copy3"> <IconStyle> <Icon> <href>http://maps.google.com/mapfiles/kml/pal4/icon25.png</href> </Ic...
2010 Mar 06
2
memory error in for loop
...nt)#create price point axis + #pdf(paste(i,"fuel_pw.pdf", sep=""), bg="white") + matplot(ptable, fprice, type="l", col= rainbow(length(names(i)))) + rm(i,ptable, fprice, maxval, interval, mgy) + dev.off() + } matplot: doing 17 plots with col= ("#FF0000FF" "#FF5500FF" "#FFAA00FF" "#FFFF00FF" "#AAFF00FF" "#55FF00FF" "#00FF00FF" "#00FF55FF" "#00FFAAFF" "#00FFFFFF" "#00AAFFFF" "#0055FFFF" "#0000FFFF" "#5500FFFF" "#...
2013 Jun 07
1
col2rgb, factors & documentation
Hello Core Folk. Quite by accident I discovered today that col2rgb, when fed factors, acts on the integer representation of those factors: td <- as.factor(rainbow(5)) # not how I discovered the issue! td res <- col2rgb(td) res # but col2rgb("#FF0000FF") # this is td[1] but does not produce the same answer res[,1] # moreover as.integer(td) col2rgb(5) # the integer value of the first level # and this is res[,1] which by the way is palette()[5], aka "cyan" ?col2rgb says: col vector of any of the three kinds of R color specification...
2012 Mar 28
1
What are the color's name in heat.color(5)
Hi all, I'm trying to using heat.color function in my data visualization. So, when I set col = heat.color(5), five different colors are displayed from red to weak yellow. But, now I want to know the color's keys or the names of the displayed heat.color. For instance, I think one of the five displayed colors seems to be 'red'. But, I'm not sure whether it is, also I don't
2013 Jan 09
21
question
Hello, Is "Dos installer from Win98" REMOVED from Syslinux-5.00/syslinux-5.01-pre1? Prof S W Damle
2011 May 23
3
RGL package installation problem on Centos
Dear R users, I have installed the latest version of R from source on Centos (using configure and make install). This seemed to work fine, with no Errors reported and R at the command line starts R. However, if I try and installed the package rgl using; install.packages("rgl") I get the following error; installing to /usr/local/lib64/R/library/rgl/libs ** R ** demo ** inst ** preparing
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame. For instance > ddTable <- data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry")) I want a dataset that is Id Name 1 Paul 2 Bob > unique(ddTable) Will give me all 4 rows, and > unique(ddTable$Id) Will give me c(1,2), but not accompanied by the name column.