Skip to content

Commit

Permalink
modified pom, added main class to prepare for book ouput
Browse files Browse the repository at this point in the history
  • Loading branch information
seinecle committed Mar 14, 2017
1 parent c7be2ab commit bd51515
Show file tree
Hide file tree
Showing 484 changed files with 22,954 additions and 265 deletions.
Binary file removed docs/asciidoctor-reveal.js-master.zip
Binary file not shown.
193 changes: 185 additions & 8 deletions docs/generated-html/working-with-text-en.html
Expand Up @@ -537,6 +537,13 @@ <h1>Working with text in Gephi</h1>
<li><a href="#_2_representing_only_the_most_frequent_terms">2. Representing only the most frequent terms</a></li>
</ul>
</li>
<li><a href="#_computing_connections_edges_in_the_network">Computing connections (edges) in the network</a>
<ul class="sectlevel3">
<li><a href="#_1_co_occurrences">1. Co-occurrences</a></li>
<li><a href="#_2_what_weight_for_the_edges">2. What "weight" for the edges?</a></li>
</ul>
</li>
<li><a href="#_visualizing_semantic_networks_with_gephi">Visualizing semantic networks with Gephi</a></li>
<li><a href="#__to_be_continued">(to be continued)</a></li>
<li><a href="#_more_tutorials_on_working_with_semantic_networks">More tutorials on working with semantic networks</a></li>
<li><a href="#_the_end">the end</a></li>
Expand All @@ -547,7 +554,7 @@ <h1>Working with text in Gephi</h1>
<div id="preamble">
<div class="sectionbody">
<div class="paragraph">
<p>last modified: 2017-03-07</p>
<p>last modified: 2017-03-08</p>
</div>
<div class="imageblock" style="text-align: center">
<div class="content">
Expand Down Expand Up @@ -602,7 +609,7 @@ <h2 id="_why_semantic_networks">Why semantic networks?</h2>
<p>A text, or many texts, can be hard to summarize.</p>
</div>
<div class="paragraph">
<p>Drawing a semantic network highlights what are the most frequent terms, how they relate to each other, and reveal the different groups or "clusters" of they form.</p>
<p>Drawing a semantic network highlights what are the most frequent terms, how they relate to each other, and reveal the different groups or "clusters" they form.</p>
</div>
<div class="paragraph">
<p>Often, a cluster of terms characterizes a topic.
Expand All @@ -617,7 +624,7 @@ <h2 id="_why_semantic_networks">Why semantic networks?</h2>
<p>nodes are words ("USA") or groups of words ("United States of America")</p>
</li>
<li>
<p>relations are, usually, signifying a co-occurrences: two words are connected if they co-occur.</p>
<p>relations are, usually, signifying co-occurrences: two words are connected if they appear in the same document, or in the same paragraph, or same sentence&#8230;&#8203; you decide.</p>
</li>
</ul>
</div>
Expand Down Expand Up @@ -699,7 +706,7 @@ <h4 id="_2_bis_considering_noun_phrases">2 bis. Considering "noun phrases"</h4>
</div>
<div class="literalblock">
<div class="content">
<pre>"delete all in the text except for all groups of words made of nouns and adjectives, ending by a noun"</pre>
<pre>"delete all in the text except for groups of words made of nouns and adjectives, ending by a noun"</pre>
</div>
</div>
<div class="paragraph">
Expand Down Expand Up @@ -845,6 +852,176 @@ <h4 id="_2_representing_only_the_most_frequent_terms">2. Representing only the m
<p>tf-idf can be left for specialists of the textual data under consideration, after they have been presented with the simple frequency count version.</p>
</div>
</div>
</div>
</div>
<div class="sect1">
<h2 id="_computing_connections_edges_in_the_network">Computing connections (edges) in the network</h2>
<div class="sectionbody">
<div class="paragraph">
<p>We now have extracted the most interesting / meaningful terms from the text.
How to decide which connections make sense between them?</p>
</div>
<div class="sect3">
<h4 id="_1_co_occurrences">1. Co-occurrences</h4>
<div class="paragraph">
<p>Connections between terms are usually drawn from co-occurrences: two terms will be connected if they appear next to each other in some pre-defined unit of text:</p>
</div>
<div class="ulist">
<ul>
<li>
<p>in the same sentence</p>
</li>
<li>
<p>in the same paragraph</p>
</li>
<li>
<p>in the same document (if the corpus is made of several documents)</p>
</li>
</ul>
</div>
<div class="paragraph">
<p>(note on vocabulary: in the following, we will call this a "unit of text").</p>
</div>
<div class="paragraph">
<p>For example, in bibliometrics (the study of the publications produced by scientists), this could give:</p>
</div>
<div class="ulist">
<ul>
<li>
<p>collect <strong>abstracts</strong> (short summaries) of all scientific articles discussing "nano-technologies".</p>
</li>
<li>
<p>so, abstracts are our units of text here.</p>
</li>
<li>
<p>two terms will be connected if they frequently appear <strong>in the same abstracts</strong>.</p>
</li>
</ul>
</div>
</div>
<div class="sect3">
<h4 id="_2_what_weight_for_the_edges">2. What "weight" for the edges?</h4>
<div class="paragraph">
<p>An edge between two terms will have:</p>
</div>
<div class="ulist">
<ul>
<li>
<p>weight of "1" if these two terms co-occur in just one unit of text.</p>
</li>
<li>
<p>weight of "2" if they co-occur in two units of text.</p>
</li>
<li>
<p>etc&#8230;&#8203;</p>
</li>
</ul>
</div>
<div class="paragraph">
<p>The logic is simple, and yet there are some refinements to discuss. It will be up to you to decide what&#8217;s preferable:</p>
</div>
<div class="sect4">
<h5 id="_if_2_terms_appear_several_times_strong_in_a_given_unit_of_text_strong_should_their_co_occurences_be_counted_several_times">If 2 terms appear several times <strong>in a given unit of text</strong>, should their co-occurences be counted several times?</h5>
<div class="paragraph">
<p>An example to clarify. Let&#8217;s imagine that we are interested in webpages discussing nanotechnology.
We want to draw the semantic network of the vocabulary used in these web pages.</p>
</div>
<div class="paragraph">
<p>A co-occurrence is: when 2 terms are used on the same web page.</p>
</div>
<div class="paragraph">
<p>Among the pages we collected, there is the Wikipedia page discussing nanotechnology:</p>
</div>
<div class="quoteblock">
<blockquote>
<div class="paragraph">
<p><span class="red">Nanotechnology</span> ("nanotech") is manipulation of matter on an atomic, <span class="blue">molecular</span>, and supramolecular scale.
The earliest, widespread description of <span class="red">nanotechnology</span> referred to the particular technological goal of precisely manipulating atoms and molecules for fabrication of macroscale products, also now referred to as <span class="blue">molecular</span> <span class="red">nanotechnology</span></p>
</div>
</blockquote>
<div class="attribution">
&#8212; <a href="https://en.wikipedia.org/wiki/Nanotechnology">Wikipedia</a>
</div>
</div>
<div class="paragraph">
<p>The question is:</p>
</div>
<div class="ulist">
<ul>
<li>
<p>should I count only <strong>one</strong> co-occurrence between <code>molecular</code> and <code>nanotechnology</code>, because it happened on this one web page?</p>
</li>
<li>
<p>or should I consider that <code>molecular</code> appears twice on this page, and <code>nanotechnology</code> three times, so <strong>multiple</strong> co-occurrences between these 2 terms should be counted, just on this page already?</p>
</li>
</ul>
</div>
<div class="paragraph">
<p>There is no exact response, and you can experiment with both possibilities.</p>
</div>
</div>
<div class="sect4">
<h5 id="_if_two_terms_are_very_frequent_is_their_co_occurrence_really_of_interest">If two terms are very frequent, is their co-occurrence really of interest?</h5>
<div class="paragraph">
<p>Example:</p>
</div>
<div class="paragraph">
<p>Chun-Yuen Teng, Yu-Ru Lin and Lada Adamic have studied (using Gephi!) <a href="https://arxiv.org/abs/1111.3919">the pairing of ingredients in cooking recipes</a>.</p>
</div>
<div class="paragraph">
<p>So, in their study the unit of text was the "recipe", and the terms in the semantic network where ingredients in all these recipes.</p>
</div>
<div class="paragraph">
<p>Just because they are so common, some ingredients (like <code>flour</code>, <code>sugar</code>, <code>salt</code>) are bound to appear more frequently in the same recipes (to co-occur), than infrequent ingredients.</p>
</div>
<div class="paragraph">
<p>The authors of this study chose to highlight <strong>complementary ingredients</strong>: some ingredients appear often used together in the same recipes, <em>even if they are ingredients which are quite rarely used</em>.</p>
</div>
<div class="paragraph">
<p>"Complementary" here means that these ingredients have some interesting relationship: when one is used, the other "must" be used as well.</p>
</div>
<div class="paragraph">
<p>If we just count co-occurrences, this special relationship between infrequent complementary ingredients will be lost: by definition, 2 infrequent ingredients can&#8217;t co-occurr often.</p>
</div>
<div class="paragraph">
<p>To fix this, a solution consists in comparing how many times the 2 ingredients co-occur, with how frequent they are in all recipes:</p>
</div>
<div class="paragraph">
<p>&#8594; ingredients co-occurring <em>each and every time they are used</em> will have a large edge weight,</p>
</div>
<div class="paragraph">
<p>&#8594; ingredients co-occuring many times, <em>but also appearing many times in different recipes</em>, will get a low edge weight.</p>
</div>
<div class="paragraph">
<p>A simple formula does this operation. For ingredients A and B:</p>
</div>
<div class="literalblock">
<div class="content">
<pre>weight of edge between A and B =
nb of recipes where A &amp; B co-occur
divided by
(total nb of recipes where A appear x total nb of recipes where B appear)</pre>
</div>
</div>
<div class="paragraph">
<p>Logs are often added to this formula, which is called "Pointwise mutual information":</p>
</div>
<div class="stemblock">
<div class="content">
\$PMI = log((p(A, B)) /(p(A) p(B)))\$
</div>
</div>
<div class="paragraph">
<p>We now have nodes and their relations: a semantic network. Let&#8217;s see now how to visualize it in Gephi.</p>
</div>
</div>
</div>
</div>
</div>
<div class="sect1">
<h2 id="_visualizing_semantic_networks_with_gephi">Visualizing semantic networks with Gephi</h2>
<div class="sectionbody">

