You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
668 B
20 lines
668 B
# -*- coding: utf-8 -*-
|
|
"""Untitled3.ipynb
|
|
|
|
Automatically generated by Colaboratory.
|
|
|
|
Original file is located at
|
|
https://colab.research.google.com/drive/1_mvfX9huqh86SszlR9lWuxwDAl8mXTGj
|
|
"""
|
|
|
|
import pandas as pd
|
|
|
|
te_siren_admin=pd.read_csv('/content/te_siren_admin.csv')
|
|
te_siren_adresse=pd.read_csv('/content/te_siren_adresse.csv')
|
|
tr_naf=pd.read_csv('/content/tr_naf.csv')
|
|
tr_nap=pd.read_csv('/content/tr_nap.csv')
|
|
convention_collective=pd.read_csv('/content/convention_collective.csv')
|
|
Entreprise=pd.read_csv('/content/Entreprise.csv')
|
|
|
|
database=pd.concat([te_siren_admin,te_siren_adresse,tr_naf,tr_nap,convention_collective,Entreprise],axis=1)
|
|
database.head()
|