-
Notifications
You must be signed in to change notification settings - Fork 0
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
몇가지 질문: IntAUC() 등 #4
Comments
iAUC는 interval AUC의 약자로 구간의 AUC를 구하는 것입니다. 예를 들면 0-24시간까지 자료가 있을 때, 0-12시간까지의 AUC를 구하고 싶을때 사용합니다. 오류 나는 코드를 올려주면 검토하겠습니다.
AUC뿐만 아니라 clearance, volume of distribution, MRT 등이 tblNCA 함수를 통해 계산됩니다. 이것들은 AUC가 계산되고 비교적 간단한 연산으로 구할 수 있는 것이라 따로 함수로 구현 안되있는 것입니다. AUC를 계산하는 함수가 비교적 복잡하고 스크립트 line 수가 길어져 독립된 함수로 구현되어 있습니다.
|
Indometh_nca <- tblNCA(Indometh, "Subject", "time", "conc",
dose=25, adm ="Bolus", dur=0.5,
concUnit="mg/L", R2ADJ=0.5)
tblNCA(Theoph, "Subject", "Time", "conc", dose=320, iAUC=AAuc) IntAUC(Theoph[Theoph$Subject==1,"Time"],
Theoph[Theoph$Subject==1, "conc"],
Dose=320, iAUC=AAuc) AAUC는 아래와 같이 정의 했습니다. AAuc <- data.frame(Name=c("Auc_0-12", "Auc_12-24"), Start = c(0, 0), End = c(12, 24)) 이렇게 3개의 코드에서 사용되지 않은 변수가 있다라는 오류가 떴습니다. |
코드 공유해주셔서 감사합니다. 일부 오자를 수정하였습니다. 1번 코드는 문제 없이 실행됩니다. # NonCompart version 0.4.5
tblNCA(concData, key = "Subject", colTime = "Time", colConc = "conc", dose = 0,
adm = "Extravascular", dur = 0, doseUnit = "mg", timeUnit = "h",
concUnit = "ug/L", down = "Linear", R2ADJ = 0.9, MW = 0) 3번 코드에서 역시 Dose, iAUC argument는 Res = sNCA(Theoph[Theoph$Subject==1,"Time"],
Theoph[Theoph$Subject==1, "conc"],
dose=320, concUnit="mg/L")
IntAUC(Theoph[Theoph$Subject==1, "Time"],
Theoph[Theoph$Subject==1, "conc"],
t1=0.5, t2=11, Res) NonCompart 0.4.6에서 tblNCA에 iAUC를 사용하게 되면서 사용자 편의성의 큰 개선이 있을 것 같습니다. 지금은 우선 기존의 코드 Examples를 참고해서 이해하는데 목적을 두시면 좋을 것 같습니다. |
1. 아래의 두 코드가 어떤의미인지 모르겠습니다.
특히 PPORRES가 무엇을 의미하는지 모르겠습니다. left_join(as_tibble(Theoph_nca) %>%
gather(PPTESTCD, PPORRES, -Subject),
tibble(PPTESTCD = attributes(Theoph_nca)$names,
UNIT = attributes(Theoph_nca)$units)) %>%
arrange(PPTESTCD)
특히 function(dataset)과 glue는 무엇이고 paste의 대상이 되는 문자열은 무엇인지 모르겠습니다. txtNCA2 <- function(dataset){
dataset %>%
as_tibble() %>%
group_by(Subject) %>%
summarise(res = c(ID = glue::glue('ID={unique(Subject)}\n\n'),
txtNCA(Time,
conc,
dose=320,
doseUnit="mg",
concUnit="mg/L",
timeUnit="h")) %>% paste(collapse = '\n')) %>%
.$res %>%
paste(collapse = '\n\n\n\n\n\n') 2. 이 링크의 8장을 보고 있는데 처음보는 명령어가 많아서 전반적으로 이해가 되지 않습니다.3. 샤이니엡을 통해서 시뮬레이션을 할수 있다고 나와있는데 이걸로 무엇을 하는지 모르겠습니다. |
1. 아래의 parameter가 무엇을 뜻하는지 모르겠습니다.
이거 이외에도 여러 약동학 parameter를 배웠는데 그것이 무엇을 뜻하는지는 알겠는데 어디에 사용할지 어떤의의를 가지는지를 모르겠습니다.2. tblNCA의 R2ADJ항의 의미를 모르겠습니다. |
용어에 대해 질문이 있어 글올립니다.
|
The text was updated successfully, but these errors were encountered: