Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
humanities
gargantext
Commits
862decec
Commit
862decec
authored
Oct 03, 2016
by
delanoe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[HELP] Adding help message if myGraph is empty.
parent
b3f4d04d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
151 additions
and
114 deletions
+151
-114
myGraphs.html
templates/pages/corpora/myGraphs.html
+151
-114
No files found.
templates/pages/corpora/myGraphs.html
View file @
862decec
...
@@ -19,6 +19,7 @@
...
@@ -19,6 +19,7 @@
<div
class=
"container theme-showcase"
role=
"main"
>
<div
class=
"container theme-showcase"
role=
"main"
>
<h2>
My Graphs
</h2>
<h2>
My Graphs
</h2>
<ol>
<ol>
{% if coocs %}
{% for cooc in coocs %}
{% for cooc in coocs %}
<div
id=
"graph_{{cooc.id}}"
>
<div
id=
"graph_{{cooc.id}}"
>
<div
class=
"row"
>
<div
class=
"row"
>
...
@@ -146,6 +147,42 @@
...
@@ -146,6 +147,42 @@
</div>
</div>
{% endfor %}
{% endfor %}
{% else %}
<h3>
<span class="glyphicon glyphicon-flag" aria-hidden="true"></span>
You have not computed any graph already</h3>
<h4>
<span class="glyphicon glyphicon-question-sign" aria-hidden="true"></span>
What is Graph ?
</h4>
<ul>
<li>Graph is a tool to explore and represent your corpus (which is a set of documents)</li>
<li>Nodes are multi-terms selected in your Map List</li>
<li>Edges between nodes represent its proximities in texts according to a specific distance.</li>
<ul>
<li>Conditional distance between the terms X and Y is the probability to have both terms X <b> and </b> Y in the same context of text.</li>
<li>Distributional distance between the terms X and Y is the probability to have same others terms in the same context as X <b>or</b> Y.</li>
</ul>
</ul>
<h4>
<span class="glyphicon glyphicon-hand-right" aria-hidden="true"></span>
How to compute a new graph ?
</h4>
<ol>
<li>Look at the menu</li>
<li>Click on Graphs</li>
<li>Choose a distance</li>
<li>Click on the distance or on MyGraph which is this page</li>
</ol>
<h4>
<span class="glyphicon glyphicon-ok-circle" aria-hidden="true"></span>
Do you want to test ?</h4>
</li>
<a href="/projects/{{project.id}}/corpora/{{ corpus.id }}/explorer?field1=ngrams&field2=ngrams&distance=conditional&bridgeness=5">Compute a new graph with conditional distance!</a>
{% endif %}
</ul>
</ul>
{% endblock %}
{% endblock %}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment