Displaying 7 results from an estimated 7 matches for "champagin".
Did you mean:
campaign
2017 Sep 29
5
Converting SAS Code
Hello all,
My statistical analysis training up until this point has been entirely done
in SAS. The code I frequently used was:
*Yield Champagin;
data yield;
set stress;
if field='YV' then delete;
if field='HB' then delete;
if barcode='16187DD4015' then delete;
if barcode='16187DD6002' then delete;
if barcode='16187DD2007' then delete;
if barcode='16187DD5016' then delete;
if barcode=...
2017 Sep 29
0
Converting SAS Code
...to.delete | stress$yield %in% c('YY', 'HB')
yield <- stress[ !records.to.drop , ]
I think these are examples of doing it "the R way", not thinking in terms of directly translating SAS code to R code.
I used to use SAS a lot, but I don't know what the line
*Yield Champagin;
does.
--
Don MacQueen
Lawrence Livermore National Laboratory
7000 East Ave., L-627
Livermore, CA 94550
925-423-1062
Lab cell 925-724-7509
On 9/29/17, 5:47 AM, "R-help on behalf of Andrew Harmon" <r-help-bounces at r-project.org on behalf of andrewharmon42 at gmail.com> wrote:...
2017 Sep 29
4
Converting SAS Code
...in plain text not HTML as HTML mangles your post
>
> On 29/09/2017 13:47, Andrew Harmon wrote:
>> Hello all,
>>
>> My statistical analysis training up until this point has been
>> entirely done
>> in SAS. The code I frequently used was:
>>
>> *Yield Champagin;
>>
>> data yield;
>>
>> set stress;
>>
>> if field='YV' then delete;
>>
>> if field='HB' then delete;
>>
>> if barcode='16187DD4015' then delete;
>>
>> if barcode='16187DD6002' then delete;
>...
2017 Sep 29
0
Converting SAS Code
...English but few of us speak SAS
3 - post in plain text not HTML as HTML mangles your post
On 29/09/2017 13:47, Andrew Harmon wrote:
> Hello all,
>
> My statistical analysis training up until this point has been entirely done
> in SAS. The code I frequently used was:
>
> *Yield Champagin;
>
> data yield;
>
> set stress;
>
> if field='YV' then delete;
>
> if field='HB' then delete;
>
> if barcode='16187DD4015' then delete;
>
> if barcode='16187DD6002' then delete;
>
> if barcode='16187DD2007' th...
2017 Sep 29
0
Converting SAS Code
...post
>>
>> On 29/09/2017 13:47, Andrew Harmon wrote:
>>
>>> Hello all,
>>>
>>> My statistical analysis training up until this point has been entirely
>>> done
>>> in SAS. The code I frequently used was:
>>>
>>> *Yield Champagin;
>>>
>>> data yield;
>>>
>>> set stress;
>>>
>>> if field='YV' then delete;
>>>
>>> if field='HB' then delete;
>>>
>>> if barcode='16187DD4015' then delete;
>>>
>>> if...
2017 Sep 29
1
Converting SAS Code
> On 29 Sep 2017, at 22:43 , MacQueen, Don <macqueen1 at llnl.gov> wrote:
>
> I used to use SAS a lot, but I don't know what the line
> *Yield Champagin;
> does.
Nothing. It's a comment...
--
Peter Dalgaard, Professor,
Center for Statistics, Copenhagen Business School
Solbjerg Plads 3, 2000 Frederiksberg, Denmark
Phone: (+45)38153501
Office: A 4.23
Email: pd.mes at cbs.dk Priv: PDalgd at gmail.com
2017 Sep 29
2
Converting SAS Code
...post
>>
>> On 29/09/2017 13:47, Andrew Harmon wrote:
>>
>>> Hello all,
>>>
>>> My statistical analysis training up until this point has been entirely
>>> done
>>> in SAS. The code I frequently used was:
>>>
>>> *Yield Champagin;
>>>
>>> data yield;
>>>
>>> set stress;
>>>
>>> if field='YV' then delete;
>>>
>>> if field='HB' then delete;
>>>
>>> if barcode='16187DD4015' then delete;
>>>
>>> if...