-
Notifications
You must be signed in to change notification settings - Fork 0
⚡ Bolt: R 데이터프레임 서브셋팅 메모리 복사 오버헤드 제거 #248
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
9c4aa3f
⚡ Bolt: R 데이터프레임 서브셋팅 메모리 복사 오버헤드 제거
seonghobae 42e1eaa
⚡ Bolt: R 데이터프레임 서브셋팅 메모리 복사 오버헤드 제거 및 R CMD check 경고 해결
seonghobae 0ac2432
⚡ Bolt: R 데이터프레임 서브셋팅 메모리 복사 오버헤드 제거 및 CI 린트 에러 수정
seonghobae d441141
⚡ Bolt: R 데이터프레임 서브셋팅 오버헤드 최적화 및 CI 파이프라인 잔여 에러 수정
seonghobae File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| "MD013": false, | ||
| "MD022": false, | ||
| "MD041": false | ||
| } |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
Repository: ContextualWisdomLab/aFIPC
Length of output: 28611
🏁 Script executed:
Repository: ContextualWisdomLab/aFIPC
Length of output: 26650
🏁 Script executed:
Repository: ContextualWisdomLab/aFIPC
Length of output: 50381
🏁 Script executed:
Repository: ContextualWisdomLab/aFIPC
Length of output: 14916
공통 문항 pair를 제거하지 말고 사전에 실패 처리하세요.
surveyFA()는 상수 문항과 적합도 문제가 있는 문항을 제거할 수 있습니다. 따라서 입력된 공통 문항이 모델에 없을 수 있습니다.현재
intersect()와valid_idx는 누락된 pair를 자동으로 제거합니다. 그 결과 일부 anchor만 사용한 linking 결과가 반환될 수 있습니다.모든 pair가 누락되면
IPDItemCount가 0이 됩니다. 이때1:IPDItemCount는c(1, 0)을 생성하므로IPDData의 열 이름 할당이 실패합니다.모든 공통 문항 이름이 대응하는 모델과 입력 데이터에 존재하는지 먼저 검사하세요. 누락된 pair가 있으면 명확한
stop()으로 종료하세요. 누락을 허용하는 계약이라면 빈 IPD 집합과 linking 생략을 명시적으로 처리하고 경고를 반환하세요.🤖 Prompt for AI Agents