08-20-2024
Fluvio1
Calcite | Level 5
Member since
07-09-2022
- 13 Posts
- 0 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by Fluvio1
Subject Views Posted 1700 07-25-2024 10:20 AM 1802 07-24-2024 11:10 AM 3230 08-01-2023 07:42 PM 3302 07-31-2023 07:47 PM 3356 07-31-2023 01:23 PM 3479 07-29-2023 10:06 AM 3612 07-28-2023 11:01 AM 2930 07-26-2023 01:01 PM 2953 07-26-2023 12:41 PM 2955 07-26-2023 12:40 PM -
Activity Feed for Fluvio1
- Posted Re: output observations in one dataset but not in another on SAS Programming. 07-25-2024 10:20 AM
- Posted output observations in one dataset but not in another on SAS Programming. 07-24-2024 11:10 AM
- Posted Re: bootstrapping OLS regression confidence intervals and applyto individual predicted values on Statistical Procedures. 08-01-2023 07:42 PM
- Posted Re: bootstrapping OLS regression confidence intervals and applyto individual predicted values on Statistical Procedures. 07-31-2023 07:47 PM
- Posted Re: bootstrapping OLS regression confidence intervals and applyto individual predicted values on Statistical Procedures. 07-31-2023 01:23 PM
- Posted Re: bootstrapping OLS regression confidence intervals and applyto individual predicted values on Statistical Procedures. 07-29-2023 10:06 AM
- Posted bootstrapping OLS regression confidence intervals and applyto individual predicted values on Statistical Procedures. 07-28-2023 11:01 AM
- Posted Re: Proc REG. How do I transform ln confidence limits back to original arithmetic units ? on Statistical Procedures. 07-26-2023 01:01 PM
- Posted Re: Proc REG. How do I transform ln confidence limits back to original arithmetic units ? on Statistical Procedures. 07-26-2023 12:41 PM
- Posted Re: Proc REG. How do I transform ln confidence limits back to original arithmetic units ? on Statistical Procedures. 07-26-2023 12:40 PM
- Posted Proc REG. How do I transform ln confidence limits back to original arithmetic units ? on Statistical Procedures. 07-24-2023 01:44 PM
07-25-2024
10:39 AM
proc sql;
create table data_want as
select * from compare_dataset_214_obsv
where wrs_acres not in (select distinct wrs_acres from compare_dataset_148_obs);
quit;
@Fluvio1 wrote:
I tried both programs but they do not provide the results I am looking for. The attached dataset "Compare_dataset_148_obsv" contains 148 observations. The dataset "Compare_dataset_214_obsv" contains 214 observations. I would like to identify the observations in "Compare_dataset_214_obsv" that are not in "Compare_dataset_148_obsv" and output the observations to a file. While the datasets contain different variables, they have in common: WRS_acres.
... View more
08-02-2023
05:59 AM
1 Like
It doesn't make any difference, but if you want the confidence intervals on the original data scale, exponentiate the estimates.
That is, if
(L(x), U(x)) is the confidence interval for the mean of log(Y) when X=x, then
(exp(L(x)), exp(U(x))) is the confidence interval for the mean of Y.
... View more
07-26-2023
01:01 PM
Thanks again Rick. I attached the original paper by Duan that defines the smearing estimator. Also see below:
... View more