From 8b7edd4eaf0d196e674a085f744d1a69260a6c91 Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Thu, 16 Nov 2023 06:02:05 +0100 Subject: Update pkgdown docs to bootstrap 5 with search --- docs/reference/mkin_wide_to_long.html | 196 ++++++++++++++-------------------- 1 file changed, 80 insertions(+), 116 deletions(-) (limited to 'docs/reference/mkin_wide_to_long.html') diff --git a/docs/reference/mkin_wide_to_long.html b/docs/reference/mkin_wide_to_long.html index 8bf04bdf..3d8a2950 100644 --- a/docs/reference/mkin_wide_to_long.html +++ b/docs/reference/mkin_wide_to_long.html @@ -1,127 +1,95 @@ -Convert a dataframe with observations over time into long format — mkin_wide_to_long • mkinConvert a dataframe with observations over time into long format — mkin_wide_to_long • mkin + + Skip to contents -
-
-
- + + +
+
+
+
-
+

This function simply takes a dataframe with one independent variable and several dependent variable and converts it into the long form as required by mkinfit.

-
+
+

Usage

mkin_wide_to_long(wide_data, time = "t")
-
-

Arguments

+
+

Arguments

wide_data

The dataframe must contain one variable with the time values specified by the time argument and usually more than one @@ -132,19 +100,19 @@ column of observed values.

The name of the time variable.

-
-

Value

+
+

Value

Dataframe in long format as needed for mkinfit.

-
-

Author

+
+

Author

Johannes Ranke

-
-

Examples

+
+

Examples


 wide <- data.frame(t = c(1,2,3), x = c(1,4,7), y = c(3,4,5))
 mkin_wide_to_long(wide)
@@ -158,26 +126,22 @@ column of observed values.

-
- -
+
-
- -- cgit v1.2.1