09-06-2024
Cingchih
Quartz | Level 8
Member since
09-16-2017
- 44 Posts
- 6 Likes Given
- 4 Solutions
- 3 Likes Received
-
Latest posts by Cingchih
Subject Views Posted 1392 01-04-2024 12:54 PM 1483 01-03-2024 12:55 PM 2076 12-05-2023 07:45 AM 2150 12-02-2023 05:39 AM 2194 11-30-2023 09:19 PM 2203 11-30-2023 08:06 PM 2282 11-30-2023 04:31 AM 929 09-11-2021 12:14 PM 951 09-10-2021 10:36 PM 1028 03-11-2020 02:24 AM -
Activity Feed for Cingchih
- Posted Re: I can't run the file I created myself. on Mathematical Optimization, Discrete-Event Simulation, and OR. 01-04-2024 12:54 PM
- Posted I can't run the file I created myself. on Mathematical Optimization, Discrete-Event Simulation, and OR. 01-03-2024 12:55 PM
- Liked Re: The property of the modifier and extractor block in SAS Simulation Studio couldn't be revised. for RobPratt. 12-05-2023 08:54 PM
- Posted Re: The property of the modifier and extractor block in SAS Simulation Studio couldn't be revised. on Mathematical Optimization, Discrete-Event Simulation, and OR. 12-05-2023 07:45 AM
- Posted Re: The property of the modifier and extractor block in SAS Simulation Studio couldn't be revised. on Mathematical Optimization, Discrete-Event Simulation, and OR. 12-02-2023 05:39 AM
- Posted Re: The property of the modifier and extractor block in SAS Simulation Studio couldn't be revised. on Mathematical Optimization, Discrete-Event Simulation, and OR. 11-30-2023 09:19 PM
- Posted Re: The property of the modifier and extractor block in SAS Simulation Studio couldn't be revised. on Mathematical Optimization, Discrete-Event Simulation, and OR. 11-30-2023 08:06 PM
- Posted The property of the modifier and extractor block in SAS Simulation Studio couldn't be revised. on Mathematical Optimization, Discrete-Event Simulation, and OR. 11-30-2023 04:31 AM
- Posted Re: Proc Orthoreg Confidence/Prediction intervals on Statistical Procedures. 09-11-2021 12:14 PM
- Liked Re: Proc Orthoreg Confidence/Prediction intervals for PGStats. 09-11-2021 12:13 PM
- Posted Re: Proc Orthoreg Confidence/Prediction intervals on Statistical Procedures. 09-10-2021 10:36 PM
- Posted Re: With respect to proc shewhart-pchart statement on SAS Programming. 03-11-2020 02:24 AM
- Liked Re: Why not display the right formation for a20? for Tom. 03-08-2020 08:07 PM
- Posted Re: Why not display the right formation for a20? on SAS Programming. 03-08-2020 12:35 PM
- Posted Re: With respect to proc shewhart-pchart statement on SAS Programming. 03-07-2020 09:27 AM
- Posted With respect to proc shewhart-pchart statement on SAS Programming. 03-06-2020 10:11 PM
- Liked Re: Why not display the right formation for a20? for Tom. 03-06-2020 09:52 PM
- Posted Re: Why not display the right formation for a20? on SAS Programming. 03-06-2020 09:50 PM
- Posted Why not display the right formation for a20? on SAS Programming. 02-28-2020 10:18 PM
- Posted How to change the font attributes of the gradlegend? on Graphics Programming. 09-21-2019 12:17 PM
-
Posts I Liked
Subject Likes Author Latest Post 1 3 1 1 3 -
My Liked Posts
Subject Likes Posted 1 05-28-2018 10:48 PM 1 05-28-2018 11:19 AM
01-04-2024
12:54 PM
After referring to the instructions for the EntityGenerator in the SAS Simulation Studio user manual, I corrected the settings again and succeeded. For this yellow EntityGenerator, after checking "After Signal Arrival", "To Schedule the Creation of Next Entity" below cannot be checked. In addition, the red Numeric Source block does not need to be pulled out. Finally, thank you all for your replies.
... View more
01-03-2024
12:55 PM
Has anyone ever run the official training materials of SAS simulation studio? I can't run the file I created myself. What's the error ?
... View more
12-05-2023
07:45 AM
See letter x in red area Thank you to the American technical team.
... View more
12-02-2023
05:39 AM
Tested previously and the problem still exists. After asking the Taiwanese technical team, they used the English version of the software to open it and there were no problems. So the problem seems to be related to the language selection of the software. For attachments, please see private message.
... View more
11-30-2023
09:19 PM
Although there is no solution to the problem I have found so far, I have found an alternative. Convert the xlsx file into a sas7dbat file through SAS, and then import the data through the Observation block. At this time, you can select "An Observation Value Input" in the modifier block instead of the problematic "Independent Value Inputs".
... View more
11-30-2023
08:06 PM
A colleague suggests trying the following: Open the modifier or extractor block Add a new record Change the type before making any other changes ===>I tried following your suggestions, but still can't revise it. This should be a software bug. Also try changing the name after changing the type
... View more
11-30-2023
04:31 AM
I could not revise the column, including name, type, and default, in the block property of the the modifier in SAS Simulation Studio (v15.1). I couldn't change it even if I click twice. I wonder if anyone has encountered this problem and how to troubleshoot it? in SAS Simulation Studio, neither of two block (the modifier and extractor) can modify it, and other blocks are normal.
... View more
09-11-2021
12:14 PM
Really solved it, thank you for your valuable grammar.
... View more
09-10-2021
10:36 PM
I have the same problem as him. Take the following as an example. data polynomial;
do i=1 to 101;
x=(i-1)/(101-1);
y=10**(9/2);
do j=0 to 8;
y=y*(x-j/8);
end;
output;
end;
run;
ods graphics on;
proc orthoreg data=polynomial;
effect xMod = polynomial(x / degree=6);
model y = xMod;
effectplot fit / obs;
store OStore;
run;
ods graphics off; SAS produced the 95CI interval. I want to know the upper and lower limits value of each data point. What syntax should I use? I checked the SAS manual, and the Proc orthoreg statement only has the outset option, which does not seem to output the upper and lower limits value of each data point. https://support.sas.com/documentation/onlinedoc/stat/141/orthoreg.pdf see p6699 Please reply, thank you.
... View more
03-11-2020
02:24 AM
The problem has been solved. Just add testnmethod = standardize to the options after the pchart statement
... View more
03-08-2020
12:35 PM
Thank you for your reply, and I will study it later.
... View more
03-07-2020
09:27 AM
If I turn off ods graphics, I will not be able to output large images. Or is there another way to overcome it? Because I can't increase the size of text and numbers, I can only use ods graphics to output them as .tiff files, and then convert them to JPG files through LIGHTROOM. This text size is acceptable in this method. If I setup ods graphics off, how do I set the width and height of the graphics and increase the size of the text and numbers, then please provide a method, thank you. When I setup ODS GRAPHICS on the irchart statement (individual chart), the data points that exceed the control limits can be displayed in red. However, I can't succeed on the pchart.
... View more
03-06-2020
10:11 PM
I use two test-related statements, and the control chart is out of control. Why don't the red words and red lines appear? How do I adjust the grammar? thank you for your response . data a;
input sequ n subgroup y m;
datalines;
1 227 1650 2018 1
2 178 1522 2018 2
3 184 1563 2018 3
4 180 1523 2018 4
5 179 1653 2018 5
6 186 1520 2018 6
7 195 1596 2018 7
8 157 1588 2018 8
9 165 1592 2018 9
10 200 1561 2018 10
11 89 1554 2018 11
12 110 1646 2018 12
13 120 1662 2019 1
14 119 1581 2019 2
15 183 1676 2019 3
16 161 1607 2019 4
17 196 1769 2019 5
18 140 1651 2019 6
19 293 1723 2019 7
20 211 1747 2019 8
21 207 1670 2019 9
22 164 1658 2019 10
23 100 1644 2019 11
24 121 1664 2019 12
;run;
ods graphics on / width=1600 height=600 ;
title "notitle_p chart";
proc shewhart data=a;
pchart n*sequ (y m) /
subgroupn = subgroup
odstitle=title
tests=1 2 3 5
test2run=8
alln
haxis=1 to 25 by 1
yscale=percent
markers
nohlabel
nochart2
blockpos=3
blocklabelpos=left
rtmplot=histogram
ltmplot=schematic
rtmargin=10
ltmargin=4
zonelabels;
Label n="I am n" y="year" m="month";
run;title; ods graphics off;
... View more
03-06-2020
09:50 PM
In fact, my question is that six big datasets merge into a dataset. However, they do not share variable (also known as key variable). I converted several variables into string attributes, and then concatenated all of them to form the key variables used in the merge. So, the examples I have presented are actually simplified. I have resolved this through full join of proc sql, and thank you for your response. The attached picture is my key variable. It is composed of 4 variables.
... View more
02-28-2020
10:18 PM
Thank you for your reply data a;
a9=123456789;
a15=123456789123456;
a20=12345678912345678912;
format a15 15. a20 20.;
run
... View more