Introdunction

Resources are scarce(자원은 희소하다.)

희소성(Scarcity) : 사회가 가진 자원은 제한적이라는 속성

경제학(Economics)

한 사회가 자신의 희소한 자원들을 관리(Manage)하는 방법을 연구하는 학문

  • 사람들은 무엇을 살 것인지, 얼마나 일하고, 저축하고, 지출할 것인지를 어떻게 결정하나?
  • 기업은 무엇을 얼마나 생산하고, 노동자들을 몇 명이나 고용할 것인지 어떻게 결정하나?
  • 사회는 제한된 자원을 국방비, 소비재, 환경보호, 기타 여러 필요한 일에 어떻게 배분하나?
Read more »

Introduction

Optimization - 시험

  • Define manufacturing and describe the technical and economic consideration : A kind of optimization
  • Relationship among product design(functionality & costs) and engineering(processes) and factors(materials)
  • Important trends in modern manufacturing and minimizing of production costs(optimization)

Manufacturing(production)

  • The process of converting raw materials into products
    • Design of desires
    • Realization of goods
    • Through various production methods
  • Raw material became a useful product : Maximizing Added value

Product Design & Concurrent Engineering

  • Product design(제품 설계)
    • 70~80%의 개발 비용
    • 제품에 대한 기능 및 성능의 이해 필요
    • CAD, CAM, CIM을 통해 설계와 제작이 순차적으로 이루어짐
    • 하지만 현대는 즉각적으로 이뤄짐 : 동시 공학
  • Concurrent engineering(동시 공학)
    • 설계 및 제조를 통합하는 즉각적이고 체계적인 접근
    • 제품의 수명주기와 관련된 모든 요소 최적화
Read more »

결측값 X

read.table

1
2
setwd("/Users/zerohertz")
text=read.table('Data.txt',header=T)

Data 취사 선택

indexing - []

Read more »

정규성 검정 function

shapiro.test(), qqnorm(), qqline()

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
> library(MASS)
> attach(Cars93)
> shapiro.test(Price)

Shapiro-Wilk normality test

data: Price
W = 0.88051, p-value = 4.235e-07

> str(Price)
num [1:93] 15.9 33.9 29.1 37.7 30 15.7 20.8 23.7 26.3 34.7 ...
> qqnorm(Price)
> qqline(Price)
> qqnorm(log(Price))
> qqline(log(Price))
> shapiro.test(log(Price))

Shapiro-Wilk normality test

data: log(Price)
W = 0.9841, p-value = 0.32
Read more »