Displaying 16 results from an estimated 16 matches for "qrc".
Did you mean:
irc
2017 Nov 28
2
dplyr - add/expand rows
...gt; <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 QRC
24 07EA001 1983 QRC
If you tell the computer more about your data, it can do more things for
you.
Michael
On Tue, Nov 28, 2017 at 7:34 AM, Martin Morgan <
martin...
2017 Nov 29
0
dplyr - add/expand rows
...t;
> 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 QRC
> 24 07EA001 1983 QRC
>
> If you tell the computer more about your data, it can do more things for
> you.
>
> Michael
>
> On...
2017 Nov 29
2
dplyr - add/expand rows
...???? 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???????? QRC
>> 24????? 07EA001????? 1983???????? QRC
>>
>> If you tell the computer more about your data, it can do more things for
>> you.
>&g...
2017 Nov 28
0
dplyr - add/expand rows
...1" , 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)
> )
>
> ###########################
In a bit more 'base R' mode I did
input$ye...
2017 Nov 27
2
dplyr - add/expand rows
..., ~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)
)
###########################
Jim Holtman
Data Munger Guru
What is the problem that you are trying to solve?
Tell me what you want to do...
2017 Nov 29
0
dplyr - add/expand rows
...t;>> 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 QRC
>>> 24 07EA001 1983 QRC
>>>
>>> If you tell the computer more about your data, it can do more things...
2017 Nov 26
3
dplyr - add/expand rows
...t; <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 1963 QMC
> ...
> 07EA00...
2006 Jul 14
1
mgcv::gam error message
Hi
Could anyone please tell me what to do to resolve this error message?
I tried to run a gam with the mgcv package and got the following error:
"Error in qr.qty(qrc, sm$S[[1]]): NA/NaN/Inf in foreign function call (arg
5)"
(I have 116 covariates, I'm using the "cr" basis to speed things up, the
binomial family and, where necessary, have set the required k to lower than
the number of distinct values for a given covarate when less than the
de...
2009 Feb 07
1
paraPen in gam [mgcv 1.4-1.1] and centering constraints
Dear Mr. Simon Wood, dear list members,
I am trying to fit a similar model with gam from mgcv compared to what I
did with BayesX, and have discovered the relatively new possibility of
incorporating user-defined matrices for quadratic penalties on
parametric terms using the "paraPen" argument. This was really a very
good idea!
However, I would like to constraint the coefficients
2017 Nov 26
0
dplyr - add/expand rows
...<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 28
1
dplyr - add/expand rows
...lt;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 19...
2017 Nov 25
0
dplyr - add/expand rows
...ER 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 1963 QMC
...
07EA001 1971 QMM
Can this be done i...
2017 Nov 26
0
dplyr - add/expand rows
...gt; <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 1963 QMC
> ...
> 07EA001...
2008 Aug 09
2
xy plot in version 2.7.1 for Mac (PR#12520)
...fHBm67Y63OJnr9igTeVixGZJghD5VU8
kx5YY6kvmdmAN3dErw/0AaXqizk6+/etPtKo6zkUaxofjoiQn3VvZEi1XoVhJWc+h5BlBQ36kVr0
yyDRlh7ZVcrtQgDWtDKiLp3bXDD4LJMSzxKpY+9ed+VGzUF76Bx9hajACor2anu4y0xdkTus7CKw
JKypzHcnPjTQZFF5WdbnChCj5aGLiRa9CeEBbHYZlEl1cIltB6CeBp7IeKEWW5AJMRIgi8rdk/Wc
REV59YkNP5dIR5KtirCpCUVKPgW5NvwJr2VSrQRcPR6jTs1Y06Y6FmPyUn9oHX3eKoT5jpM47Q9w
McVVzqbDz4fBfP+Tntmf6xMRio9y/9+f9dJesBijvFqSibJkX6Gl998GawTNC09v3wsfChxqqbn4
qwNLdXj5BvF66k+6qvj42J8+quR1oflOyZvs2RJw/qol+TZUi5N3St5kn1zn6edfo+r45HX+eq/k
ZSb7yHXC96+N3jslb7JPLPnyl9uXovH0TsmL7MPR+QwTQvwm+9SSl8/YQe368Bn7i076p+/1DPXU
n/wtV2+Tt0+imcWQ7dP3Pz2++Reswcnf...
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.
...M#oHv*e<1XB|Tlwp`*
zxU#lwG!Qi>$K?-8$(2B_bK^B3&XT)Z$65bWPlCmCgu-%Fg;V8(4yd(c-!w_9VwPQq
zEH={_6~0Pe2vY7NHhD4S+3_W9i=SyuZ0|T-ORcd>$W`GoH_N(+KM>X>#bM7_PGfy3
zjHK2COXGTy9r6tkstOZrt`lK-5{8kuL6yr|gu%`-WtE`t8R%Td8?VEzxXEhzE0QjZ
zw8UT|m@(l;_yfXIiT63e<_2rq1h*${A##st#jNnIyhfC~xEfR4SVp0+iRqrC9Vfpr
z!I?W-%V;H at XskONA8W9Uwb3mY2*N^`TdXstsre90H{pFiFk;vNUnD9sVf4D8FzjKP
zCvoFUnAMnX(IinVZ0jOtt3*n=qKRnRUKX}99?pyP$aW4)F{F7C6(z%yyzJ6r{)Ab?
zh#Kn at d$~(1(jq1`(VFcdTb<0WfB=i+s>KW!$8|EC>Pe_4yRosSMiTna`oB53UY6iV
zHF_{|SH at 9O!ttfu at dt~X=z*h4JUKh+X~Z3NxUWWdAr;&o?kB8ChCRC8{u;|J!WSq9
z...