Learn R Programming

flowchart (version 0.3.0)

clinic_visit: Simulated clinical trial information by visit Simulated dataset of a clinical trial comparing some biomarker values between two randomized groups (control/treatment). This dataset contains the information by visit. It is equivalent to the dataset clinic_patient, which has the same information by patient.

Description

Simulated clinical trial information by visit Simulated dataset of a clinical trial comparing some biomarker values between two randomized groups (control/treatment). This dataset contains the information by visit. It is equivalent to the dataset clinic_patient, which has the same information by patient.

Usage

data(clinic_visit)

Arguments

Format

A data frame with 411 rows and 8 columns

id:

Identifier of each patient.

age:

Age values.

consent:

The patient has signed the informed consent?

group:

Randomized group: control/treatment.

visit:

Number of the corresponding follow-up visit.

marker:

Marker value in the visit.

Examples

Run this code
clinic_visit |>
  dplyr::filter(!is.na(group)) |>
  as_fc(label = "Number of visits") |>
  fc_split(group) |>
  fc_draw()

Run the code above in your browser using DataLab