This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(stringfix) | |
library(magrittr) | |
one <- c('love', 'is', 'real') | |
(one %c% ' ') %,% (rev(one) %c% ' ') | |
love_verse <- function(w1, w2, w3){ | |
glue::glue( | |
"Love is {b}, {b} is love |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` r | |
library(xml2) | |
library(dplyr) | |
library(purrr) | |
library(stringr) | |
# From the root node: | |
# If has_children, then recurse. | |
# Otherwise, attributes, value and children (nested) to data frame. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# Le fichier est dispo ici : https://www.data.gouv.fr/fr/datasets/finess-extraction-du-fichier-des-etablissements/ | |
import os | |
os.chdir('..\\..\\') | |
print ('----------------- Découper Géocodage et structureET Etalab ---------------') |
NewerOlder