-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtutorials.json
2522 lines (2521 loc) · 123 KB
/
tutorials.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name":{
"fr":"Principes du Datalab",
"it":"Principi del Datalab",
"en":"Principles of the Datalab"
},
"abstract":{
"fr":"Présentation des grands principes du Datalab",
"it":"Presentazione dei grandi principi del Datalab",
"en":"Introducing the main principles of the Datalab"
},
"authors":[
"Inseefrlab"
],
"types":[
"Tutoriel"
],
"tags":[
"discover",
"learn"
],
"category":"discover the datalab",
"imageUrl":"onyxiaImgUrl",
"articleUrl":{
"fr":"https://inseefrlab.github.io/docs.sspcloud.fr/docs/fr/principles.html",
"it":"https://inseefrlab.github.io/docs.sspcloud.fr/docs/en/principles.html",
"en":"https://inseefrlab.github.io/docs.sspcloud.fr/docs/en/principles.html"
}
},
{
"name":{
"fr":"Premiers pas avec le Datalab",
"it":"Primi passi con il Datalab",
"en":"Getting started with the Datalab"
},
"abstract":{
"fr":"Visite guidée du Datalab",
"it":"Visita guidata del Datalab",
"en":"A guided tour of the Datalab"
},
"authors":[
"Inseefrlab"
],
"types":[
"Tutoriel"
],
"tags":[
"discover",
"learn"
],
"category":"discover the datalab",
"imageUrl":"onyxiaImgUrl",
"articleUrl":{
"fr":"https://inseefrlab.github.io/docs.sspcloud.fr/docs/fr/discover.html",
"it":"https://inseefrlab.github.io/docs.sspcloud.fr/docs/en/discover.html",
"en":"https://inseefrlab.github.io/docs.sspcloud.fr/docs/en/discover.html"
}
},
{
"name":{
"fr":"Contrôle de version",
"it":"Controllo di versione",
"en":"Version control"
},
"abstract":{
"fr":"Versionner son code avec Git sur le Datalab",
"it":"Versionare il tuo codice con il Datalab",
"en":"Version your code with Git on the Datalab"
},
"authors":[
"Inseefrlab"
],
"types":[
"Tutoriel"
],
"tags":[
"discover",
"learn"
],
"category":"discover the datalab",
"imageUrl":"onyxiaImgUrl",
"articleUrl":{
"fr":"https://inseefrlab.github.io/docs.sspcloud.fr/docs/fr/version-control.html",
"it":"https://inseefrlab.github.io/docs.sspcloud.fr/docs/en/version-control.html",
"en":"https://inseefrlab.github.io/docs.sspcloud.fr/docs/en/version-control.html"
}
},
{
"name":{
"fr":"Stockage de données",
"it":"Archivazione dei dati",
"en":"Data storage"
},
"abstract":{
"fr":"Stocker des données sur MinIO et les utiliser dans des services sur le Datalab",
"it":"Archiviare dati su MinIO e utilizzarli nei servizi del Datalab",
"en":"Store data on MinIO and use it in services on the Datalab"
},
"authors":[
"Inseefrlab"
],
"types":[
"Tutoriel"
],
"tags":[
"discover",
"learn"
],
"category":"discover the datalab",
"imageUrl":"onyxiaImgUrl",
"articleUrl":{
"fr":"https://inseefrlab.github.io/docs.sspcloud.fr/docs/fr/storage.html",
"it":"https://inseefrlab.github.io/docs.sspcloud.fr/docs/en/storage.html",
"en":"https://inseefrlab.github.io/docs.sspcloud.fr/docs/en/storage.html"
}
},
{
"name":{
"fr":"Gestion des secrets",
"it":"Gestione dei segreti",
"en":"Managing secrets"
},
"abstract":{
"fr":"Utiliser des secrets comme variables d’environnement dans les services du Datalab",
"it":"Utilizzare segreti come variabili d'ambiente nei servizi del Datalab",
"en":"Use secrets as environment variables in services on the Datalab"
},
"authors":[
"Inseefrlab"
],
"types":[
"Tutoriel"
],
"tags":[
"discover",
"learn"
],
"category":"discover the datalab",
"imageUrl":"onyxiaImgUrl",
"articleUrl":{
"fr":"https://inseefrlab.github.io/docs.sspcloud.fr/docs/fr/secrets.html",
"it":"https://inseefrlab.github.io/docs.sspcloud.fr/docs/en/secrets.html",
"en":"https://inseefrlab.github.io/docs.sspcloud.fr/docs/en/secrets.html"
}
},
{
"name":{
"fr":"Configuration des services (WIP)",
"it":"Configurazione dei servizi (WIP)",
"en":"Services configuration (WIP)"
},
"abstract":{
"fr":"Documentation des différents paramètres de configuration d'un service",
"it":"Documentazione dei vari parametri di configurazione di un servizio",
"en":"Documentation of service configuration parameters"
},
"authors":[
"Inseefrlab"
],
"types":[
"Tutoriel"
],
"tags":[
"discover",
"learn"
],
"category":"discover the datalab",
"imageUrl":"onyxiaImgUrl",
"articleUrl":{
"fr":"https://inseefrlab.github.io/docs.sspcloud.fr/docs/fr/configure.html",
"it":"https://inseefrlab.github.io/docs.sspcloud.fr/docs/en/configure.html",
"en":"https://inseefrlab.github.io/docs.sspcloud.fr/docs/en/configure.html"
}
},
{
"name":{
"fr":"FuncampR - Grimoire (FR)",
"it":"FuncampR - Spellbook (EN - WIP)",
"en":"FuncampR - Spellbook (EN - WIP)"
},
"abstract":{
"fr":"Une aventure d'apprentissage vidéoludique pour le langage statistique R, à partager au sein du SSP (et du royaume de Statis). Pour en savoir plus, consulter le site https://funcamp.sspcloud.fr/",
"it":"Un'avventura di apprendimento videoludico per il linguaggio statistico R, da condividere all'interno del SSP (e del regno di Statis). Per saperne di più, visita il sito https://funcamp.sspcloud.fr/",
"en":"A serious game to learn statistical language R, dedicated to beginners - and gamers :-p. For more information, see https://funcamp.sspcloud.fr/"
},
"imageUrl":"gameControllerImgUrl",
"parts":[
{
"name":"icaRius",
"abstract":{
"fr":"La partie vidéoludique du FuncampR. Un jeu de rôle inspiré d'un célèbre jeu vidéo des années 1990...",
"it":"La parte videoludica di FuncampR. Un gioco di ruolo ispirato a un famoso videogioco degli anni '90...",
"en":"The video game part of FuncampR. A RPG inspired by a famous video game from the 1990s ..."
},
"authors":[
"A. Degorre",
{
"fr":"communauté Solarus",
"it":"Comunità Solarus",
"en":"Solarus Community"
}
],
"contributors":[
{
"fr":"Communauté FuncampR",
"it":"Comunità FuncampR",
"en":"FuncampR Community"
},
{
"fr":"communauté Solarus",
"it":"Comunità Solarus",
"en":"Solarus Community"
}
],
"types":[
{
"fr":"Jeu vidéo",
"it":"Videogioco",
"en":"Video Game"
}
],
"tags":[
"discover",
"learn"
],
"category":"training courses with R",
"imageUrl":"gameControllerImgUrl",
"deploymentUrl":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/icarius?autoLaunch=true"
},
{
"name":{
"fr":"Grimoire IgoR - Chapitre 1",
"en":"IgoR Spellbook - Chapter 1",
"it":"Grimorio IgoR - Capitolo 1"
},
"abstract":{
"fr":"Partie pédagogique du FuncampR. Chapitre 1 : la maison d’icaRius. Découverture du grimoire IgoR et de la langue des Runes",
"en":"Educational part of FuncampR. Chapter 1: icaRius' home. Discovery of the IgoR Spellbook and the Runes' language",
"it":"Parte educativa di FuncampR. Capitolo 1: la casa di IcaRius. Scoperta del grimorio IgoR e della lingua delle Rune"
},
"authors":[
{
"fr":"Communauté FuncampR",
"it":"Comunità FunCampR",
"en":"FuncampR Community"
}
],
"types":[
{
"fr":"Tutoriel R",
"it":"Tutorial R",
"en":"R Tutorial"
}
],
"tags":[
"discover"
],
"category":"training courses with R",
"deploymentUrl":{
"fr":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapitre1»&onyxia.friendlyName=«Grimoire-Chap1»",
"en":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter1»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=Spellbook-Chap1»",
"it":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter1»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=Spellbook-Chap1»"
}
},
{
"name":{
"fr":"Grimoire IgoR - Chapitre 2",
"en":"IgoR Spellbook - Chapter 2",
"it":"Grimorio IgoR - Capitolo 2"
},
"abstract":{
"fr":"Partie pédagogique du FuncampR. Chapitre 2 : la poule pondeuse. Dans le village de Kokoro, icaRius aide la fermière à recomposer le livre des pontes...",
"it":"Parte educativa di FuncampR. Capitolo 2: la gallina delle uova d'oro. Nel villaggio di Kokoro, IcaRius aiuta la contadina a ricomporre il libro delle uova...",
"en":"FuncampR educational part. Chapter 2: the laying hen. In the village of Kokoro, icaRius helps the farmer to recompose the egg-laying book..."
},
"authors":[
{
"fr":"Communauté FuncampR",
"it":"Comunità FunCampR",
"en":"FuncampR Community"
}
],
"types":[
{
"fr":"Tutoriel R",
"it":"Tutorial R",
"en":"R Tutorial"
}
],
"tags":[
"learn"
],
"category":"training courses with R",
"deploymentUrl":{
"fr":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapitre2»&onyxia.friendlyName=«Grimoire-Chap2»",
"en":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter2»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap2»",
"it":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter2»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap2»"
}
},
{
"name":{
"fr":"Grimoire IgoR - Chapitre 3",
"en":"IgoR Spellbook - Chapter 3",
"it":"Grimorio IgoR - Capitolo 3"
},
"abstract":{
"fr":"Partie pédagogique du FuncampR. Chapitre 3 : le village de GrissGrass. Le chef du village demande à icaRius de trouver quelle est l’exploitation la plus productive en herbe de Mandragore.",
"en":"FuncampR educational part. Chapter 3: the village of GrissGrass. The village chief asks icaRius to find the most productive Mandrake farm.",
"it":"Parte educativa di FuncampR. Capitolo 3: il villaggio di GrissGrass. Il capo del villaggio chiede a IcaRius di scoprire quale sia l'azienda più produttiva nell'erba di Mandragora."
},
"authors":[
{
"fr":"Communauté FuncampR",
"it":"Comunità FunCampR",
"en":"FuncampR Community"
}
],
"types":[
{
"fr":"Tutoriel R",
"it":"Tutorial R",
"en":"R Tutorial"
}
],
"tags":[
"learn"
],
"category":"training courses with R",
"deploymentUrl":{
"fr":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapitre3»&onyxia.friendlyName=«Grimoire-Chap3»",
"en":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter3»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap3»",
"it":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter3»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap3»"
}
},
{
"name":{
"fr":"Grimoire IgoR - Chapitre 4",
"en":"IgoR Spellbook - Chapter 4",
"it":"Grimorio IgoR - Capitolo 4"
},
"abstract":{
"fr":"Partie pédagogique du FuncampR. Chapitre 4 : le secret de la culture de Mandragore. IcaRius doit retrouver la recette de la culture de la Mandragore.",
"en":"FuncampR educational part. Chapter 4: The Secret of Mandrake Culture. IcaRius must find the recipe for the culture of the Mandrake.",
"it":"Parte educativa di FuncampR. Capitolo 4: il segreto della coltivazione della Mandragora. IcaRius deve trovare la ricetta per la coltivazione della Mandragora."
},
"authors":[
{
"fr":"Communauté FuncampR",
"it":"Comunità FunCampR",
"en":"FuncampR Community"
}
],
"types":[
{
"fr":"Tutoriel R",
"it":"Tutorial R",
"en":"R Tutorial"
}
],
"tags":[
"learn"
],
"category":"training courses with R",
"deploymentUrl":{
"fr":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapitre4»&onyxia.friendlyName=«Grimoire-Chap4»",
"en":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter4»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap4»",
"it":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter4»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap4»"
}
},
{
"name":{
"fr":"Grimoire IgoR - Chapitre 5",
"en":"IgoR Spellbook - Chapter 5",
"it":"Grimorio IgoR - Capitolo 5"
},
"abstract":{
"fr":"Partie pédagogique du FuncampR. Chapitre 5 : le cuistot Batreb. Pour libérer Essespéus dans le château de Statis, icaRius doit d’abord obtenir la confiance du cuistot Batreb.",
"en":"FuncampR educational part. Chapter 5: the cook Batreb. To free Essespeus in Statis Castle, icaRius must first gain the trust of cook Batreb.",
"it":"Parte educativa di FuncampR. Capitolo 5: lo chef Batreb. Per liberare Essespéus nel castello di Statis, IcaRius deve prima guadagnare la fiducia dello chef Batreb."
},
"authors":[
{
"fr":"Communauté FuncampR",
"it":"Comunità FunCampR",
"en":"FuncampR Community"
}
],
"types":[
{
"fr":"Tutoriel R",
"it":"Tutorial R",
"en":"R Tutorial"
}
],
"tags":[
"learn"
],
"category":"training courses with R",
"deploymentUrl":{
"fr":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapitre5»&onyxia.friendlyName=«Grimoire-Chap5»",
"en":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter5»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap5»",
"it":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter5»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap5»"
}
},
{
"name":{
"fr":"Grimoire IgoR - Chapitre 6",
"en":"IgoR Spellbook - Chapter 6",
"it":"Grimorio IgoR - Capitolo 6"
},
"abstract":{
"fr":"Partie pédagogique du FuncampR. Chapitre 6 : la fake news. Essespéus et icaRius vont créer une Fake News pour tromper les armées de SaSSoS.",
"en":"FuncampR educational part. Chapter 6: fake news. Essespéus and icaRius create a Fake News to deceive the armies of SaSSoS.",
"it":"Parte educativa di FuncampR. Capitolo 6: la fake news. Essespéus e IcaRius creeranno una fake news per ingannare le armate di SaSSoS."
},
"authors":[
{
"fr":"Communauté FuncampR",
"it":"Comunità FunCampR",
"en":"FuncampR Community"
}
],
"types":[
{
"fr":"Tutoriel R",
"it":"Tutorial R",
"en":"R Tutorial"
}
],
"tags":[
"learn"
],
"category":"training courses with R",
"deploymentUrl":{
"fr":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapitre6»&onyxia.friendlyName=«Grimoire-Chap6»",
"en":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter6»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap6»",
"it":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter6»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap6»"
}
},
{
"name":{
"fr":"Grimoire IgoR - Chapitre 7",
"en":"IgoR Spellbook - Chapter 7",
"it":"Grimorio IgoR - Capitolo 7"
},
"abstract":{
"fr":"Partie pédagogique du FuncampR. Chapitre 7 (optionnel): le labyrinthe. Le Mage Delagarde propose à icaRius un défi pour obtenir les bonnes directions dans le labyrinthe.",
"en":"FuncampR educational part. Chapter 7 (optional): the labyrinth. Mage Delagarde offers icaRius a challenge to get the right directions in the labyrinth.",
"it":"Parte educativa di FuncampR. Capitolo 7 (opzionale): il labirinto. Il Mago Delagarde propone a IcaRius una sfida per ottenere le giuste direzioni nel labirinto"
},
"authors":[
{
"fr":"Communauté FuncampR",
"it":"Comunità FunCampR",
"en":"FuncampR Community"
}
],
"types":[
{
"fr":"Tutoriel R",
"it":"Tutorial R",
"en":"R Tutorial"
}
],
"tags":[
"learn"
],
"category":"training courses with R",
"deploymentUrl":{
"fr":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapitre7»&onyxia.friendlyName=«Grimoire-Chap7»",
"en":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter7»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap7»",
"it":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter7»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap7»"
}
},
{
"name":{
"fr":"Grimoire IgoR - Chapitre 8",
"en":"IgoR Spellbook - Chapter 8",
"it":"Grimorio IgoR - Capitolo 8"
},
"abstract":{
"fr":"Partie pédagogique du FuncampR. Chapitre 8: la plume d’IgoR. Pour soulever la pierre qui bloque le passage, icaRius doit apprendre de nouveaux sortilèges.",
"en":"FuncampR educational part. Chapter 8: IgoR's Feather. To lift the stone blocking the passage, icaRius must learn new spells.",
"it":"Parte educativa di FuncampR. Capitolo 8: la piuma di IgoR. Per sollevare la pietra che blocca il passaggio, IcaRius deve imparare nuovi incantesimi."
},
"authors":[
{
"fr":"Communauté FuncampR",
"it":"Comunità FunCampR",
"en":"FuncampR Community"
}
],
"types":[
{
"fr":"Tutoriel R",
"it":"Tutorial R",
"en":"R Tutorial"
}
],
"tags":[
"learn"
],
"category":"training courses with R",
"deploymentUrl":{
"fr":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapitre8»&onyxia.friendlyName=«Grimoire-Chap8»",
"en":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter8»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap8»",
"it":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter8»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap8»"
}
},
{
"name":{
"fr":"Grimoire IgoR - Chapitre 9",
"en":"IgoR Spellbook - Chapter 9",
"it":"Grimorio IgoR - Capitolo 9"
},
"abstract":{
"fr":"Partie pédagogique du FuncampR. Chapitre 9: le village de Sandia. Mam’Grouxi narre les innombrables naissances qu’elle a vu au fil des ans (des siècles?).",
"en":"FuncampR educational part. Chapter 9: the village of Sandia. Mam’Grouxi recounts the countless births she has seen over the years.",
"it":"Parte educativa di FuncampR. Capitolo 9: il villaggio di Sandia. Mam'Grouxi racconta le innumerevoli nascite che ha visto nel corso degli anni (secoli?)."
},
"authors":[
{
"fr":"Communauté FuncampR",
"it":"Comunità FunCampR",
"en":"FuncampR Community"
}
],
"types":[
{
"fr":"Tutoriel R",
"it":"Tutorial R",
"en":"R Tutorial"
}
],
"tags":[
"learn"
],
"category":"training courses with R",
"deploymentUrl":{
"fr":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapitre9»&onyxia.friendlyName=«Grimoire-Chap9»",
"en":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter9»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap9»",
"it":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter9»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap9»"
}
},
{
"name":{
"fr":"Grimoire IgoR - Chapitre 10",
"en":"IgoR Spellbook - Chapter 10",
"it":"Grimorio IgoR - Capitolo 10"
},
"abstract":{
"fr":"Partie pédagogique du FuncampR. Chapitre 10: La porte de sortie - Save Me. Dans ses pérégrinations, icaRius se trouve pris au piège dans une salle de l'impossible",
"en":"FuncampR educational part. Chapter 10: Exit Door - Save Me. In his wanderings, icaRius finds himself trapped in an Impossible Room.",
"it":"Parte educativa di FuncampR. Capitolo 10: La porta d'uscita - Salvami. Nelle sue avventure, IcaRius si trova intrappolato in una stanza dell'impossibile"
},
"authors":[
{
"fr":"Communauté FuncampR",
"it":"Comunità FunCampR",
"en":"FuncampR Community"
}
],
"types":[
{
"fr":"Tutoriel R",
"it":"Tutorial R",
"en":"R Tutorial"
}
],
"tags":[
"learn"
],
"category":"training courses with R",
"deploymentUrl":{
"fr":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapitre10»&onyxia.friendlyName=«Grimoire-Chap10»",
"en":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter10»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap10»",
"it":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter10»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap10»"
}
},
{
"name":{
"fr":"Grimoire IgoR - Chapitre 11",
"en":"IgoR Spellbook - Chapter 11",
"it":"Grimorio IgoR - Capitolo 11"
},
"abstract":{
"fr":"Partie pédagogique du FuncampR. Chapitre 11: Codez-le une fois. L'automate TeoC enseigne à icaRius la Voie du Reproductible",
"en":"FuncampR educational part. Chapter 11: Code It Once. The TeoC automaton teaches icaRius the Way of the Reproducible.",
"it":"Parte educativa di FuncampR. Capitolo 11: Codificalo una volta. L'automate TeoC insegna a IcaRius la Via del Riproducibile."
},
"authors":[
{
"fr":"Communauté FuncampR",
"it":"Comunità FunCampR",
"en":"FuncampR Community"
}
],
"types":[
{
"fr":"Tutoriel R",
"it":"Tutorial R",
"en":"R Tutorial"
}
],
"tags":[
"learn"
],
"category":"training courses with R",
"deploymentUrl":{
"fr":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapitre11»&onyxia.friendlyName=«Grimoire-Chap11»",
"en":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter11»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap11»",
"it":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter11»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap11»"
}
},
{
"name":{
"fr":"Grimoire IgoR - Chapitre 12",
"en":"IgoR Spellbook - Chapter 12",
"it":"Grimorio IgoR - Capitolo 12"
},
"abstract":{
"fr":"Partie pédagogique du FuncampR. Chapitre 12: De l’oxygène documentaire. Rencontre d'un drôle d’oiseau, FebeleR, féru de littérature statisienne et de grimoires...",
"en":"FuncampR educational part. Chapter 12: Breathe and document. Meeting with a strange bird, FebeleR, fond of Statisian literature and grimoires ...",
"it":"Parte educativa di FuncampR. Capitolo 12: Di ossigeno documentario. Incontro con un uccello strano, FebeleR, appassionato di letteratura statistica e grimori..."
},
"authors":[
{
"fr":"Communauté FuncampR",
"it":"Comunità FunCampR",
"en":"FuncampR Community"
}
],
"types":[
{
"fr":"Tutoriel R",
"it":"Tutorial R",
"en":"R Tutorial"
}
],
"tags":[
"learn"
],
"category":"training courses with R",
"deploymentUrl":{
"fr":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapitre12»&onyxia.friendlyName=«Grimoire-Chap12»",
"en":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter12»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap12»",
"it":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter12»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap12»"
}
},
{
"name":{
"fr":"Grimoire IgoR - Chapitre 13",
"en":"IgoR Spellbook - Chapter 13",
"it":"Grimorio IgoR - Capitolo 13"
},
"abstract":{
"fr":"Partie pédagogique du FuncampR. Chapitre 13: l'histoire sans fin. La gueRnouille Asa apprend à icaRius à écrire lui-même la fin de l'histoire",
"en":"FuncampR educational part. Chapter 13: The NeveRending Story. Asa fRog teaches icaRius to write himself the end of the story",
"it":"Parte educativa di FuncampR. Capitolo 13: la storia senza fine. La rana Asa insegna a IcaRius a scrivere da solo la fine della storia."
},
"authors":[
{
"fr":"Communauté FuncampR",
"it":"Comunità FunCampR",
"en":"FuncampR Community"
}
],
"types":[
{
"fr":"Tutoriel R",
"it":"Tutorial R",
"en":"R Tutorial"
}
],
"tags":[
"learn"
],
"category":"training courses with R",
"deploymentUrl":{
"fr":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapitre13»&onyxia.friendlyName=«Grimoire-Chap13»",
"en":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter13»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap13»",
"it":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/grimoire?autoLaunch=true&grimoire.chapitre=«chapter13»&grimoire.quete=«Spellbook_IGoR»&onyxia.friendlyName=«Spellbook-Chap13»"
}
},
{
"name":{
"fr":"Grimoire - Neverending",
"en":"Spellbook - Neverending",
"it":"Grimorio - Neverending"
},
"abstract":{
"fr":"Partie pédagogique du FuncampR. Le parchemin pour écrire soi-même le chapitre 13 et la fin de l'histoire d'icaRius.",
"en":"FuncampR educational part. The scroll on which icaRius writes chapter 13 and the end of the story.",
"it":"Parte educativa di FuncampR. Il pergamino per scrivere da soli il capitolo 13 e la fine della storia di IcaRius."
},
"authors":[
{
"fr":"Communauté FuncampR",
"it":"Comunità FunCampR",
"en":"FuncampR Community"
}
],
"types":[
{
"fr":"Tutoriel Rstudio",
"en":"Rstudio Tutorial",
"it":"Tutorial RStudio"
}
],
"tags":[
"discover",
"learn"
],
"category":"training courses with R",
"imageUrl":"neverendingImgUrl",
"deploymentUrl":"https://datalab.digitaltwinocean.edito.eu/launcher/inseefrlab-helm-charts-trainings/neverending?autoLaunch=true&onyxia.friendlyName=«neveRending»"
}
]
},
{
"name":"Parcours R",
"abstract":"Parcours de formation à R du pôle ministériel MTES-MCTRCT",
"imageUrl":"rSvgUrl",
"parts":[
{
"name":"1. Découvrir R et RStudio",
"abstract":"Découvrir le fonctionnement de R, Aborder la dimension modulaire du logiciel, S’approprier l’interface graphique du logiciel, Être en capacité d’importer dans R un fichier CSV et de réaliser des calculs statistiques simples (somme, moyenne, table des fréquences)",
"authors":[
"Thierry Zorn",
"Murielle Lethrosne",
"Vivien Roussez",
"Pascal Irz"
],
"types":[
"Tutoriel R"
],
"tags":[
"discover"
],
"category":"training courses with R",
"imageUrl":"grenouilleImgUrl",
"deploymentUrl":"https://datalab.digitaltwinocean.edito.eu/launcher/ide/rstudio?autoLaunch=true&onyxia.friendlyName=%C2%ABParcoursR_M1%C2%BB&service.image.custom.enabled=true&service.image.custom.version=%C2%ABghcr.io%2Fmtes-mct%2Fparcours_r_socle_introduction-4.2.1%C2%BB&security.allowlist.enabled=false&init.personalInit=%C2%ABhttps%3A%2F%2Fraw.githubusercontent.com%2FMTES-MCT%2Fparcours-r%2Fmaster%2Finit_scripts%2Fformation%2Finit_script_formation.sh%C2%BB",
"articleUrl":"https://mtes-mct.github.io/parcours_r_socle_introduction/"
},
{
"name":"2. Préparer ses données avec R et le Tidyverse",
"abstract":"Être en capacité d’explorer les données, de les comprendre, de les structurer, de les croiser et les enrichir avec des données externes pour les préparer à des traitements statistiques. La préparation des données est une étape fondamentale pour faciliter la réalisation des analyses statistiques",
"authors":[
"Maël Theulière",
"Bruno Terseur"
],
"types":[
"Tutoriel R"
],
"tags":[
"learn"
],
"category":"training courses with R",
"imageUrl":"coverImgUrl",
"deploymentUrl":"https://datalab.digitaltwinocean.edito.eu/launcher/ide/rstudio?autoLaunch=true&onyxia.friendlyName=%C2%ABParcoursR_M2%C2%BB&service.image.custom.enabled=true&service.image.custom.version=%C2%ABghcr.io%2Fmtes-mct%2Fparcours_r_socle_preparation_des_donnees-4.2.1%C2%BB&security.allowlist.enabled=false&init.personalInit=%C2%ABhttps%3A%2F%2Fraw.githubusercontent.com%2FMTES-MCT%2Fparcours-r%2Fmaster%2Finit_scripts%2Fformation%2Finit_script_formation.sh%C2%BB",
"articleUrl":"https://mtes-mct.github.io/parcours_r_socle_preparation_des_donnees/"
},
{
"name":"3. Statistiques descriptives avec R",
"abstract":"Rappels théoriques sur les méthodes usuelles de statistiques uni- et bi-variées, mise en œuvre avec R, interprétation",
"authors":[
"Solène Colin",
"Vivien Roussez",
"Pascal Irz"
],
"types":[
"Tutoriel R"
],
"tags":[
"learn"
],
"category":"training courses with R",
"imageUrl":"pollinisateurImgUrl",
"deploymentUrl":"https://datalab.digitaltwinocean.edito.eu/launcher/ide/rstudio?autoLaunch=true&onyxia.friendlyName=%C2%ABParcoursR_M3%C2%BB&service.image.custom.enabled=true&service.image.custom.version=%C2%ABghcr.io%2Fmtes-mct%2Fparcours_r_module_statistiques_descriptives-4.2.1%C2%BB&security.allowlist.enabled=false&init.personalInit=%C2%ABhttps%3A%2F%2Fraw.githubusercontent.com%2FMTES-MCT%2Fparcours-r%2Fmaster%2Finit_scripts%2Fformation%2Finit_script_formation.sh%C2%BB",
"articleUrl":"https://mtes-mct.github.io/parcours_r_module_statistiques_descriptives/"
},
{
"name":"4. Analyse des données multi-dimensionnelles avec R",
"abstract":"Méthodologie pour évaluer, en fonction des caractéristiques des données, la pertinence des méthodes usuelles d'analyse multidimensionnelle (ACP, AFC, ACM, CAH). Mise en œuvre avec le package factoMiner. Sorties graphiques avec le package factoextra. Interprétation",
"authors":[
"Vivien Roussez",
"Pascal Irz"
],
"types":[
"Tutoriel R"
],
"tags":[
"consolidate"
],
"category":"training courses with R",
"imageUrl":"crabeImgUrl",
"deploymentUrl":"https://datalab.digitaltwinocean.edito.eu/launcher/ide/rstudio?autoLaunch=true&onyxia.friendlyName=%C2%ABParcoursR_M4%C2%BB&service.image.custom.enabled=true&service.image.custom.version=%C2%ABghcr.io%2Fmtes-mct%2Fparcours_r_module_analyse_multi_dimensionnelles-4.2.1%C2%BB&security.allowlist.enabled=false&init.personalInit=%C2%ABhttps%3A%2F%2Fraw.githubusercontent.com%2FMTES-MCT%2Fparcours-r%2Fmaster%2Finit_scripts%2Fformation%2Finit_script_formation.sh%C2%BB",
"articleUrl":"https://mtes-mct.github.io/parcours_r_module_analyse_multi_dimensionnelles/"
},
{
"name":"5. Valoriser ses données avec R",
"abstract":"Utiliser les outils R pour produire des graphiques avec le package ggplot2. Produire des cartes en utilisant ggplot2 et sf. Produire des tableaux interactifs. Rendre interactifs des graphiques et des cartes",
"authors":[
"Murielle Lethrosne",
"Maël Theulière"
],
"types":[
"Tutoriel R"
],
"tags":[
"consolidate"
],
"category":"training courses with R",
"imageUrl":"renardImgUrl",
"deploymentUrl":"https://datalab.digitaltwinocean.edito.eu/launcher/ide/rstudio?autoLaunch=true&onyxia.friendlyName=%C2%ABParcoursR_M5%C2%BB&service.image.custom.enabled=true&service.image.custom.version=%C2%ABghcr.io%2Fmtes-mct%2Fparcours_r_module_datavisualisation-4.2.1%C2%BB&security.allowlist.enabled=false&init.personalInit=%C2%ABhttps%3A%2F%2Fraw.githubusercontent.com%2FMTES-MCT%2Fparcours-r%2Fmaster%2Finit_scripts%2Fformation%2Finit_script_formation.sh%C2%BB",
"articleUrl":"https://mtes-mct.github.io/parcours_r_module_datavisualisation/"
},
{
"name":"7. Analyse spatiale",
"abstract":"Introduction aux données spatiales, lire et écrire des données spatiales, manipuler des donnés spatiales, créer des cartes.",
"authors":[
"Murielle Lethrosne",
"Maël Theulière"
],
"types":[
"Tutoriel R"
],
"tags":[
"consolidate"
],
"category":"training courses with R",
"imageUrl":"odonateImgUrl",
"deploymentUrl":"https://datalab.digitaltwinocean.edito.eu/launcher/ide/rstudio?autoLaunch=true&onyxia.friendlyName=%C2%ABParcoursR_M7%C2%BB&service.image.custom.enabled=true&service.image.custom.version=%C2%ABghcr.io%2Fmtes-mct%2Fparcours_r_module_analyse_spatiale-4.2.1%C2%BB&security.allowlist.enabled=false&init.personalInit=%C2%ABhttps%3A%2F%2Fraw.githubusercontent.com%2FMTES-MCT%2Fparcours-r%2Fmaster%2Finit_scripts%2Fformation%2Finit_script_formation.sh%C2%BB",
"articleUrl":"https://mtes-mct.github.io/parcours_r_module_analyse_spatiale/"
}
]
},
{
"name":"Initiation à Python",
"abstract":"Cours introductif à Python : fondamentaux du langage et premières manipulations de données",
"authors":[
"inseefrlab"
],
"contributors":[
"Romain Avouac"
],
"types":[
"Notebook Python"
],
"tags":[
"discover",
"learn"
],
"category":"training courses with python",
"imageUrl":"https://raw.githubusercontent.com/InseeFrLab/www.sspcloud.fr/main/src/assets/img/python.jpg",
"parts":[
{
"name":"Introduction",
"abstract":"Introduction de l'auto-formation \"Initiation à Python\" du SSP Cloud",
"authors":[
"inseefrlab"
],
"contributors":[
"Romain Avouac"
],
"types":[
"Notebook Python"
],
"tags":[
"discover",
"learn"
],
"category":"training courses with python",
"imageUrl":"https://raw.githubusercontent.com/InseeFrLab/www.sspcloud.fr/main/src/assets/img/python.jpg",
"parts":[
]
},
{
"name":"Fondamentaux du langage",
"abstract":"Présentation de la syntaxe et des objets de base en Python",
"authors":[
"inseefrlab"
],
"contributors":[
"Romain Avouac"
],
"types":[
"Notebook Python"
],
"tags":[
"discover",
"learn"
],
"category":"training courses with python",
"imageUrl":"https://raw.githubusercontent.com/InseeFrLab/www.sspcloud.fr/main/src/assets/img/python.jpg",
"parts":[
{
"name":"Types de base et variables",
"abstract":"Découverte des types de base (nombres et chaînes de caractères) et des variables.",
"authors":[
"inseefrlab"
],
"contributors":[
"Romain Avouac"
],
"types":[
"Notebook Python"
],
"tags":[
"discover",
"learn"
],
"category":"training courses with python",
"imageUrl":"https://raw.githubusercontent.com/InseeFrLab/www.sspcloud.fr/main/src/assets/img/python.jpg",
"deploymentUrl":"https://datalab.digitaltwinocean.edito.eu/launcher/ide/jupyter-python?autoLaunch=true&onyxia.friendlyName=%C2%ABpython-initiation%C2%BB&init.personalInit=%C2%ABhttps://raw.githubusercontent.com/InseeFrLab/formation-python-initiation/main/utils/init_jupyter.sh%C2%BB&init.personalInitArgs=%C2%ABfundamentals%20types-variables%C2%BB&security.allowlist.enabled=false"
},
{
"name":"Structures de données 1 : listes et tuples",
"abstract":"Découverte des structures de données séquentielles : listes et tuples.",
"authors":[
"inseefrlab"
],
"contributors":[
"Romain Avouac"
],
"types":[
"Notebook Python"
],
"tags":[
"discover",
"learn"
],
"category":"training courses with python",
"imageUrl":"https://raw.githubusercontent.com/InseeFrLab/www.sspcloud.fr/main/src/assets/img/python.jpg",
"deploymentUrl":"https://datalab.digitaltwinocean.edito.eu/launcher/ide/jupyter-python?autoLaunch=true&onyxia.friendlyName=%C2%ABpython-initiation%C2%BB&init.personalInit=%C2%ABhttps://raw.githubusercontent.com/InseeFrLab/formation-python-initiation/main/utils/init_jupyter.sh%C2%BB&init.personalInitArgs=%C2%ABfundamentals%20data-structures1%C2%BB&security.allowlist.enabled=false"
},
{
"name":"Structures de données 2 : dictionnaires et sets",
"abstract":"Découverte des structures de données non-ordonnées : dictionnaires et sets.",
"authors":[
"inseefrlab"
],
"contributors":[
"Romain Avouac"
],
"types":[
"Notebook Python"
],
"tags":[
"discover",
"learn"
],
"category":"training courses with python",
"imageUrl":"https://raw.githubusercontent.com/InseeFrLab/www.sspcloud.fr/main/src/assets/img/python.jpg",
"deploymentUrl":"https://datalab.digitaltwinocean.edito.eu/launcher/ide/jupyter-python?autoLaunch=true&onyxia.friendlyName=%C2%ABpython-initiation%C2%BB&init.personalInit=%C2%ABhttps://raw.githubusercontent.com/InseeFrLab/formation-python-initiation/main/utils/init_jupyter.sh%C2%BB&init.personalInitArgs=%C2%ABfundamentals%20data-structures2%C2%BB&security.allowlist.enabled=false"
},
{
"name":"Tests",
"abstract":"Découverte des tests et des structures conditionnelles, qui permettent à un programme de prendre des décisions de manière automatisée.",
"authors":[
"inseefrlab"
],
"contributors":[
"Romain Avouac"
],
"types":[
"Notebook Python"
],
"tags":[
"discover",
"learn"
],
"category":"training courses with python",
"imageUrl":"https://raw.githubusercontent.com/InseeFrLab/www.sspcloud.fr/main/src/assets/img/python.jpg",
"deploymentUrl":"https://datalab.digitaltwinocean.edito.eu/launcher/ide/jupyter-python?autoLaunch=true&onyxia.friendlyName=%C2%ABpython-initiation%C2%BB&init.personalInit=%C2%ABhttps://raw.githubusercontent.com/InseeFrLab/formation-python-initiation/main/utils/init_jupyter.sh%C2%BB&init.personalInitArgs=%C2%ABfundamentals%20tests%C2%BB&security.allowlist.enabled=false"
},
{
"name":"Boucles",
"abstract":"Automatisation d'opérations répétitives à l'aide des boucles for et des boucles while.",
"authors":[
"inseefrlab"
],
"contributors":[
"Romain Avouac"
],
"types":[
"Notebook Python"
],
"tags":[
"discover",
"learn"
],
"category":"training courses with python",
"imageUrl":"https://raw.githubusercontent.com/InseeFrLab/www.sspcloud.fr/main/src/assets/img/python.jpg",
"deploymentUrl":"https://datalab.digitaltwinocean.edito.eu/launcher/ide/jupyter-python?autoLaunch=true&onyxia.friendlyName=%C2%ABpython-initiation%C2%BB&init.personalInit=%C2%ABhttps://raw.githubusercontent.com/InseeFrLab/formation-python-initiation/main/utils/init_jupyter.sh%C2%BB&init.personalInitArgs=%C2%ABfundamentals%20loops%C2%BB&security.allowlist.enabled=false"
},
{
"name":"Fonctions",