From 84f723de89af0cd36b58ad8bc77b4a8cbd50c05c Mon Sep 17 00:00:00 2001 From: Michael Kranz Date: Fri, 8 Sep 2023 17:34:04 -0500 Subject: [PATCH] minor doc --- docs/vlmd/extract/exceldata.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/vlmd/extract/exceldata.md b/docs/vlmd/extract/exceldata.md index a94e37f..7305ea1 100644 --- a/docs/vlmd/extract/exceldata.md +++ b/docs/vlmd/extract/exceldata.md @@ -43,7 +43,7 @@ This vlmd extraction tool provides the ability to extract vlmd from all of these from healdata_utils import convert_to_vlmd convert_to_vlmd( - filepath="myexcelfile.xlsx", + input_filepath="myexcelfile.xlsx", inputtype="excel-data", multiple_data_dicts=False ) @@ -59,9 +59,11 @@ This vlmd extraction tool provides the ability to extract vlmd from all of these from healdata_utils import convert_to_vlmd convert_to_vlmd( - filepath="myexcelfile.xlsx", + input_filepath="myexcelfile.xlsx", inputtype="excel-data", multiple_data_dicts=False, sheet_name=["mysheet1","mysheet2"] ) + ``` +