91 lines
3.0 KiB
Plaintext
91 lines
3.0 KiB
Plaintext
<%@ Page Title="" Language="C#" MasterPageFile="~/SiteContained.Master" AutoEventWireup="true" CodeBehind="DB_INPUT.aspx.cs" Inherits="WebLCP.DB_INPUT" %>
|
|
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
|
|
<div class="card">
|
|
<div class="card-header bg-warning text-light">
|
|
<h4>DB_INPUT.csv: file specification</h4>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="row">
|
|
<div class="col-md-8">
|
|
<table class="table table-sm table-striped">
|
|
<thead class="thead-dark">
|
|
<tr>
|
|
<th>Field Name</th>
|
|
<th>Data type</th>
|
|
<th>Data Example</th>
|
|
<th>Note</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><b>AGE</b></td>
|
|
<td>[INT]</td>
|
|
<td>1 .. 120</td>
|
|
<td>years</td>
|
|
</tr>
|
|
<tr>
|
|
<td><b>Gender</b></td>
|
|
<td>[INT]</td>
|
|
<td>0/1</td>
|
|
<td>0 = F, 1 = M</td>
|
|
</tr>
|
|
<tr>
|
|
<td><b>APOE</b></td>
|
|
<td>[ENUM]</td>
|
|
<td>pos / neg</td>
|
|
<td>positive / negative characterization</td>
|
|
</tr>
|
|
<tr>
|
|
<td><b>VARIABLE</b></td>
|
|
<td>[FLOAT]</td>
|
|
<td>...</td>
|
|
<td>clustering value to analyze</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<dl>
|
|
<dt>DB INPUT file spec</dt>
|
|
<dd>- data must be given in anonymous form</dd>
|
|
<dd>- file format: csv (excel: <b>save as</b> csv file)</dd>
|
|
<dd>- field separator: <b>;</b> (semicolon)</dd>
|
|
</dl>
|
|
<b>NB:</b> <u>output layout is optimized for variables within range [-100...100], if you have variable with a different range consider to rescale it.</u>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card-footer">
|
|
<div class="row">
|
|
<div class="col-8">
|
|
|
|
<i>Download reference Demo File:
|
|
<asp:HyperLink runat="server" ID="hlFile" NavigateUrl="~/demoFiles/DB_INPUT.csv" Target="_blank">DB_INPUT.csv</asp:HyperLink></i>
|
|
<div class="mt-2">
|
|
<i>example:</i>
|
|
<pre>
|
|
AGE_years;GENDER_0f_1m;APOE_category_pos_neg;VARIABLE2
|
|
72;0;pos;1,21875
|
|
72;0;neg;4,339901478
|
|
77;1;pos;1,186363636
|
|
74;0;pos;0,554098361
|
|
69;0;pos;0,835877863
|
|
77;0;neg;3,495176849
|
|
84;0;pos;4,65034965
|
|
71;1;pos;0,375328084
|
|
57;1;pos;2,218232044
|
|
68;0;pos;1,03465982
|
|
64;0;neg;3,208791209
|
|
67;0;neg;0,871118012
|
|
</pre>
|
|
</div>
|
|
</div>
|
|
<div class="col-4">
|
|
<img src="Images/DB_INPUT_demo.png" class="img-fluid" width="320px" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</asp:Content>
|