search for: qmc

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

Did you mean: lmc
2017 Nov 28
0
dplyr - add/expand rows
...ltman wrote: > 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...
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, ....
2017 Nov 28
2
dplyr - add/expand rows
...t;- with(input, DataFrame(station, year=IRanges(from, to), record)) expand(df, "year") DataFrame with 24 rows and 3 columns station year record <character> <integer> <character> 1 07EA001 1960 QMS 2 07EA001 1961 QMC 3 07EA001 1962 QMC 4 07EA001 1963 QMC 5 07EA001 1964 QMC ... ... ... ... 20 07EA001 1979 QRC 21 07EA001 1980 QRC 22 07EA001 1981 QRC 23 07EA001 1982...
2017 Nov 29
0
dplyr - add/expand rows
...ar=IRanges(from, to), record)) > expand(df, "year") > > DataFrame with 24 rows and 3 columns > station year record > <character> <integer> <character> > 1 07EA001 1960 QMS > 2 07EA001 1961 QMC > 3 07EA001 1962 QMC > 4 07EA001 1963 QMC > 5 07EA001 1964 QMC > ... ... ... ... > 20 07EA001 1979 QRC > 21 07EA001 1980 QRC > 22 07EA001 1981 QR...
2017 Nov 29
2
dplyr - add/expand rows
...d)) >> expand(df, "year") >> >> DataFrame with 24 rows and 3 columns >> ???????? station???? year????? record >> ???? <character> <integer> <character> >> 1?????? 07EA001????? 1960???????? QMS >> 2?????? 07EA001????? 1961???????? QMC >> 3?????? 07EA001????? 1962???????? QMC >> 4?????? 07EA001????? 1963???????? QMC >> 5?????? 07EA001????? 1964???????? QMC >> ...???????? ...?????? ...???????? ... >> 20????? 07EA001????? 1979???????? QRC >> 21????? 07EA001????? 1980???????? QRC >> 22?????...
2017 Nov 29
0
dplyr - add/expand rows
..."year") >>> >>> DataFrame with 24 rows and 3 columns >>> station year record >>> <character> <integer> <character> >>> 1 07EA001 1960 QMS >>> 2 07EA001 1961 QMC >>> 3 07EA001 1962 QMC >>> 4 07EA001 1963 QMC >>> 5 07EA001 1964 QMC >>> ... ... ... ... >>> 20 07EA001 1979 QRC >>> 21 07EA001 1980...
2017 Nov 26
3
dplyr - add/expand rows
...record 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...
2017 Nov 26
0
dplyr - add/expand rows
...g: > > > > > 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: > > >...
2017 Nov 28
1
dplyr - add/expand rows
...t; > 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 >> > statio...
2017 Nov 25
0
dplyr - add/expand rows
...returned tibble of station operational record 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 07...
2017 Nov 26
0
dplyr - add/expand rows
...tional record 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 &g...
2006 Jul 28
2
Kernel 2.4 in centos 4.3
Hi, I?m using centos in 4 servers that work as gateway for intranets where i work. I built a particular kernel for my needs but this kernel is 2.4.31. So i neeed to boot this kernel in centos 4.3 and centos 4.2. Can anyone help with that? I know the problem is mainly in modutils because modules cannot be loaded when kernel is loaded. Any help is very much appreciated.
2003 Dec 01
0
No subject
...berqrbs~yhl g`opnqnl on d`mmni cpsooe npc`mhg`vhi, lnfmn a{qrpn onkswhr| onkms~ hmtnpl`vh~ on hmrepeqs~yels bnopnqs. Opedk`c`el B`l db` jnlokejr` dk jnmr`jrnb on }kejrpnmmni onwre: Jnlokejr "Npc`mhg`vhh Lnqjb{" - 38000 opedophrhi (bqe q }kejrpnmm{lh `dpeq`lh); Jnlokejr "Npc`mhg`vhh QMC" - 30000 opedophrhi (bqe q }kejrpnmm{lh `dpeq`lh) J`fd{i jnlokejr bjk~w`er b qea: - qnnrberqrbs~ys~ a`gs d`mm{u dk jnmr`jrnb on }kejrpnmmni onwre; - opncp`lls GroupMail dk `brnl`rhweqjni p`qq{kjh }kejrpnmmni onwr{. A`g` d`mm{u "38000 npc`mhg`vhi Lnqjb{". Jpnle }kejrpnmmncn `dpeq`...
2003 Dec 01
0
No subject
...lt;mailto:samba-request@lists.samba.org?subject=unsubscribe> List-Archive: http://lists.samba.org/pipermail/samba/ Sb`f`el{e jnkkech! M`deelq a{r| onkegm{lh B`l, opedknfhb m`xh mnb{e hmtnpl`vhnmm{e opndsjr{ m` jnlo`jr-dhqj`u: ]kejrpnmm{i PECHQRP opnhgbndhrekei rnb`pnb h sqksc b Pnqqhh, qrp`m`u QMC h A`krhh. Jrn, wrn, cde h j`j opnhgbndhr. S jncn m`irh msfm{i rnb`p h jnls opedknfhr| b{osqj`els~ opndsjvh~ aeg onqpedmhjnb, sqr`mnbhb cnphgnmr`k|m{e qbgh. Qop`bnwmhj b{osqj`erq q 1991 c. q onqrnmm{l (me pefe 2-u p`g b cnd) namnbkemhel. Bjk~w`er: - 100 000 opedophrhi p`gkhwm{u nrp`qkei h tnpl qnaqr...