search for: mkf

Displaying 4 results from an estimated 4 matches for "mkf".

Did you mean: mff
2006 Apr 17
2
Problem using plot and converted dates
.....Jul-04. My script is: sam4<-c("03/03/01","03/05/01","03/07/01","03/09/01","03/11/01","04/01/01","04/03/01","04/05/01","04/07/01") sam5<-strptime(sam4,format="%y/%m/%d") f<-data.frame(sam5,mkf) plot(f,type="l") # This works ok, but none of the labels appear on the x-axis, so I thought I would convert them using # as.POSIXct: sam6<-format(as.POSIXct(sam5), "%b-%y") mon<-factor(as.character(sam6),levels=sam6) f2<-data.frame(mon,mkf) plot(f2,type="l")...
2001 Oct 10
4
Weird feature when creating function lists with apply
Hi R-fellows, can anyone explain this weird feature? I am trying to create a list of functions with apply, and it appears that there is something strange going on when the function evaluates the argument a. When I duplicate a into a local variable b, the result changes !?! Any pointers? Thank in advance. Cheers, Uffe # Create a function which returns a function > f1 <- function(a)
2006 Mar 12
1
Misalignment of secondary axis on boxplot
...-axis over a boxplot. The problem is that the point of the line does not correspond to the centrepoint of the boxplot, which makes presentation and interpretation sloppy. Could someone point out where I am going wrong please? #DATA f<-factor(ld$Name[ld$Order==5],levels=c("SVR","MKF","DRCH","TNC","MTN","WLB","HMB")) g<-c(0.0213750, 0.0017000, 0.0228150, 0.0000000, 0.0787800,NA, 0.0220400, 0.0471900, 0.0060500, NA, 0.0285600, 0.0079980, 0.0000000,NA,0.0175560,0.0754110,NA, 0.0702780,NA, 0.0065875, 0.0000000, NA, 0.00000...
2009 Oct 29
2
Makevars, cc files in multiple directories
Hello, In the src folder of my R package I have a.cc b.cc f/g/x.cc my Makevars.in has all: $(SHLIB) upon installing only, a.o and b.o is build and the final dll is comprised of a.o and b.o How can I instruct $(SHLIB) to pick up its source files from all subdirectories (or maybe a subset, though here it will be all) in src ? Much thanks Saptarshi