pelmel1 Flashcards

1
Q

différence entre dataframe (1) et matrix ( 2)

A

table homogène

table hétérogène

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

des fonctions afficher des variable

A

print ( )

cat ( )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

valeur

A

R dispose de deux valeurs logique, TRUE et FALSE qui valent numériquement 1 et 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

les connecteurs usuels nommés NON, ET, OU s’écrivent respectivement

A

!, &, |

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

structure “si_alors” en R

A

if (condition) {

        [...] # bloc d'instructions exécutées
              # si la condition est vraie
     }
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

structure “si_alors_sinon” en R

A

if (condition) {

        [...] # bloc d'instructions exécutées
              # si la condition est vraie
 } else {
        [...] # bloc d'instructions exécutées
              # si la condition est fausse
     }
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

calcul à partir d’une base de donnée sans utiler dolar

A

se fiat avec la fonction with
> with(Dataset, mean(AGE))
[1] 45.15

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

que sert la fonctio transform

A

fonction de calcule,
ajoute directement une nouvelle dans une base de donnée selon les critere definie
> transform(Dataset, exemple = AGE/PROF) permet d’ajouter une colonne exemple à Dataset

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

comment creer de bornes d’un objet AGE ( tranche d’age)

A

cut( age, breaks = c( 10, 30,40))
cut(x=AGE, breaks=c(0,20,40,60,100))
cut(x=AGE,breaks=c(0,20,40,60,100),labels=c(“Junior”,”Cador”,”Castor”,”Senior”))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

simulation de deux vecteurs entiers de longueur 5

A

simulation de deux vecteurs entiers de longueur 5

y

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

fonction de fusion

A

merge(p1,p2,by=”CLEAP”,all.y=TRUE)
rbind
cbind

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

synthaxe du boucle while

A
  1. initialiliser i ( toujour) : i = i0
  2. condition : tanque i < in (while (i < in)
  3. instruction : excuter l’instrution ou fonction ( le boucl
  4. incrementer toujour i (sinon ne s’arrete pas) : i = i +1
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

comment fonction le boucle while

A

il exécute le code entre crochet tan qu’il est vrai

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

simuler 50 nombre compri en tre 1 et 100

A

round( runif(50,min = 1,max=99) )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

les parametres margins

A
  1. .margins = 1 : par lignes ;
  2. .margins = 2 : par colonnes ;
  3. .margins = c(1,2) : par cellule ;
  4. .margins = c() : ne pas faire de découpement
How well did you know this?
1
Not at all
2
3
4
5
Perfectly