-
Notifications
You must be signed in to change notification settings - Fork 247
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
불필요한 조건 비교 및 두 번에 걸친 인덱싱을 제거하여 성능 향상 ASIS : df[df.index == ticker]['종목'].iloc[0] TOBE : df.loc[ticker, '종목'] 2) 인덱스 버그 수정 이전 commit (503dfa0)을 수정하는 과정에서 발생한 side effect를 수정함. stock.get_index_ticker_list()를 호출할 때마다 중복된 값이 추가 됨. 조건 비교가 잘못되어 데이터가 없다고 판단해서 조회할 때마다 데이터를 추가하는 문제를 해결
- Loading branch information
Showing
4 changed files
with
46 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
|
||
__version__ = '0.1.34' | ||
__version__ = '0.1.37' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters