search for: qmm

Displaying 14 results from an estimated 14 matches for "qmm".

Did you mean: mm
2001 Apr 30
2
margin problems?
...very long labels on my y axis, and when I try to print them out, they always come out clipped so I can't see them. How do I change the margin for the y axis? I've tried mai and mar, but they don't seem to do anything... process.names <- c("Makeprod-data", "Makeprod-QMM", "Search", "Download", "View Data", "View QMM", "Consult", "Stop", "Misfire", "Misfire", "Unknown") and Makeprod-data only shows "od-data" ... thanks! greg -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-...
2017 Nov 26
3
dplyr - add/expand rows
...> data.collection > # A tibble: 5 x 4 > STATION_NUMBER YEAR_FROM YEAR_TO RECORD > <chr> <int> <int> <chr> > 1 07EA001 1960 1960 QMS > 2 07EA001 1961 1970 QMC > 3 07EA001 1971 1971 QMM > 4 07EA001 1972 1976 QMC > 5 07EA001 1977 1983 QRC > > I would like to reshape this to one operational record (row) per year per > station. Something like: > > 07EA001 1960 QMS > 07EA001 1961 QMC > 0...
2017 Nov 27
2
dplyr - add/expand rows
try this: ########################################## library(dplyr) input <- tribble( ~station, ~from, ~to, ~record, "07EA001" , 1960 , 1960 , "QMS", "07EA001" , 1961 , 1970 , "QMC", "07EA001" , 1971 , 1971 , "QMM", "07EA001" , 1972 , 1976 , "QMC", "07EA001" , 1977 , 1983 , "QRC" ) result <- input %>% rowwise() %>% do(tibble(station = .$station, year = seq(.$from, .$to), record = .$record) ) ##################...
2017 Nov 26
0
dplyr - add/expand rows
...; # A tibble: 5 x 4 > > STATION_NUMBER YEAR_FROM YEAR_TO RECORD > > <chr> <int> <int> <chr> > > 1 07EA001 1960 1960 QMS > > 2 07EA001 1961 1970 QMC > > 3 07EA001 1971 1971 QMM > > 4 07EA001 1972 1976 QMC > > 5 07EA001 1977 1983 QRC > > > > I would like to reshape this to one operational record (row) per year per > > station. Something like: > > > > 07EA001 1960 QMS > > 0...
2017 Nov 28
0
dplyr - add/expand rows
...############### > > library(dplyr) > > input <- tribble( > ~station, ~from, ~to, ~record, > "07EA001" , 1960 , 1960 , "QMS", > "07EA001" , 1961 , 1970 , "QMC", > "07EA001" , 1971 , 1971 , "QMM", > "07EA001" , 1972 , 1976 , "QMC", > "07EA001" , 1977 , 1983 , "QRC" > ) > > result <- input %>% > rowwise() %>% > do(tibble(station = .$station, > year = seq(.$from, .$to), >...
2017 Nov 28
1
dplyr - add/expand rows
...>> > STATION_NUMBER YEAR_FROM YEAR_TO RECORD >> > <chr> <int> <int> <chr> >> > 1 07EA001 1960 1960 QMS >> > 2 07EA001 1961 1970 QMC >> > 3 07EA001 1971 1971 QMM >> > 4 07EA001 1972 1976 QMC >> > 5 07EA001 1977 1983 QRC >> > >> > I would like to reshape this to one operational record (row) per year >> per >> > station. Something like: >> > >> > 07EA001...
2017 Nov 28
2
dplyr - add/expand rows
...gt; library(dplyr) >> >> input <- tribble( >> ~station, ~from, ~to, ~record, >> "07EA001" , 1960 , 1960 , "QMS", >> "07EA001" , 1961 , 1970 , "QMC", >> "07EA001" , 1971 , 1971 , "QMM", >> "07EA001" , 1972 , 1976 , "QMC", >> "07EA001" , 1977 , 1983 , "QRC" >> ) >> >> result <- input %>% >> rowwise() %>% >> do(tibble(station = .$station, >> year...
2017 Nov 25
0
dplyr - add/expand rows
...ord similar to the following: > data.collection # A tibble: 5 x 4 STATION_NUMBER YEAR_FROM YEAR_TO RECORD <chr> <int> <int> <chr> 1 07EA001 1960 1960 QMS 2 07EA001 1961 1970 QMC 3 07EA001 1971 1971 QMM 4 07EA001 1972 1976 QMC 5 07EA001 1977 1983 QRC I would like to reshape this to one operational record (row) per year per station. Something like: 07EA001 1960 QMS 07EA001 1961 QMC 07EA001 1962 QMC 07EA001...
2017 Nov 26
0
dplyr - add/expand rows
...gt;> data.collection > # A tibble: 5 x 4 > STATION_NUMBER YEAR_FROM YEAR_TO RECORD > <chr> <int> <int> <chr> > 1 07EA001 1960 1960 QMS > 2 07EA001 1961 1970 QMC > 3 07EA001 1971 1971 QMM > 4 07EA001 1972 1976 QMC > 5 07EA001 1977 1983 QRC > > I would like to reshape this to one operational record (row) per year per station. Something like: > > 07EA001 1960 QMS > 07EA001 1961 QMC > 07EA...
2017 Nov 29
0
dplyr - add/expand rows
...gt; >>> input <- tribble( >>> ~station, ~from, ~to, ~record, >>> "07EA001" , 1960 , 1960 , "QMS", >>> "07EA001" , 1961 , 1970 , "QMC", >>> "07EA001" , 1971 , 1971 , "QMM", >>> "07EA001" , 1972 , 1976 , "QMC", >>> "07EA001" , 1977 , 1983 , "QRC" >>> ) >>> >>> result <- input %>% >>> rowwise() %>% >>> do(tibble(station = .$sta...
2017 Nov 29
2
dplyr - add/expand rows
...input <- tribble( >>>> ??? ~station, ~from, ~to, ~record, >>>> ?? "07EA001" ,??? 1960? ,? 1960? , "QMS", >>>> ?? "07EA001"? ,?? 1961 ,?? 1970? , "QMC", >>>> ?? "07EA001" ,??? 1971? ,? 1971? , "QMM", >>>> ?? "07EA001" ,??? 1972? ,? 1976? , "QMC", >>>> ?? "07EA001" ,??? 1977? ,? 1983? , "QRC" >>>> ) >>>> >>>> result <- input %>% >>>> ??? rowwise() %>% >>>> ?...
2017 Nov 29
0
dplyr - add/expand rows
...bble( >>>>> ~station, ~from, ~to, ~record, >>>>> "07EA001" , 1960 , 1960 , "QMS", >>>>> "07EA001" , 1961 , 1970 , "QMC", >>>>> "07EA001" , 1971 , 1971 , "QMM", >>>>> "07EA001" , 1972 , 1976 , "QMC", >>>>> "07EA001" , 1977 , 1983 , "QRC" >>>>> ) >>>>> >>>>> result <- input %>% >>>>> rowwise() %...
2008 Jun 30
4
Rebuild of kernel 2.6.9-67.0.20.EL failure
Hello list. I'm trying to rebuild the 2.6.9.67.0.20.EL kernel, but it fails even without modifications. How did I try it? Created a (non-root) build environment (not a mock ) Installed the kernel.scr.rpm and did a rpmbuild -ba --target=`uname -m` kernel-2.6.spec 2> prep-err.log | tee prep-out.log The build failed at the end: Processing files: kernel-xenU-devel-2.6.9-67.0.20.EL Checking
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...zFkS4S3gnJqab{&9z*TN zRdhnA?@y}hB+7iNo<yDBsV at M3p`HTY_v&fjAJsF+{StIl`CNSw_-pkn=s$q2DPMu2 zDc`6sp^2-N22FWcbsFuJF&cSAy;K>ibtXm!WrCLWsw%wB*MM`0_PQCIGe!P}%z9Je zw<LaB6<*alXk?Q1F7OoXJxPBb_y*+zP$p_0N}i7ppR8RahOtI#@-b2~wNKPSWhIVc zpCVj^@H0^7Yo7zp)xH2;sC|h+OxM0b{&M7h4ca`=G-ZbN4QMMs`xdm>+IL7T)r263 zvOxO*c#ifXXp2Gn3E>iiKa2ICod=$!{Q|s5yMUZ!$Z61s(Mj2)DfxNEwaONajM6Su z?$h>2q3_XBM{AmLzcxlwmB+NPz&o{ZpggFJ2YytW0Lnw!MBqoX(ZJimsVR?xM^zpG zzozU0kET2f9!=SyO+t&iwaJ>(xL$cuV^fgauT9k$4iwrnO<Y({N6CHK3_;ShnId4? zEb!kzW@}GrgXU;*Qs$!I$J#ti+=k5u&g9wx5jeDknlROiP|ItYkiZw...