This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import pandas as pd | |
| import numpy as np | |
| import matplotlib | |
| import matplotlib.pyplot as plt | |
| import seaborn as sns | |
| import missingno | |
| import warnings | |
| warnings.filterwarnings("ignore") | |
| %matplotlib inline | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | -- | |
| -- Estrutura da tabela `pais` | |
| -- | |
| CREATE TABLE IF NOT EXISTS `pais` ( | |
| `paisId` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, | |
| `paisNome` varchar(50) NOT NULL, | |
| `paisName` varchar(50) NOT NULL, | |
| PRIMARY KEY (`paisId`) | |
| ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=253 ; |