search for: sf

Displaying 20 results from an estimated 3685 matches for "sf".

Did you mean: fs
2010 Oct 29
1
Tukey post hoc comparison (glht?) after 3factorial mixed model (lmer)
...46 0.128 specSv:compxfull:watermoist -57.109 186.046 -0.307 -------------- next part -------------- "meas" "spec" "comp" "water" "box_id" "sprouts" "leaves" "length" "long.sprout" "81" 1 "Sf" "xfull" "moist" 81 6.8 13.6 150.4 43.8 "82" 1 "Sf" "root" "moist" 82 6.5 18.5 104.25 25.75 "83" 1 "Sf" "control" "moist" 83 9.25 29 146 27 "84" 1 "Sf" "control" &q...
2014 Oct 24
5
[PATCH 0/2] bash-completion: Install symbolic links instead of copies of files (RHBZ#1156298).
Previously we copied the files instead of the symlinks.
2008 Oct 09
1
R loops
hello everybody, I have a directory with over 3000 files with different names. I would like to make some vectors with the file names which are belong together. I'm trying to do it with a for loop in R: SF <- c("ad", "cd", "cer", "stress", "salty", "PC", "high", "transfer", "cold", "heat") # the pattern to look for names(SF) <- as.vector(SF) for (i in 1:length(SF)){ write(names(SF)[i], &...
2009 Jan 25
4
shorewall show accounting - actual bytes
...s to Cacti graphs that I use. However, the command output of "shorewall show accounting" shows the bytes and packets counts in K , M and G How can I get the actual bytes from accounting output ? Thanks. ------------------------------------------------------------------------------ This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. http://p.sf.net/sfu/sf-spreadtheword
2020 Oct 20
2
How to assign the same levels to a dataframe column?
...umn x that has these unique values: "L" "M" "V" "N" "H". I can assign a factor to it: ``` df$x = as.factor(df$x) > [1] L M V N H Levels: H L M N V ``` I now need to get a subset of this dataframe. I could do the same thing as before on the subset sf, but I would like to avoid the possibility that not all the values could be present in sf. For instance, sf could have only the values "M" "V" "N". How can I assign a given set of value to the subset dataframe? Now I am getting the error: ``` LEV = as.factor(df$x) >...
2009 Sep 14
2
Escaping . in regular expression
If I run cvec<-c("test.f", "test.sf", "try.g","try.res", "try.f") print(cvec) indx<-grep('\.f',cvec,perl=TRUE) fset<-cvec[indx] print(fset) I get > cvec<-c("test.f", "test.sf", "try.g","try.res", "try.f") > print(cvec) [1]...
2014 Jan 15
3
[PATCH] nv50, nvc0: don't crash on a null cbuf
...nouveau/nv50/nv50_state_validate.c @@ -20,9 +20,17 @@ nv50_validate_fb(struct nv50_context *nv50) PUSH_DATA (push, fb->height << 16); for (i = 0; i < fb->nr_cbufs; ++i) { - struct nv50_miptree *mt = nv50_miptree(fb->cbufs[i]->texture); - struct nv50_surface *sf = nv50_surface(fb->cbufs[i]); - struct nouveau_bo *bo = mt->base.bo; + struct nv50_miptree *mt; + struct nv50_surface *sf; + struct nouveau_bo *bo; + + /* Do we need to clear the old RT settings? */ + if (!fb->cbufs[i]) + continue; + + mt = nv50_m...
2008 Jan 22
2
R object as a function
I want to use a function as an argument to ingtegrate it twice. See the following (senseless) example of a double integration: test<-function(sf,lo,up,rest) { innerFkn<-function(sf,lo) { inte=integrate(f=sf,lower=lo,upper=4) return( inte$value ) } integral=integrate(f=innerFkn,lower=1,upper=2,sf=sf,lo=lo,up=up) return( integral$vlaue+rest ) } test(sf=stepfun(c(0,1),c(2,-1,3)),lo=0,up=2,rest=12) Why isn't it possible...
2007 Nov 12
0
3 commits - libswfdec/swfdec_player.c test/trace
...e = +home = EU,SE +id = 22 +initView = EU,SE +lang = SV +skin = Default +>>> linkUrl=http://www.smhi.se/cmp/jsp/polopoly.jsp?d=5236&l=sv&linkTarget=_top +decode = +l = sv +linkTarget = _top +linkUrl = http://www.smhi.se/cmp/jsp/polopoly.jsp?d=5236 +>>> txt=<a href=%22asfunction:_root.launchURL,0%22>ADOBE FLASH CS3 PROFESSIONAL</a>&textcolor=#ffffff&hovercolor=#c00c00&linkcolor=#ffffff&w=640&h=28&sifr_url_0=/products/flash/ +decode = +h = 28 +hovercolor = #c00c00 +linkcolor = #ffffff +sifr_url_0 = /products/flash/ +textcolor = #ffff...
2009 Jan 06
9
Test
...ost unprecedented, thought I had better send a test post. Apologies for the spam. ------------------------------------------------------------------------------ Check out the new SourceForge.net Marketplace. It is the best place to buy or sell services for just about anything Open Source. http://p.sf.net/sfu/Xq1LFB
2009 Jan 24
4
No logging with chain logdrop and logreject
...h the FAQ, the manual pages and Googled. I can''t seem to find anything that seems to explain why. I''m hoping someone here can help. Any advice would be appreciated. Thank you! -- Brian Schang ------------------------------------------------------------------------------ This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. http://p.sf.net/sfu/sf-spreadtheword
2010 Apr 20
1
[PATCH] nv30/exa : cleanup from nv40 exa
...L_BF_ONE_MINUS_DST_ALPHA 0x0305 -#define NV34TCL_BF_DST_COLOR 0x0306 -#define NV34TCL_BF_ONE_MINUS_DST_COLOR 0x0307 -#define NV34TCL_BF_ALPHA_SATURATE 0x0308 -#define BF(bf) NV34TCL_BF_##bf - +#define SF(bf) (NV34TCL_BLEND_FUNC_SRC_RGB_##bf | \ + NV34TCL_BLEND_FUNC_SRC_ALPHA_##bf) +#define DF(bf) (NV34TCL_BLEND_FUNC_DST_RGB_##bf | \ + NV34TCL_BLEND_FUNC_DST_ALPHA_##bf) static nv_pict_op_t NV30PictOp[] = { -/* Clear */ { 0, 0, BF(...
2019 Jan 12
2
Error: corrupted double-linked list
Hello, Not sure if this is the right list of if this is a gdal/sf issue so I apologize but recently I've been seeing errors that crash R/3.5.1 and throw a double-linked list error (see below). Has anyone else come across this issue and if so is there a fix? > rwhole <- st_transform(rwhole,st_crs(ele.map)) *** Error in `/usr/local/lib64/R/bin/exec/R...
2012 Nov 29
5
Status of flac; new release?
...there is even an active git project for flac... because until then, I was firmly under the impression that flac is dead, and has been dead for years. Last website update 3 years ago, last release 5 years ago; tons of unfixed security and data corruption bugs, tons of not integrated patches on the SF.net patch tracker, etc. kind oflead me to that believe. I was already considering to make my own fork, converting the CVS repository (the official repos according to the website :-) etc. But I am totally excited to learn this apparently won't be necessary. :-) So I do have a few questions: 1...
2014 Jan 23
2
[PATCH v2] nv50, nvc0: clear out RT on a null cbuf
...v50) > @@ -20,9 +33,18 @@ nv50_validate_fb(struct nv50_context *nv50) > PUSH_DATA (push, fb->height << 16); > > for (i = 0; i < fb->nr_cbufs; ++i) { > - struct nv50_miptree *mt = nv50_miptree(fb->cbufs[i]->texture); > - struct nv50_surface *sf = nv50_surface(fb->cbufs[i]); > - struct nouveau_bo *bo = mt->base.bo; > + struct nv50_miptree *mt; > + struct nv50_surface *sf; > + struct nouveau_bo *bo; > + > + if (!fb->cbufs[i]) { > + nv50_fb_set_null_rt(push, i); > + co...
2012 Mar 15
3
Firewall up not letting traffic through
...its ip address (209.191.122.70) Firewall computer: On the firewall computer can ping computer on inside network and "yahoo.com" -- Eric Teeter 504 Main St. Brooklyn, WI 53521 (608) 807-4277 ------------------------------------------------------------------------------ This SF email is sponsosred by: Try Windows Azure free for 90 days Click Here http://p.sf.net/sfu/sfd2d-msazure
2009 Apr 27
5
ruby jasper report
...io.EOFException at java.io.ObjectInputStream$PeekInputStream.readFully(Unknown Source) at java.io.ObjectInputStream$BlockDataInputStream.readShort(Unknown Source) at java.io.ObjectInputStream.readStreamHeader(Unknown Source) at java.io.ObjectInputStream.<init>(Unknown Source) at net.sf.jasperreports.engine.util.JRLoader.loadObject(JRLoader.java:84) at net.sf.jasperreports.engine.JasperFillManager.fillReport(JasperFillManager.java:342) at XmlJasperInterface.report(XmlJasperInterface.java:74) at XmlJasperInterface.main(XmlJasperInterface.java:58) NESTED BY : net.sf.jasperrep...
2008 Mar 31
1
Reorder the x-axis using lattice
Dear list, Is there a way to reorder the xaxis using lattice. Using the following data, the x-axis is ordered as BP GH MH PF RE RP SF VT but I would like the x-axis to be ordered as PF RP BP GH VT SF RE MH. Kön Skalor Tillfälle Medelvärde 1 Kvinnor BP 1-inskrivning 36.45283 2 Kvinnor GH 1-inskrivning 38.62255 3 Kvinnor MH 1-inskrivning 62.88889 4 Kvinnor PF 1-inskrivning 39.80710 5...
2020 Oct 20
0
How to assign the same levels to a dataframe column?
...es: >"L" "M" "V" "N" "H". I can assign a factor to it: >``` >df$x = as.factor(df$x) >> [1] L M V N H >Levels: H L M N V >``` >I now need to get a subset of this dataframe. I could do the same >thing as before on the subset sf, but I would like to avoid the >possibility that not all the values could be present in sf. For >instance, sf could have only the values "M" "V" "N". >How can I assign a given set of value to the subset dataframe? >Now I am getting the error: >``` >LE...
2008 Feb 12
3
help with bwplot
...86111 female 11 41-60 PF 42.42063 female 12 61-79 PF 52.17172 female 13 21-40 RE 38.09524 female 14 41-60 RE 42.85714 female 15 61-79 RE 42.42424 female 16 21-40 RP 20.00000 female 17 41-60 RP 25.89286 female 18 61-79 RP 15.90909 female 19 21-40 SF 51.66667 female 20 41-60 SF 63.88889 female 21 61-79 SF 57.95455 female 22 21-40 VT 32.11111 female 23 41-60 VT 36.96429 female 24 61-79 VT 33.18182 female 25 21-40 BP 35.00000 male 26 41-60 BP 37.75000 male 27 61-79 BP 36.00000 male 28 21-40...