Overblog
Suivre ce blog Administration + Créer mon blog

graphe

graphes de corrélation entre variables en python matplot, graphe, Python

graphes de corrélation entre variables en python

Correlation matrix (heatmap style) #correlation matrix corrmat = df_train . corr () f , ax = plt . subplots ( figsize...

1 Mars 2019

les graphes basiques en python Python, graphe, matplot

les graphes basiques en python

Cours: datavisualisation sur kaggle Donner les proprités d'une variable numérique sns.set(rc={'figure.figsize':(9,7)})...

1 Mars 2019

visualisation de toutes les variables indépendamment ggplot2, graphe, R

visualisation de toutes les variables indépendamment

head(lbw) low age lwt race smoke ptl ht ui ftv bwt 1 normal 19 182 black no 0 no yes 0 2523 2 normal 33 155 other...

10 Février 2019

représenter les relations entre deux variables catégorielles R, ggplot2, graphe

représenter les relations entre deux variables catégorielles

gg

25 Décembre 2018

courbes(dont séries temporelles) avec geom_line entre deux variables numériques R, ggplot2, graphe

courbes(dont séries temporelles) avec geom_line entre deux variables numériques

Courbe d'un sinus > D <- data.frame(X=seq(-2*pi,2*pi,by=0.01)) > ggplot(D)+aes(x=X,y=sin(X))+geom_line() Une serie...

24 Décembre 2018

Visualisation d'une variable numérique,(Histogramme et densité,boxplot,violin) R, ggplot2, graphe

Visualisation d'une variable numérique,(Histogramme et densité,boxplot,violin)

geom_histogram(): Construction d'un histogramme ggplot(data = diamonds, aes(x = price)) + geom_histogram() geom_density()...

24 Décembre 2018

tracage de points entre deux variables numériques (+ color(cat1) +facet_wrap(cat3)) R, ggplot2, graphe

tracage de points entre deux variables numériques (+ color(cat1) +facet_wrap(cat3))

geom_point :tracage des points entre deux variables numérique ggplot(data = diamonds) + aes(x = carat, y = price,...

24 Décembre 2018

visualisation des catégories d'une variable catégorielle(barre,pie...) graphe, ggplot2, R

visualisation des catégories d'une variable catégorielle(barre,pie...)

table(diamonds$cut) Fair Good Very Good Premium Ideal 1610 4906 12082 13791 21551 > count(diamonds,cut) # A tibble:...

24 Décembre 2018

Outil de génération de graphes ggplot2 R, graphe, ggplot2

Outil de génération de graphes ggplot2

#chargement du dataset data("diamonds") #lancement de esquisser esquisse::esquisser()

11 Décembre 2018

ggplot2: the basics R, graphe, ggplot2

ggplot2: the basics

ggplot(data, mapping=aes()) + geometric object arguments: data: Dataset used to plot the graph mapping: Control...

11 Novembre 2018