search for: minrow

Displaying 3 results from an estimated 3 matches for "minrow".

Did you mean: minnow
2007 Feb 13
2
Computing stats on common parts of multiple dataframes
Folks, I have three dataframes storing some information about two currency pairs, as follows: R> a EUR-USD NOK-SEK 1.23 1.33 1.22 1.43 1.26 1.42 1.24 1.50 1.21 1.36 1.26 1.60 1.29 1.44 1.25 1.36 1.27 1.39 1.23 1.48 1.22 1.26 1.24 1.29 1.27 1.57 1.21 1.55 1.23 1.35 1.25 1.41 1.25 1.30 1.23 1.11 1.28 1.37 1.27 1.23 R> b EUR-USD NOK-SEK 1.23 1.22 1.21 1.36 1.28 1.61 1.23 1.34 1.21 1.22
2013 Apr 02
1
gdata selectively not working
...ding 'C:/Dropbox/R/library/gdata/xls/ExampleExcelFile.xlsx'... Done. Orignal Filename: C:/Dropbox/R/library/gdata/xls/ExampleExcelFile.xlsx Number of Sheets: 4 Writing sheet number 1 ('Sheet First') to file 'C:\Users\Robin\AppData\Local\Temp\RtmpWkmGgn\file1bccd743d36.csv' Minrow=0 Maxrow=7 Mincol=0 Maxcol=2 0 Done. Reading csv file “C:\Users\Robin\AppData\Local\Temp\RtmpWkmGgn\file1bccd743d36.csv” ... Done. This tells me that perl can be found, used, and my local temp directory can be written/read to just fine. Now to try to read one of my own files. > test <-...
2010 Jul 25
0
[PATCH] HDT: Fix cursor on exit from Menu Mode
...100644 --- a/com32/cmenu/libmenu/menu.c +++ b/com32/cmenu/libmenu/menu.c @@ -655,9 +655,9 @@ pt_menuitem showmenus(uchar startmenu) ms->menus[(unsigned int)startmenu], 0, NORMALMENU); // Hide the garbage we left on the screen - cursoron(); cls(); gotoxy(ms->minrow, ms->mincol); + cursoron(); // Return user choice return rv;