</div>
</div>
<div class="sect1">
Expand All @@ -869,9 +1046,9 @@ <h2 id="_the_end">the end</h2>
<p>or visit <a href="https://seinecle.github.io/gephi-tutorials/">the website for more tutorials</a>
<!-- Start of StatCounter Code for Default Guide -->
<script type="text/javascript">
var sc_project = ;
var sc_project = 11238920;
var sc_invisible = 1;
var sc_security = "";
var sc_security = "8dac6cd5";
var scJsHost = (("https:" == document.location.protocol) ?
"https://secure." : "http://www.");
document.write("<sc" + "ript type='text/javascript' src='" +
Expand All @@ -881,7 +1058,7 @@ <h2 id="_the_end">the end</h2>
<noscript><div class="statcounter"><a title="site stats"
href="http://statcounter.com/" target="_blank"><img
class="statcounter"
src="//c.statcounter.com//0//1/" alt="site
src="//c.statcounter.com/11238920/0/8dac6cd5/1/" alt="site
stats"></a></div></noscript>
<!-- End of StatCounter Code for Default Guide --></p>
</div>
Expand All @@ -891,7 +1068,7 @@ <h2 id="_the_end">the end</h2>
<div id="footer">
<div id="footer-text">
Version 1.0<br>
Last updated 2017-03-07 22:26:29 CET
Last updated 2017-03-08 12:14:26 CET
</div>
</div>
</body>
Expand Down
Binary file added docs/generated-pdf/images/.png
Binary file not shown.
Binary file added docs/generated-pdf/images/3-groups-of-icons.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/generated-pdf/images/An-Excel-file.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/generated-pdf/images/Choose-a-username.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/generated-pdf/images/Create-a-new-app.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/generated-pdf/images/Edges-attributes..png
Binary file added docs/generated-pdf/images/Export-button.png
Binary file added docs/generated-pdf/images/Fill-in-the-fields.png
Binary file added docs/generated-pdf/images/Launching-Gephi.png
Binary file added docs/generated-pdf/images/Merge-columns.png
Binary file added docs/generated-pdf/images/Nodes-attributes..png
Binary file added docs/generated-pdf/images/Open-a-new-project.png
Binary file added docs/generated-pdf/images/Opening-files.png
Binary file added docs/generated-pdf/images/Result-of-preview.png
Binary file added docs/generated-pdf/images/Result.png
Binary file added docs/generated-pdf/images/Second-screen.png
Binary file added docs/generated-pdf/images/Select-a-file.png
Empty file.
1 change: 1 addition & 0 deletions docs/generated-pdf/images/changing-edge-thickness.gdraw
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=13Sdd6ss52TgXoG1i4CkaGw3aHap-WWDvpJjosQJSyls", "doc_id": "13Sdd6ss52TgXoG1i4CkaGw3aHap-WWDvpJjosQJSyls", "email": "clementlevallois@gmail.com", "resource_id": "document:13Sdd6ss52TgXoG1i4CkaGw3aHap-WWDvpJjosQJSyls"}
Binary file added docs/generated-pdf/images/client-to-product.png
Binary file added docs/generated-pdf/images/commas-shown-in-red.png
Binary file added docs/generated-pdf/images/downloads.png
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1VdIaYCfuMAF5Tk3EaCak-Z0M9GsIuPpjxc6RWi0FELs", "doc_id": "1VdIaYCfuMAF5Tk3EaCak-Z0M9GsIuPpjxc6RWi0FELs", "email": "clementlevallois@gmail.com", "resource_id": "document:1VdIaYCfuMAF5Tk3EaCak-Z0M9GsIuPpjxc6RWi0FELs"}
1 change: 1 addition & 0 deletions docs/generated-pdf/images/en/changing-size-labels-en.gdraw
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=13dOYkyzY4dKMIDrSj59NFF5GftZD55eRC26HZ8jn2RM", "doc_id": "13dOYkyzY4dKMIDrSj59NFF5GftZD55eRC26HZ8jn2RM", "email": "clementlevallois@gmail.com", "resource_id": "document:13dOYkyzY4dKMIDrSj59NFF5GftZD55eRC26HZ8jn2RM"}
1 change: 1 addition & 0 deletions docs/generated-pdf/images/en/closing-project-1-en.gdraw
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1gsYnedl6MU3k-tPd3uCCFso7i8f7B5rd0BjqTNE2FxM", "doc_id": "1gsYnedl6MU3k-tPd3uCCFso7i8f7B5rd0BjqTNE2FxM", "email": "clementlevallois@gmail.com", "resource_id": "document:1gsYnedl6MU3k-tPd3uCCFso7i8f7B5rd0BjqTNE2FxM"}
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1T66-VP25_nvxCvmnpQWUraCYT3Vxi0oW3f-TBZDtYPM", "doc_id": "1T66-VP25_nvxCvmnpQWUraCYT3Vxi0oW3f-TBZDtYPM", "email": "clementlevallois@gmail.com", "resource_id": "document:1T66-VP25_nvxCvmnpQWUraCYT3Vxi0oW3f-TBZDtYPM"}
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1OmI-MugkNhDR67BR0ns5injN1FoVhm1IjXXzI5Qv4NQ", "doc_id": "1OmI-MugkNhDR67BR0ns5injN1FoVhm1IjXXzI5Qv4NQ", "email": "clementlevallois@gmail.com", "resource_id": "document:1OmI-MugkNhDR67BR0ns5injN1FoVhm1IjXXzI5Qv4NQ"}
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1_eS17piFaVKG4cXL1TAxIh4sSL5ubg7_-6AziUrjJl8", "doc_id": "1_eS17piFaVKG4cXL1TAxIh4sSL5ubg7_-6AziUrjJl8", "email": "clementlevallois@gmail.com", "resource_id": "document:1_eS17piFaVKG4cXL1TAxIh4sSL5ubg7_-6AziUrjJl8"}
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1hO9PddUbSc_XUyZFmaX1Zs6-AoX-yE9npZZjWdEo8KU", "doc_id": "1hO9PddUbSc_XUyZFmaX1Zs6-AoX-yE9npZZjWdEo8KU", "email": "clementlevallois@gmail.com", "resource_id": "document:1hO9PddUbSc_XUyZFmaX1Zs6-AoX-yE9npZZjWdEo8KU"}
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1fAwFegXKYpBjfcNYmlrTsoadheVfPEqAg8kEeoEl1Ag", "doc_id": "1fAwFegXKYpBjfcNYmlrTsoadheVfPEqAg8kEeoEl1Ag", "email": "clementlevallois@gmail.com", "resource_id": "document:1fAwFegXKYpBjfcNYmlrTsoadheVfPEqAg8kEeoEl1Ag"}
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1tRw85HuODUSCD7e48UX_F7fUB5XWGJ7hVzNFnr6oWQI", "doc_id": "1tRw85HuODUSCD7e48UX_F7fUB5XWGJ7hVzNFnr6oWQI", "email": "clementlevallois@gmail.com", "resource_id": "document:1tRw85HuODUSCD7e48UX_F7fUB5XWGJ7hVzNFnr6oWQI"}
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1dcZH0jq2W2CzEIv8-XYkM3JjPab2LCbAmYhFU4tXXso", "doc_id": "1dcZH0jq2W2CzEIv8-XYkM3JjPab2LCbAmYhFU4tXXso", "email": "clementlevallois@gmail.com", "resource_id": "document:1dcZH0jq2W2CzEIv8-XYkM3JjPab2LCbAmYhFU4tXXso"}
1 change: 1 addition & 0 deletions docs/generated-pdf/images/en/copying-a-column-1-en.gdraw
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1PqI92gclyP8LK1uRnRA4hBGkD4LjVbctQDUTZN1Km-Y", "doc_id": "1PqI92gclyP8LK1uRnRA4hBGkD4LjVbctQDUTZN1Km-Y", "email": "clementlevallois@gmail.com", "resource_id": "document:1PqI92gclyP8LK1uRnRA4hBGkD4LjVbctQDUTZN1Km-Y"}
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1ie34cQmvFxF49FwMveN9tVS2hpNWY7BFiPE8-F4ew1Y", "doc_id": "1ie34cQmvFxF49FwMveN9tVS2hpNWY7BFiPE8-F4ew1Y", "email": "clementlevallois@gmail.com", "resource_id": "document:1ie34cQmvFxF49FwMveN9tVS2hpNWY7BFiPE8-F4ew1Y"}
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1jf_Ag1W8R5XlHNh66F487rubMnptYrWPbePwxQMTi6M", "doc_id": "1jf_Ag1W8R5XlHNh66F487rubMnptYrWPbePwxQMTi6M", "email": "clementlevallois@gmail.com", "resource_id": "document:1jf_Ag1W8R5XlHNh66F487rubMnptYrWPbePwxQMTi6M"}
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1N-OLemFd8GqRZShOjw8kNul2Ehm93WjAZbn-JzpnClI", "doc_id": "1N-OLemFd8GqRZShOjw8kNul2Ehm93WjAZbn-JzpnClI", "email": "clementlevallois@gmail.com", "resource_id": "document:1N-OLemFd8GqRZShOjw8kNul2Ehm93WjAZbn-JzpnClI"}
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1v9Fvs2WX4AcCU84KgLQhRo_2Vb2-WGjBtepzeoBmEEU", "doc_id": "1v9Fvs2WX4AcCU84KgLQhRo_2Vb2-WGjBtepzeoBmEEU", "email": "clementlevallois@gmail.com", "resource_id": "document:1v9Fvs2WX4AcCU84KgLQhRo_2Vb2-WGjBtepzeoBmEEU"}
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1cNeKaFRZ1FG0S405rAkKILYYRdou3er3iFh8ea-sNhk", "doc_id": "1cNeKaFRZ1FG0S405rAkKILYYRdou3er3iFh8ea-sNhk", "email": "clementlevallois@gmail.com", "resource_id": "document:1cNeKaFRZ1FG0S405rAkKILYYRdou3er3iFh8ea-sNhk"}
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1anoYqTntqA4ZYuS035GQQEDwPwbIr_kk1oQ6wRVfkPM", "doc_id": "1anoYqTntqA4ZYuS035GQQEDwPwbIr_kk1oQ6wRVfkPM", "email": "clementlevallois@gmail.com", "resource_id": "document:1anoYqTntqA4ZYuS035GQQEDwPwbIr_kk1oQ6wRVfkPM"}
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1wIubWP6KX6oaz3pd7SQYziWR_2hK2KIhH0gAFwn3rEk", "doc_id": "1wIubWP6KX6oaz3pd7SQYziWR_2hK2KIhH0gAFwn3rEk", "email": "clementlevallois@gmail.com", "resource_id": "document:1wIubWP6KX6oaz3pd7SQYziWR_2hK2KIhH0gAFwn3rEk"}
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1XYIZ2iQPOPjhshbh2CGjMv03teW0QCVfdoqy0urn1wI", "doc_id": "1XYIZ2iQPOPjhshbh2CGjMv03teW0QCVfdoqy0urn1wI", "email": "clementlevallois@gmail.com", "resource_id": "document:1XYIZ2iQPOPjhshbh2CGjMv03teW0QCVfdoqy0urn1wI"}
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1sdB37hWIug2nzacQxsxqVOmzK_bVF7zpn_2rkgmEWSU", "doc_id": "1sdB37hWIug2nzacQxsxqVOmzK_bVF7zpn_2rkgmEWSU", "email": "clementlevallois@gmail.com", "resource_id": "document:1sdB37hWIug2nzacQxsxqVOmzK_bVF7zpn_2rkgmEWSU"}
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1VS_oa0Fp9d-hygBJESrshVGfd5H9eSx1C50eZNSIUu0", "doc_id": "1VS_oa0Fp9d-hygBJESrshVGfd5H9eSx1C50eZNSIUu0", "email": "clementlevallois@gmail.com", "resource_id": "document:1VS_oa0Fp9d-hygBJESrshVGfd5H9eSx1C50eZNSIUu0"}
Binary file added docs/generated-pdf/images/en/enable-timeline.png
1 change: 1 addition & 0 deletions docs/generated-pdf/images/en/export-network-1-en.gdraw
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1axrrRQBjPeKSOG9zNJiFfd8QAHqBAn_d69F-e03IWtE", "doc_id": "1axrrRQBjPeKSOG9zNJiFfd8QAHqBAn_d69F-e03IWtE", "email": "clementlevallois@gmail.com", "resource_id": "document:1axrrRQBjPeKSOG9zNJiFfd8QAHqBAn_d69F-e03IWtE"}
1 change: 1 addition & 0 deletions docs/generated-pdf/images/en/export-network-2-en.gdraw
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=14FSiuyWLwg0ouzkaG5RLISKzxbuXa2jXboYMXKA2J0Q", "doc_id": "14FSiuyWLwg0ouzkaG5RLISKzxbuXa2jXboYMXKA2J0Q", "email": "clementlevallois@gmail.com", "resource_id": "document:14FSiuyWLwg0ouzkaG5RLISKzxbuXa2jXboYMXKA2J0Q"}
1 change: 1 addition & 0 deletions docs/generated-pdf/images/en/file-open-1-en.gdraw
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1_H-RdI_5MkjCPGberW1RYqdmTfWr0iuRmo_3gpj4kts", "doc_id": "1_H-RdI_5MkjCPGberW1RYqdmTfWr0iuRmo_3gpj4kts", "email": "clementlevallois@gmail.com", "resource_id": "document:1_H-RdI_5MkjCPGberW1RYqdmTfWr0iuRmo_3gpj4kts"}
Binary file added docs/generated-pdf/images/en/file-open-1-en.png
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1U6pEoPl9C-6MbMm9lFT78ycxS_wLvUh3ljfouOyL6-0", "doc_id": "1U6pEoPl9C-6MbMm9lFT78ycxS_wLvUh3ljfouOyL6-0", "email": "clementlevallois@gmail.com", "resource_id": "document:1U6pEoPl9C-6MbMm9lFT78ycxS_wLvUh3ljfouOyL6-0"}
Binary file added docs/generated-pdf/images/en/filter-name-1-en.png
Binary file added docs/generated-pdf/images/en/filter-name-2-en.png
Binary file added docs/generated-pdf/images/en/filter-name-3-en.png
1 change: 1 addition & 0 deletions docs/generated-pdf/images/en/filter-overview-1-en.gdraw
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1kezPM-W2pJZ5qNcKLArR7f5D_X4N9zYI5CNXdSYNJbc", "doc_id": "1kezPM-W2pJZ5qNcKLArR7f5D_X4N9zYI5CNXdSYNJbc", "email": "clementlevallois@gmail.com", "resource_id": "document:1kezPM-W2pJZ5qNcKLArR7f5D_X4N9zYI5CNXdSYNJbc"}
1 change: 1 addition & 0 deletions docs/generated-pdf/images/en/filter-panel-1-en.gdraw
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1oQwwfsHMICMU9h5w7jaxVCiYLpSeOzjzngx_o-3xMRc", "doc_id": "1oQwwfsHMICMU9h5w7jaxVCiYLpSeOzjzngx_o-3xMRc", "email": "clementlevallois@gmail.com", "resource_id": "document:1oQwwfsHMICMU9h5w7jaxVCiYLpSeOzjzngx_o-3xMRc"}
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1E_NUkH7kQNH4zg5UBpQPkpW9cRX0Ffewdsxw_UW2QNI", "doc_id": "1E_NUkH7kQNH4zg5UBpQPkpW9cRX0Ffewdsxw_UW2QNI", "email": "clementlevallois@gmail.com", "resource_id": "document:1E_NUkH7kQNH4zg5UBpQPkpW9cRX0Ffewdsxw_UW2QNI"}
1 change: 1 addition & 0 deletions docs/generated-pdf/images/en/filter-reset-1-en.gdraw
@@ -0,0 +1 @@
{"url": "https://docs.google.com/open?id=1sk0rpNA_ma5PEJofhIKjIUObCSZ8o1ZPVv7zAfUX0xA", "doc_id": "1sk0rpNA_ma5PEJofhIKjIUObCSZ8o1ZPVv7zAfUX0xA", "email": "clementlevallois@gmail.com", "resource_id": "document:1sk0rpNA_ma5PEJofhIKjIUObCSZ8o1ZPVv7zAfUX0xA"}

0 comments on commit bd51515

Please sign in to comment.