R 패키지 메타데이터와 수집 신호를 모아 봅니다.
첫 화면에서 판단해야 할 수집 신호를 먼저 배치합니다.
DESCRIPTION에서 감지한 backend 관련 package입니다.
기본 메타데이터를 작은 카드와 토큰으로 압축합니다.
| Package | Type | Spec |
|---|---|---|
| devtools CRAN · 1.0.3 · 2026-05-30 | Imports | devtools |
| ggplot2 CRAN · 1.0.3 · 2026-05-30 | Imports | ggplot2 |
| plyr CRAN · 1.0.3 · 2026-05-30 | Imports | plyr |
| roxygen2 CRAN · 1.0.3 · 2026-05-30 | Imports | roxygen2 |
| shiny CRAN · 1.0.3 · 2026-05-30 | Imports | shiny |
| shinycssloaders CRAN · 1.0.3 · 2026-05-30 | Imports | shinycssloaders |
| testthat CRAN · 1.0.3 · 2026-05-30 | Suggests | testthat |
| 검색 결과가 없습니다. | ||
| Package | Type | Spec |
|---|---|---|
| 표시할 dependency edge가 없습니다. | ||
| 검색 결과가 없습니다. | ||
Help for package populationPDXdesign const macros = { "\\R": "\\textsf{R}", "\\mbox": "\\text", "\\code": "\\texttt"}; function processMathHTML() { var l = document.getElementsByClassName('reqn'); for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); } return; } Package {populationPDXdesign} Contents callsInSingleExperiment getMode noFalseCalls noMissedCalls outcomeInSingleExperiment outcomeMultipleExperiments plotFalsepositive plotSensitivity populationPDXdesignApp server ui varyingPDXnPDXrBiolRR Type: Package Title: Designing Population PDX Studies Version: 1.0.3 Date: 2018-08-08 Description: Run simulations to assess the impact of various designs features and the underlying biological behaviour on the outcome of a Patient Derived Xenograft (PDX) population study. This project can either be deployed to a server as a 'shiny' app or installed locally as a package and run the app using the command 'populationPDXdesignApp()'. License: GPL (≥ 3) Depends: R (≥ 3.0.0) Imports: devtools, ggplot2, plyr, roxygen2, shiny, shinycssloaders Suggests: testthat RoxygenNote: 6.0.1 NeedsCompilation: no Packaged: 2018-08-08 12:19:41 UTC; kpkr710 Author: Maria Luisa Guerriero [aut, cre], Natasha Karp [aut] Maintainer: Maria Luisa Guerriero <maria.guerriero@astrazeneca.com> Repository: CRAN Date/Publication: 2018-08-08 14:40:07 UTC Simulation of a single population PDX experiment Description This is an internal function. Please use cautiously if calling directly. Samples some animals and classify as responders or non-responders based on number of models studied (PDXn), number of mice measured per model (PDXr), the classification accuracy (C_Acc) and the underlying biological response rate (Biol_RR). Example usage: callsInSingleExperiment(PDXn=8, PDXr=3, C_Acc=0.95, Biol_RR=30) Usage callsInSingleExperiment(PDXn, PDXr, C_Acc, Biol_RR) Arguments PDXn number of PDX models studied PDXr number of mice measured per PDX model C_Acc classification accuracy Biol_RR underlying biological response rate for this treatment Value dataframe with three columns: - PDXModel is a string that indicates the model id - PDXclassification is a numeric value that indicates the true biological classification of that PDX - 0 equal non-responder and 1 equal responder - StudyResult is a numeric value that indicates the classification of the PDX model after sampling - 0 equal non-responder and 1 equal responder Author(s) Maria Luisa Guerriero, maria.guerriero@astrazeneca.com Natasha A. Karp, natasha.karp@astrazeneca.com Function to return the mode of a vector of values Description This is an internal function. Please use cautiously if calling directly. Returns the mode from numeric vector. Example usage: getMode(c(0,1,1)) Usage getMode(v) Arguments v vector of numeric values Value a numeric value Author(s) Maria Luisa Guerriero, maria.guerriero@astrazeneca.com Natasha A. Karp, natasha.karp@astrazeneca.com Function to calculate the number of false calls for a design for a go-no go threshold Description This is an internal function. Please use cautiously if calling directly. Returns the number of false calls from a simulation study exploring the impact of varying PDXn and PDXr for an underlying Biol_RR for a particularly go-no go threshold. A false call can only arise in the situation where the underlying Biol_RR is below the go-no go threshold. Example usage: noFalseCalls(ImpactVarying_PDXn_PDXr_BRR, GoNoGoThreshold=30) Usage noFalseCalls(dataset, GoNoGoThreshold) Arguments dataset dataset obtained as output from the 'varying_PDXn_PDXr' function GoNoGoThreshold go-no go threshold Value vector with three elements: - numeric value indicating the number of experiments simulated - numeric value indicating the number of experiments which were above the go-no go threshold - numeric value indicating the FPR Author(s) Maria Luisa Guerriero, maria.guerriero@astrazeneca.com Natasha A. Karp, natasha.karp@astrazeneca.com Function to calculate the number of missed calls for a design for a go-no go threshold Description This is an internal function. Please use cautiously if calling directly. Returns the number of missed calls from a simulation study exploring the impact of varying PDXn and PDXr for an underlying Biol_RR for a particularly go-no go threshold. A missed call can only arise in the situation where the underlying Biol_RR exceeds the go-no go threshold. Example usage: noMissedCalls(ImpactVarying_PDXn_PDXr_BRR, GoNoGoThreshold=30) Usage noMissedCalls(dataset, GoNoGoThreshold) Arguments dataset dataset obtained as output from the 'varying_PDXn_PDXr' function GoNoGoThreshold go-no go threshold Value vector with three elements: - numeric value indicating the number of experiments simulated - numeric value indicating the number of experiments which were below the go-no go threshold - numeric value indicating the percent of missed calls Author(s) Maria Luisa Guerriero, maria.guerriero@astrazeneca.com Natasha A. Karp, natasha.karp@astrazeneca.com Function to summarise the results for a single simulation representing one experiment Description This is an internal function. Please use cautiously if calling directly. From a simulation of a single experiment, the estimated response rate is determined and captured with the meta data (e.g. PDXn, PDXr) for that experiment. Example usage: outcomeInSingleExperiment(df=outcomeInSingleExperiment_1, PDXn=8, PDXr=3, C_Acc=0.95, Biol_RR=30) Usage outcomeInSingleExperiment(df, PDXn, PDXr, C_Acc, Biol_RR) Arguments df data frame from callsInSingleExperiment PDXn PDXn PDXr PDXr C_Acc the classification accuracy (numeric value between 0 and 1) Biol_RR Biol_RR Value a vector with 8 values that captures the input design and the estimated response rate for that design from a single simulation Author(s) Maria Luisa Guerriero, maria.guerriero@astrazeneca.com Natasha A. Karp, natasha.karp@astrazeneca.com Function to run simulations to mimic population PDX studies for a defined scenario Description This is an internal function. Please use cautiously if calling directly. Simulations are used to mimic population PDX studies for specified values of PDXn, PDXr, Biol_RR and C_Acc. Example usage: outcomeMultipleExperiments(PDXn=8, PDXr=3, C_Acc=0.95, Biol_RR=30, iterations=500) Usage outcomeMultipleExperiments(PDXn, PDXr, C_Acc, Biol_RR, iterations) Arguments PDXn PDXn PDXr PDXr C_Acc the classification accuracy (numeric value between 0 and 1) Biol_RR Biol_RR iterations no of experiments to simulated Value a dataframe where each row represents the results from a simulation mimicking an individual experiment for a particular design with meta data returned to describe the experimental design Author(s) Maria Luisa Guerriero, maria.guerriero@astrazeneca.com Natasha A. Karp, natasha.karp@astrazeneca.com A function to visualise the false postive rate as a function of PDXn and PDXr Description This is an internal function. Please use cautiously if calling directly. A visualisation of the false positive rate behaviour from the simulations Usage plotFalsepositive(data) Arguments data data frame with four columns which indicate the PDXn, PDXr, Biol_RR and the FPR for a specified go-no go threshold Value a graphic visualisation Author(s) Maria Luisa Guerriero, maria.guerriero@astrazeneca.com Natasha A. Karp, natasha.karp@astrazeneca.com A function to visualise the sensitivity as a function of PDXn and PDXr Description This is an internal function. Please use cautiously if calling directly. A visualisation of the sensitivity from the simulations Usage plotSensitivity(data) Arguments data data frame with four columns which indicate the PDXn, PDXr, Biol_RR and the MissedCalls for a specified go-no go threshold Value a graphic visualisation Author(s) Maria Luisa Guerriero, maria.guerriero@astrazeneca.com Natasha A. Karp, natasha.karp@astrazeneca.com Function populationPDXdesignApp Description Runs the 'shiny' app. Usage populationPDXdesignApp() Author(s) Maria Luisa GueThis is an internal function. Please use cautiously if calling directly. Samples some animals and classify as responders or non-responders based on number of models studied (PDXn), number of mice measured per model (PDXr), the classification accuracy (C_Acc) and the underlying biological response rate (Biol_RR). Example usage: callsInSingleExperiment(PDXn=8, PDXr=3, C_Acc=0.95, Biol_RR=30)
callsInSingleExperiment(PDXn, PDXr, C_Acc, Biol_RR)This is an internal function. Please use cautiously if calling directly. Returns the mode from numeric vector. Example usage: getMode(c(0,1,1))
getMode(v)This is an internal function. Please use cautiously if calling directly. Returns the number of false calls from a simulation study exploring the impact of varying PDXn and PDXr for an underlying Biol_RR for a particularly go-no go threshold. A false call can only arise in the situation where the underlying Biol_RR is below the go-no go threshold. Example usage: noFalseCalls(ImpactVarying_PDXn_PDXr_BRR, GoNoGoThreshold=30)
noFalseCalls(dataset, GoNoGoThreshold)This is an internal function. Please use cautiously if calling directly. Returns the number of missed calls from a simulation study exploring the impact of varying PDXn and PDXr for an underlying Biol_RR for a particularly go-no go threshold. A missed call can only arise in the situation where the underlying Biol_RR exceeds the go-no go threshold. Example usage: noMissedCalls(ImpactVarying_PDXn_PDXr_BRR, GoNoGoThreshold=30)
noMissedCalls(dataset, GoNoGoThreshold)This is an internal function. Please use cautiously if calling directly. From a simulation of a single experiment, the estimated response rate is determined and captured with the meta data (e.g. PDXn, PDXr) for that experiment. Example usage: outcomeInSingleExperiment(df=outcomeInSingleExperiment_1, PDXn=8, PDXr=3, C_Acc=0.95, Biol_RR=30)
outcomeInSingleExperiment(df, PDXn, PDXr, C_Acc, Biol_RR)This is an internal function. Please use cautiously if calling directly. Simulations are used to mimic population PDX studies for specified values of PDXn, PDXr, Biol_RR and C_Acc. Example usage: outcomeMultipleExperiments(PDXn=8, PDXr=3, C_Acc=0.95, Biol_RR=30, iterations=500)
outcomeMultipleExperiments(PDXn, PDXr, C_Acc, Biol_RR, iterations)This is an internal function. Please use cautiously if calling directly. A visualisation of the false positive rate behaviour from the simulations
plotFalsepositive(data)This is an internal function. Please use cautiously if calling directly. A visualisation of the sensitivity from the simulations
plotSensitivity(data)Runs the 'shiny' app.
populationPDXdesignApp()if (interactive()) populationPDXdesignApp()This is an internal function. Please use cautiously if calling directly
server(input, output, session)This is an internal function. Please use cautiously if calling directly.
ui()This is an internal function. Please use cautiously if calling directly. Simulations are used to mimic population PDX studies by inputing a variety of experimental factors (PDXn and PDXr) and biological factors (Biol_RR and C_Acc). Example usage: varyingPDXnPDXrBiolRR(PDXn_range=c(8,10,12), PDXr_range=c(1,3,5), Biol_RR_range=c(30,40,50), C_Acc=0.95, iterations=500)
varyingPDXnPDXrBiolRR(PDXn_range, PDXr_range, Biol_RR_range, C_Acc, iterations)| Repository | Version | Published | First seen | Last seen | Docs |
|---|---|---|---|---|---|
| CRAN | 1.0.3 | 2026-05-29 | 2026-05-30 |
표시할 OSV 데이터가 없습니다.
표시할 OpenAlex 데이터가 없습니다.