-
Notifications
You must be signed in to change notification settings - Fork 9
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
최명기 연구 과제 #3
Comments
|
선생님이 이제 R이 익숙해졌으므로 본격적으로 약리학에 응용할 수 있을 것입니다. 아래 자료를 참고해서 비구획분석을 R로 수행해보세요.
의문사항이 생기면 2-3개 모아서 아래에 댓글로 남겨주세요. |
|
asancpt/book-ncar#4 에 답변 확인하십시오. |
선생님 언제까지 나오시게 되는 건가요? 논문을 한편 드릴테니 읽고 마지막 날에 발표하는 시간을 가졌으면 합니다. 또한 임상시험 자료를 전자화해서 자료 분석하는 업무를 했으면 좋겠습니다. |
네네 논문이랑 임상시험 자료 주시면 한번 해보겠습니다. 배울수 있는게 남아있다면 2월까지 나올 생각입니다, |
과제 관련된 질문은 이곳에 해 주시고, 작업한 R 파일을 저장해서 아래 위치에 올려주세요. https://github.com/pipetcpt/interns/tree/master/2020-homework |
1. 주어진 자료에 성별항목이 없어 T-test를 할수가 없습니다.2. 주어진 자료에서 gene가 의미하는 것을 모르겠습니다.3. 아래의 두 코드가 오류가 납니다.PK_data <- read_excel("Drug_X_PK.xlsx")
plotPK(PK_data, "ID", "TIME", "DV", unitConc = "ug/L", unitTime = "h") PK_data <- read_excel("Drug_X_PK.xlsx")
NCA <- tblNCA(PK_data, "ID", "TIME", "DV", doseUnit = "mg", timeUnit = "h", concUnit = "ug/L") |
|
|
특정 ID 자료를 뺴는 법PK_data %>%
filter(ID != 번호) # 번호는 숫자이거나 문자일 수 있음. 문자일 경우 "" 사용 |
plotPK(PK_data %>% filter(ID == 1), "ID", "TIME", "DV", unitConc = "ug/L", unitTime = "h")
PK<- PK_data %>% filter(ID == 1)
plotPK(PK, "ID", "TIME", "DV", unitConc = "ug/L", unitTime = "h") |
네 선생님, 이와 관련된 질문은 이 곳에 달아주세요. plotPK는 오류가 나니 사용하지 마시고 진행해주세요. ggplot2로 진행해보세요. |
|
|
|
PK <- read_excel("CPT2019-02-CRF-data.xlsx", sheet = 11)
tblNCA(PK, "등록번호", "시험시간", "virtual_conc", doseUnit = "mg", timeUnit = "h", concUnit = "ug/L", R2ADJ = 0.01)
Error in UseMethod("filter_") :
클래스 "NULL"의 객체에 적용된 'filter_'에 사용할수 있는 메소드가 없습니다 |
|
PK_day2 <- read_excel("CPT2019-02-CRF-data.xlsx", sheet = 11) %>% as.data.frame() %>% filter(방문 == "Day 2") %>% sub('H', '', 시험시간)
|
일단 한글로 된 column name은 R에서 처리가 쉽지 않습니다. Excel에서 영어로 바꾸고 해보세요. |
@mante111 선생님
참고링크
The text was updated successfully, but these errors were encountered: