ushr (version 0.1.0)

actg315raw: Data from ACTG315 trial of HIV viral load in adults undergoing ART

Description

Data from the ACTG315 clinical trial of HIV-infected adults undergoing ART. Data are included for 46 individuals, with HIV viral load measurements observed on specific days up to 28 weeks after treatment initiation, and converted to log10 RNA copies/ml. The RNA assay detection threshold was 100 copies/ml. Additional columns include patient identifiers and CD4 T cell counts.

Usage

data(actg315raw)

Arguments

Format

A data frame with 361 rows and 5 columns:

Obs.No

Row number

Patid

Numerical patient identifier

Day

Time of each observation, in days since treatment initiation

log10.RNA.

HIV viral load measurements, in log10 RNA copies/ml

CD4

CD4 T cell counts, in cells/mm^3

References

Lederman et al (1998) JID 178(1), 70<U+2013>79; Connick et al (2000) JID 181(1), 358<U+2013>363; Wu and Ding (1999) Biometrics 55(2), 410<U+2013>418.

Examples

Run this code
# NOT RUN {
library(dplyr)
data(actg315raw)

actg315 <- actg315raw %>%
    mutate(vl = 10^log10.RNA.) %>%
    select(id = Patid, time = Day, vl)

print(head(actg315))

# }
# NOT RUN {
plot_data(actg315, detection_threshold = 100)
# }

Run the code above in your browser using DataCamp Workspace