search for: jubel

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

Did you mean: jubal
2008 Jun 06
1
boxplot changes fontsize of labels
...boxplots. Everything works well but when I put more then two of them in one plot the labels of the axes appear smaller than the normal font size. > x <- rnorm(30) > y <- rnorm(30) > par(mfrow=c(1,4)) > boxplot(x,y, names=c("horray", "hurra")) > mtext("Jubel", side=1, line=2) In case I take one or two boxplots this does not happen: > par(mfrow=c(1,2)) > boxplot(x,y, names=c("horray", "hurra")) > mtext("Jubel", side=1, line=2) The cex.axis seems not to be changed, as setting it to 1.0 doesn't change the...
2017 Mar 25
1
"isolinux.bin missing or corrupt" when booting USB flash drive in old PC
...inux.bin has already succeeded when the copyright message appears. David: > Then the Debian Installer runs. I choose "Install", there is delay of ~20 > seconds and then the next screen comes up. Everything tests normally > through the partitioning screen (when I stop testing) Jubel ! \o/ No further obstacles on the way to a running Linux. We can conclude that the BIOS is not mad but just overly modest. It does not brag with its ability to use INT 13 AH 42 for LBA addressing. > It would be nice if the patch made it into Debian 8.8. I will report at the Debian bug. I a...
2017 Mar 23
6
"isolinux.bin missing or corrupt" when booting USB flash drive in old PC
Hi, Geert Stappers wrote: > Contact David off-list, he did unsubscribe. Can you tell when he unsubscribed (i.e. which of the messages he got as last one) ? > Martin posted elsewhere in this thread "Thomas, you found the bug" > and provided a patch. Open question is whether the fix helps with David's BIOS. The newest answer from Martin indicates that a failure to read
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.