06-14-2023
Tiffanie
Calcite | Level 5
Member since
09-17-2021
- 3 Posts
- 14 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by Tiffanie
Subject Views Posted 1090 06-08-2023 06:06 AM 780 03-22-2023 09:56 AM 921 03-17-2023 05:26 AM -
Activity Feed for Tiffanie
- Posted Save SAS program in PDF format with header - Data step problem on SAS Programming. 06-08-2023 06:06 AM
- Posted Re: Kernel density estimates - comparison proc univariate and proc kde - Number of grid points on Statistical Procedures. 03-22-2023 09:56 AM
- Liked Re: Kernel density estimates - comparison proc univariate and proc kde - Number of grid points for Rick_SAS. 03-22-2023 09:53 AM
- Posted Kernel density estimates - comparison proc univariate and proc kde - Number of grid points on Statistical Procedures. 03-17-2023 05:26 AM
- Liked Re: proc power for FreelanceReinh. 02-10-2023 04:07 AM
- Liked Re: proc power for FreelanceReinh. 02-10-2023 04:07 AM
- Liked Re: Convert SAS Program Files to PDF for Haikuo. 07-28-2022 05:36 AM
- Liked Re: SAS profile error on load for ylwang. 04-20-2022 03:50 AM
- Liked SAS Tip: Conversion from Excel Date to SAS Date for SAS_Tipster. 03-23-2022 07:20 AM
- Liked Re: impossible to open a table for Kurt_Bremser. 03-22-2022 03:57 AM
- Liked Re: impossible to open a table for employee_brian. 03-22-2022 03:57 AM
- Liked Re: Adding value labels to SGPLOT for Reeza. 02-22-2022 09:35 AM
- Liked Re: Multiple marker symbols in proc sgplot for DanH_sas. 02-03-2022 06:14 AM
- Liked Re: proc sgplot, plotting OR's and CI for ballardw. 10-06-2021 03:24 AM
- Liked Re: Multiple marker symbols in proc sgplot for DanH_sas. 09-30-2021 04:24 AM
- Liked Re: solution for loop for Linlin. 09-20-2021 10:46 AM
- Liked Re: How to get the estimated density function from proc kde for Rick_SAS. 09-17-2021 02:41 AM
-
Posts I Liked
Subject Likes Author Latest Post 2 3 4 6 3
06-08-2023
06:06 AM
As part of our business, we need to save our SAS programs in PDF format with a header. We would then like to be able to copy paste the program from the PDF to SAS and run it without having to modify it. For this, the headers of the created PDFs are between "/* */" so that they are commented in the program and therefore do not interfere with its execution. However, this causes problems when this header falls in the middle of a data step, because comments in this format are not valid in datalines. Do you have an idea / solution to either allow comments in a data step, or guarantee that the data steps are never on several PDF pages? Indeed, the PDF is created automatically by the following code: title j=l "/* header */"; ods pdf file="location" style=define_style; filename sas "location.sas"; data _null_; infile sas expandtabs; input; temp =_infile_; file print ods=(template="PDF"); put _ods_; run; ods pdf close; Thks for your response.
... View more
03-22-2023
09:56 AM
Thks a lot for your answer very clear. That was exactly chat i wanted to know
... View more
03-17-2023
05:26 AM
Dear community, I'm proceeding to a comparison of the default options for kernel distributions estimates between the "proc univariate" (HISTOGRAM statement / KERNEL option) and the "proc kde" (UNIVAR option). There is one point where I couldn't find the information for the proc univariate it is about the number of grid points. For the proc kde it can be chosen with the NGRID option, and is set by default to 401 points. On the other hand it seems that for the proc univariate it is fixed without the possibility of modifying it, but I cannot find what its value is by default ? Could you help me on the subject please? Thanks a lot. Tiffanie.
... View more