'분류 전체보기'에 해당되는 글 38건

https://bookledge.tistory.com/888

 

'취미 > 3D 프린팅' 카테고리의 다른 글

Simplify3D rule  (0) 2020.08.01
블로그 이미지

고향이안드로메다

,

I sometimes get curing like that. I think its from the filament cooling without support.

  1. Try lowering your extruder temps. If thats PLA try 195 ish.
  2. Put a pause between small layers to give them enough time to cool and enter a more solid state, the transition is not instant.
  3. Have cooling fan running at 100% from layer 2 and up.
  4. Obey the 55 deg rule. (some call it the 45 deg rule)
  5. Stop putting so much mustard on your sandwiches.

'취미 > 3D 프린팅' 카테고리의 다른 글

참고} 빨리 출력  (0) 2020.08.04
블로그 이미지

고향이안드로메다

,

Geomean의 사용: Skewed data, scaled data, 

  •  Population growth
  •  Compounding interest
  •  Bioassays
  •  Radioactive decay
  •  Dose-response relationships
  •  Count data
  •  Time Series data
  •  Longitudinal data
  •  Repeated measures data
  •  Bioequivalence trials

기하평균사용시의 조건: 0이나 음의 값이 있으면 안됨..

만약 그렇다면 어떻게 할까?

1. Adjust your scale so that you add 1 to every number in the data set, and then subtract 1 from the resulting geometric mean.

2. Ignore zeros or missing data in your calculations.

3. Convert zeros to a very small number (often called “below the detection limit”) that is less than the next smallest number in the data set.

 

FINDING GEOMETRIC MEANS WITHIN AN OBSERVATION: GEOMEAN()/GEOMEANZ()

FINDING GEOMETRIC MEANS FOR A POPULATION

 

Geometric mean CV값

 

 

 

'통계 clinical trial > SAS' 카테고리의 다른 글

[SAS] Proc ANOVA/ Proc ttest -ODS output p-value  (0) 2020.07.29
[SAS] time, date 더하기, 빼기  (0) 2020.07.28
PROC REPORT (title page)  (0) 2020.07.27
RM ANOVA (proc glm, proc mixed)  (0) 2020.07.21
SAS Procedure 들  (0) 2019.03.03
블로그 이미지

고향이안드로메다

,

야간 작업 중 간식을 줬더니 친한 척 하는 사진  ..

 

아침 구경 나옴.. 원래 2마리인데 한마리는 좌하단에 다리 노출..

블로그 이미지

고향이안드로메다

,

ods exclude all;   /** ods output 출력 제한 **/
proc anova data = pk_data2    ;   
class trt ;
model   xx1 xx2 xx3   =trt ; 
  ods output   overallANOVA=Statistics1     ;
run ;

proc anova ods

 

proc ttest data = pk_datax2 dist=lognormal  ;   
var   xx1 xx2 xx3 xx4  ; 
class trt ;
 ods output   Statistics=Statistics1  ttests= ttests  ;
run ;


data geomean ; set statistics1 ;  //** Geomean 계산 **//
length trt $3 ;
 keep Variable class GeomMean  n0 ;
 if ((class NE "R") and (class NE "T")) then delete ;
  n0+1;
  rename class = trt ;
  run ;

 

'통계 clinical trial > SAS' 카테고리의 다른 글

Geometric mean 계산  (0) 2020.07.29
[SAS] time, date 더하기, 빼기  (0) 2020.07.28
PROC REPORT (title page)  (0) 2020.07.27
RM ANOVA (proc glm, proc mixed)  (0) 2020.07.21
SAS Procedure 들  (0) 2019.03.03
블로그 이미지

고향이안드로메다

,

https://www.youtube.com/watch?v=Yoc6sjQ_qyI

 

1. halo가 있는 별과 유사한 지역에서 별이 없는 곳 선택

2. Select --> modify --> Feather (shift+F6)..    feather radius : 8 pixels

    각진부분이 round해짐.

3. layer에 copy and paste

4. halo가 있는 별쪽으로 이동

5. Layer --> Layer mask --> Reveal all 선택

6. 왼쪽 팔랫트에서 brush tool 선택. (swtich foreground and backgroud color (X)

7.  layer opacity를 20%정도로 하고 별부분만 brushing함..

8. opacity를 100%로

9. Filter --> Blur --> Gaussain blur; radius 조절 3.8 pixel정도로

10. Layers를 Pinlight선택

 

블로그 이미지

고향이안드로메다

,

FSQ-85.

SBIG 8300M,

LRGB combination..

 

너무오래전 찍은거라 기억이.. ㅠㅠ

늦여름 초가을 별사진 찍는 사람의 국민대상.. 하지만, 찍어도 찍어도 참 불만스러움..

 

'별 볼일 있는 세상 > Astrophotography' 카테고리의 다른 글

NGC6888 (Crescent Nebula)  (0) 2020.07.21
NGC5363 region  (0) 2020.07.20
북아메리카성운 + 펠리칸성운  (0) 2020.07.20
블로그 이미지

고향이안드로메다

,

특정시간/날짜에서 특정시간이나 날짜를 빼고자 할 때.. 그리고 다시 합치기

 

data xxx ; set dm_data.ex;

date = datepart(EXSTDTC) ;  date1 = datepart(EXSTDTC) ;  /**날짜추출  **/
time = timepart(EXSTDTC);  time1 = timepart(EXSTDTC); /**시간추출  **/


   date2 = date + 7 ;   /**7일을 더할때  **/ 
    time2 = time + 60*60*2 ;  /**2시간을 더할때, 60sec, 60min  **/
 
 datetime = dhms(date2,0,0,time2) ; /**날짜와 시간을 같은 field로 합치기 - dhms fx사용  **/
 format date ddmmyy10. date2 ddmmyy10.  time time8. time2 time8datetime  DATETIME22.3;
run ;

 

 

output

 

 

DATETIME22.3

  30MAY2020:08:20:00.000   --> 1906446000  숫자 1의 의미  1초을 의미.

 만약 7주일 10시간 12분 5초 후 계산 (2020년 6월 6일 오후 6시 32분 5초) :

            7 * 24*60*60 + 10*60*60 + 12*60 +5 = 641525

              1906446000  +  641525   = 1907087525

 

 

 

 

기타 

data have;
  eventDate = datetime();
  
format eventDate datetime22.3;

  eventYear = year( datepart(eventDate) );
  eventYear_c = put(eventDate, 
dtyear4.);
run;

'통계 clinical trial > SAS' 카테고리의 다른 글

Geometric mean 계산  (0) 2020.07.29
[SAS] Proc ANOVA/ Proc ttest -ODS output p-value  (0) 2020.07.29
PROC REPORT (title page)  (0) 2020.07.27
RM ANOVA (proc glm, proc mixed)  (0) 2020.07.21
SAS Procedure 들  (0) 2019.03.03
블로그 이미지

고향이안드로메다

,