View source: R/page_fluid_5Pin.R
page_fluid_5Pin | R Documentation |
定义page_fluid_5个元素前2后3布局
page_fluid_5Pin(
HeadingName,
leftAreaList,
R1C1List,
R1C2List,
R2C1List,
R2C2List,
R2C3List
)
HeadingName |
标题 |
leftAreaList |
左区分内容 |
R1C1List |
第一行第一列取值内容 |
R1C2List |
第一行第二列取值内容 |
R2C1List |
第二行第一列取值内容 |
R2C2List |
第二行第二列取值内容 |
R2C3List |
第二行第三列取值内容 |
返回值
HeadingName <-"Old Faithful Geyser Data";
leftAreaList <- tagList( sliderInput("bins",
"Number of bins:",
min = 1,
max = 50,
value = 30),
fileInput('file1','文件'));
R1C1List <- tagList(fileInput('file1','文件R1C1'));
R2C1List <- tagList(fileInput('file2','文件R2C1'));
R1C2List <- tagList(fileInput('file3','文件R1C2'));
R2C2List <- tagList(fileInput('file4','文件R2C2'));
R2C3List <- tagList(fileInput('file5','文件R2C3'));
ui <- page_fluid_5Pin(HeadingName,leftAreaList,R1C1List,R1C2List,R2C1List,R2C2List,R2C3List);
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.