I have water temperature data for moring and evening, I need to show the maximum and minimum value by the SAS program.
Can anyone inform me of the SAS code for this
See the link:
https://www.bing.com/search?FORM=U528DF&PC=U528&q=How+to+get+simple+statistics+in+SAS
David Booth
https://blogs.sas.com/content/sgf/2015/01/29/using-parameters-in-sas-visual-analytics/
https://v8doc.sas.com/sashtml/proc/ztatback.htm
You can use PROC MEANS or PROC UNIVARIATE and save results in a data set.
Here an example.
PROC MEANS DATA=yourdatasetname;
BY variable_morning_evening;
VAR temp_var;
OUTPUT OUT=outdataset MIN=min_temp MAX=max_temp;
run;
/* you can also use a CLASS statement instead the BY statement,
if you use the BY statement you must sort the data before running PROC MEANS
es.
PROC SORT DATA=yourdatasetname;
RUN;
*/
Air moisture harvesting Air water collection devices
06 August 2024 5,473 2 View
Hi everyone I need a file with a dirty and clean potato image
04 August 2024 7,198 4 View
Molecular docking software/ websites?
02 August 2024 8,704 7 View
Can we patent a process flow diagram developed using a process simulator but no actual cases is carried out? For example consider a process for certain product manufacture where a new process flow...
31 July 2024 780 1 View
I am working on algal extract to which gas chromatography (Not GC-MS) spectrum I want to discover. My question is can we identify specific compounds using retention time if I compared the RT with...
29 July 2024 8,033 4 View
I want to write a topic for my PhD thesis in hospitality (hotels), can u please suggest some variables
29 July 2024 9,058 3 View
Time-Frequency Domain
19 July 2024 8,031 2 View
Dear Colleagues, I hope this message finds you well. My name is Noor Al-Huda K. Hussein,and I am a researcher specializing in deep learning applications in genetic data analysis. I am currently...
18 July 2024 5,562 0 View
Dear Colleagues, I hope this message finds you well. My name is Noor Al-Huda K. Hussein, and I am a researcher specializing in deep learning applications in genetic data analysis. I am currently...
16 July 2024 3,981 6 View
i need to find ECC for 4-MIMO antenna using radiation pattern on CST
16 July 2024 7,291 1 View
I am looking for a published article using SAS or SPSS Generalized linear model for trial/event data and not survival analysis. Both software packages off the option for the number of success out...
30 July 2024 3,835 2 View
all math can be traversed by code? all math can be translate to code?
26 July 2024 9,530 0 View
students already took 1. numerical methods 2. programming language 3. Probability and statistics
09 July 2024 6,271 3 View
We have developed an ODE model comprising 25 interrelated equations with common coefficients. This biochemical model, applied in wastewater treatment, is characterized by stiffness. Utilizing the...
06 July 2024 7,076 4 View
Object-Oriented Programming
29 June 2024 4,877 12 View
when designing an e-learning platform what model and programming language do you select?
29 June 2024 7,503 4 View
I ran PCA on 4 variables using the prcomp library. All variables were normalized to have a mean of zero and a standard deviation of one (z-score) before the PCA. prc 1 and I performed a varimax...
26 June 2024 6,792 1 View
What is it's difference between lsoda method in R vs. ODE23 or 45 solver in MATLAB.(especially in wastewater treatment and biochemical processes) I am currently engaged in the development of a...
24 June 2024 9,188 2 View
So my student have a question that i cannot answer as well. She analyzing the effect of ICT toward labor productivity using 8 years data panel using 4 independent variables with EVIEWS 13. Frankly...
12 June 2024 5,183 4 View
I have many skills like data analysis with R programming or Spss , scientific writing and paper publishing
23 May 2024 1,683 3 View