Última atividade 1732560594

kristofer's Avatar kristofer revisou este gist 1732560594. Ir para a revisão

1 file changed, 1 insertion, 1 deletion

pandasIntro.md

@@ -1,7 +1,7 @@
1 1 Pandas intro
2 2
3 3
4 - Appned is deprecated.
4 + Append is deprecated.
5 5
6 6 Use
7 7 ```python

kristofer's Avatar kristofer revisou este gist 1732549441. Ir para a revisão

1 file changed, 17 insertions

pandasIntro.md(arquivo criado)

@@ -0,0 +1,17 @@
1 + Pandas intro
2 +
3 +
4 + Appned is deprecated.
5 +
6 + Use
7 + ```python
8 + # temp_df = movies_df.append(movies_df)
9 +
10 + dfcopy = movies_df.copy()
11 + temp_df = pd.concat([movies_df, dfcopy], ignore_index=True)
12 + temp_df.shape
13 + ```
14 +
15 +
16 +
17 +
Próximo Anterior