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;
*/
I am at the beginner level in drug design and drug discovery, and I am interested to learn more about this field. Which books are highly recommended to start from and gives me all essential...
02 March 2021 8,437 2 View
during ultrasound examination of acute abdomen, sometimes we see free fluid , can we know the type of fluid ,whether blood or not , using ultrasound only? if yes , what are the sonographic...
01 March 2021 7,476 4 View
Is the period to autoclave not enough? The inoculation in a hood and flame and UV and alcohol.
27 February 2021 9,356 3 View
I need to be able to match in-text citations to a reference list and back again in very large documents (100+ pages) WITHOUT the use of referencing software like Endnote. my method is to type the...
27 February 2021 9,848 1 View
I want to publish paper in journal but I have figures which have drawn with bio-renders, can I put them in the paper or which other software I can use to draw them?
27 February 2021 8,179 1 View
What is the most suitable medium of ascomycetes fungi ??
26 February 2021 4,413 1 View
Using GDB, it is straightforward to debug and monitor a target program by setting a break-point at a specific instruction, since the instruction addresses are known. However, we have two...
24 February 2021 1,598 2 View
Hi everyone, I am just wondering if we incubated 200 microliter of whole blood with 50 microliter of cancer cells(1bout 5000cells) do you think that cancer would survive for 48 hours?
23 February 2021 3,840 3 View
Detecting the drug related problems is an important step in the pharmaceutical care plan
21 February 2021 5,421 3 View
We have a research project consisting of three variables where big data is the independent variable. Some previous studies showed that Volume, Variety, Velocity and Veracity Are the dimensions...
21 February 2021 8,133 2 View
Which is suitable for use with Python? MySQL or SQL Server? What is your suggestion?
01 March 2021 3,422 3 View
In R-studio, there are many commands of Gumbel package. Arguments are also different. I`m asking about the alpha parameter of the Copula which must be greater than 1. If this is the one used to...
25 February 2021 5,229 3 View
I understand there are a lot of software programs that can simulate DED by going through specific modeling, simulation, and commands. For me, that was time consuming and results were not accurate....
24 February 2021 4,428 3 View
Hello everyone: I am looking for a simple software program to model chemical bonds. The purpose is to generate a high-quality graphical abstract for a top leading journal in the field of...
23 February 2021 8,012 3 View
To be specific, I want to conduct an IV regression in stata with the following three equations. EQ1: Y1 ~Y2 Y3 X EQ2: Y2 ~ Z1 EQ3: Y3 ~ Z2 Both Y2 and Y3 are endogenous. However, Z1 and Z2 are...
23 February 2021 6,266 3 View
My real system (buck converter) can only take an input of 0 to 1 (duty ratio) and I need to constrain the system so the controller action keeps within this bounds. How can I do this? The code for...
22 February 2021 2,125 3 View
Hi everyone. I am researching droguht effects on soil water drought. I am looking for already implemented functions in R or Python to estimate soil water content from precipitation,...
21 February 2021 2,084 1 View
I have a basic knowledge on Python, R and MATLAB in analysing data. Among those, which is the best and user friendly? Which one should I learn deeply to analyse data?N:B: I want to learn data...
20 February 2021 3,950 15 View
Hi I am trying to segment a sentinel2 image. At this stage, I want to run a binary classifier that assigns each pixel to either farm or non-farm pixel. For this purpose, I have 4 10m bands...
15 February 2021 3,596 9 View
if we assume 20 is the upper bound of an objective function (OF) based on permutation a square matrix (nxn) , The minimum value of the OF=22, then we run a random operator to compute the OF by...
14 February 2021 6,056 5 View