-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_amostragem.py
146 lines (77 loc) · 4.47 KB
/
test_amostragem.py
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
import pandas as pd
from pandas import testing as tm
from amostragem import amostragem_aleatoria_simples, amostragem_sistematica, amostragem_agrupamento,\
amostragem_estratificada, amostragem_reservatorio
ds_census = pd.read_csv('datasets/census.csv')
SEED = 1
def test_amostragem_aleatoria_simples_shape():
df_amostra_aleatoria_simples = amostragem_aleatoria_simples(ds_census, 100, SEED)
assert df_amostra_aleatoria_simples.shape == (100, 15)
def test_amostragem_aleatoria_simples_start():
df_amostra_aleatoria_simples = amostragem_aleatoria_simples(ds_census, 100, SEED)
assert df_amostra_aleatoria_simples.index[0] == 9646
def test_amostragem_aleatoria_simples_end():
df_amostra_aleatoria_simples = amostragem_aleatoria_simples(ds_census, 100, SEED)
assert df_amostra_aleatoria_simples.index[-1] == 551
def test_amostragem_aleatoria_simples_mean_age():
df_amostra_aleatoria_simples = amostragem_aleatoria_simples(ds_census, 100, SEED)
assert df_amostra_aleatoria_simples['age'].mean() == 39.41
def test_amostragem_sistematica_shape():
df_amostra_sistematica = amostragem_sistematica(ds_census, 100, SEED)
assert df_amostra_sistematica.shape == (100, 15)
def test_amostragem_sistematica_start():
df_amostra_sistematica = amostragem_sistematica(ds_census, 100, SEED)
assert df_amostra_sistematica.index[0] == 68
def test_amostragem_sistematica_end():
df_amostra_sistematica = amostragem_sistematica(ds_census, 100, SEED)
assert df_amostra_sistematica.index[-1] == 32243
def test_amostragem_sistematica_mean_age():
df_amostra_sistematica = amostragem_sistematica(ds_census, 100, SEED)
assert df_amostra_sistematica['age'].mean() == 37.57
def test_amostragem_agrupamento_shape():
df_amostra_agrupamento = amostragem_agrupamento(ds_census, 100, SEED)
assert df_amostra_agrupamento.shape == (100, 16)
def test_amostragem_agrupamento_value_counts():
df_amostra_agrupamento = amostragem_agrupamento(ds_census, 100, SEED)
tm.assert_series_equal(
df_amostra_agrupamento['grupo'].value_counts(),
pd.Series(data={68: 100}, name='count', index=pd.Index([68], dtype='int64', name='grupo')))
def test_amostragem_agrupamento_start():
df_amostra_agrupamento = amostragem_agrupamento(ds_census, 100, SEED)
assert df_amostra_agrupamento.index[0] == 6800
def test_amostragem_agrupamento_end():
df_amostra_agrupamento = amostragem_agrupamento(ds_census, 100, SEED)
assert df_amostra_agrupamento.index[-1] == 6899
def test_amostragem_agrupamento_mean_age():
df_amostra_agrupamento = amostragem_agrupamento(ds_census, 100, SEED)
assert df_amostra_agrupamento['age'].mean() == 38.97
def test_amostragem_estratificada_shape():
df_amostra_estratificada = amostragem_estratificada(ds_census, 100, 'income', SEED)
assert df_amostra_estratificada.shape == (100, 16)
def test_amostragem_estratificada_value_counts():
df_amostra_estratificada = amostragem_estratificada(ds_census, 100, 'income', SEED)
tm.assert_series_equal(
df_amostra_estratificada['income'].value_counts(),
pd.Series(data={' <=50K': 76, ' >50K': 24}, name='count',
index=pd.Index([' <=50K', ' >50K'], dtype='object', name='income')))
def test_amostragem_estratificada_start():
df_amostra_estratificada = amostragem_estratificada(ds_census, 100, 'income', SEED)
assert df_amostra_estratificada.index[0] == 25535
def test_amostragem_estratificada_end():
df_amostra_estratificada = amostragem_estratificada(ds_census, 100, 'income', SEED)
assert df_amostra_estratificada.index[-1] == 4521
def test_amostragem_estratificada_mean_age():
df_amostra_estratificada = amostragem_estratificada(ds_census, 100, 'income', SEED)
assert df_amostra_estratificada['age'].mean() == 37.24
def test_amostragem_reservatorio_shape():
df_amostra_reservatorio = amostragem_reservatorio(ds_census, 100, SEED)
assert df_amostra_reservatorio.shape == (100, 16)
def test_amostragem_reservatorio_start():
df_amostra_reservatorio = amostragem_reservatorio(ds_census, 100, SEED)
assert df_amostra_reservatorio.index[0] == 29608
def test_amostragem_reservatorio_end():
df_amostra_reservatorio = amostragem_reservatorio(ds_census, 100, SEED)
assert df_amostra_reservatorio.index[-1] == 25870
def test_amostragem_reservatorio_mean_age():
df_amostra_reservatorio = amostragem_reservatorio(ds_census, 100, SEED)
assert df_amostra_reservatorio['age'].mean() == 37.85