incastle의 콩나물
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/baqoWV/btqvKC9VOEt/6TUfn1fhR0Xh9kHqpMwlYk/img.png)
데이터베이스 이론 및 실습 정재윤 교수님 수업 (19-1) Requirements Analysis(중요한지는 모르겠지만 일단 적어는 둠) - User interviews, Forms, Reports, Queries, Use cases, Business rules - These requirements must be transformed into a data model. Entity Relationship(E-R) Data Model Entity Table attribute column identifier primary key relationship foreign key Entity class table design entity instances records * Entities of a given type..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/sAiRU/btqvCKgg8sa/CvmjeTy5RNs7UGFzQOSE9K/img.png)
경제성공학 김장호 교수님 수업 (19-1) Rate of Return - 이번 챕터는 2개 이상의 대안을 ROR comparison을 통해 선택하는 방법을 배운다. - ROR analysis evaluates the increments between two alternatives in pairwise comparisons 8.1 Why incremental Analysis is necessary - No incremental analysis is necessary when independent projects are evaluated because each project is evaluated separately (and more than one can be selected) 8.2 Calculation..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/blb7yu/btqvuX0IYgI/4MendTOVxCMDd8xj034oGK/img.png)
경제성공학 김장호 교수님 수업 (19-1) 7.1 interpretation of a Rate of Return Value Rate of Return (ROR) (1) - 경제적 가치를 평가할 때 보편적으로 쓰이는 척도 - 사용되는 곳 : 부동산 투자, 주식 투자 등 - PW, AW와는 다른 타입의 평가 척도이다. - ROR is also known as internal rate of return(IROR or IRR, 내부 수익률) or return on investment - ROR은 돈을 빌려줘서 발생하는 이자, 돈을 빌려서 발생하는 이자 모두를 포함한다. (= unpaid balance of borrowed money, unrecovered balance of an investment, so th..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/9QW7Q/btqvmss5Jan/TNAhjh67Ph5MqaY4HSnRs0/img.png)
내가 필요할 때마다 사용하려고 정리하는 글 matplotlib의 subplot을 사용하여 데이터 column별로 여러 그래프 한 번에 그리기 import matplotlib.pyplot as plt train=pd.read_csv('/Users/incastle/DataAnalysis/jupyter/kaggle/dont-overfit/train.csv') plt.figure(figsize=(26,24)) for i, col in enumerate(list(train.columns)[2:30]): plt.subplot(7,4,i+1) plt.hist(train[col]) plt.title(col) plt.figure(figsize=(26,24)) #그림 그릴 크기 정의해주고 for i, col in enum..