Questions tagged as 'jupyter'

0
answers

Value travel in columns

I have the following dataframe: and I want to go through each line of the column "CO_tin_no" to consult it with a webservice item=[] for nit in mydataset_df.CO_tin_no: nit = mydataset_df.CO_tin_no url = 'http://www.rues.org.c...
asked by 16.10.2018 / 18:39
0
answers

MySQL, MariaDB with Jupyter Notebook

I have a sample database "Sakila" about MariaDB locally with which I practice with HeidiSQL, I would like to know if there is a way to get the same BD with Jupyter Notebook, to be able to practice and comment code from there same and that I stay...
asked by 04.10.2018 / 15:18
0
answers

KeyError: 'Entity 0 does not exist in transactions'

An error of type KeyError arises when the following code is executed. - Code: feature_matrix_customers, feature_defs = ft.dfs(entities=es, target_entity="customers") - Error: KeyError Traceback (most...
asked by 13.08.2018 / 14:49
0
answers

ImportError in the jupyter notebook despite installing the library called

I tried to import a library but it does not seem to be added to jupyter notebook import sys print("sys.executable:\n",sys.executable) print("sys.path:\n",sys.path) from textblob import TextBlob And he gives me: sys.executable:...
asked by 03.08.2018 / 12:29
0
answers

Jupyter notebook. IndexingError: Unalloble boolean Series provided as an indexer (index of the boolean Series and of the indexed object do not match

I run Spyder correctly, the following script: # Selección de indicadores para paises de la CEE def indicadores_CEE (indicator_code, indicator_name, year): df_ind_CEE = data[(data.CountryCode == "ESP") | (data.CountryCode == "PRT") | (dat...
asked by 17.07.2018 / 16:18
1
answer

jupyter --InternalError: (pymysql.err.InternalError) (1054, "Unknown column 'index' in 'field list'")

I have a code in jupyter that what I want to do is insert the bd, it works well with the example that I have commented, but when doing it with the real csv, I deployed an error. import pandas as pd df = pd.read_csv('4763.csv',header=[2...
asked by 26.06.2018 / 21:07
0
answers

jupyter does not recognize! ls,! cat,! head

When executing these commands in jupyter notebook, I get the errors:    " head " is not recognized as an internal or external command, program or   batch file executable.       " ls " is not recognized as an internal or external...
asked by 18.06.2018 / 20:52
0
answers

cudaGetDevice () failed. Status: CUDA driver version is insufficient for CUDA runtime version "

I am using an instance of EC2 Deep Learning Windows 10 g2.2xlarge. I have this problem when I try to run an implementation within jupyter notebook, In the terminal says the following message:    "cudaGetDevice () failed. Status: The ver...
asked by 11.06.2018 / 19:16
0
answers

Error saved from Jupyter Notebook

I am using JN with Python 3 and it has started to give me this error with the bran and autochecking:    Notebook changed       The notebook file has changed on disk since the last time we opened   saved it. Do you want to overwrite the file...
asked by 02.05.2018 / 00:14
2
answers

Pandas. Import all the columns of an Excel sheet in Jupyter Notebook

In an open book in Jupyter Notebook, I try to import all the columns of an Excel sheet (16), using the script file = "datos.xlsx" # Import the data df = pd.read_excel(file, sheetname = "Financiera", na_values = "n/a") The script works corre...
asked by 11.04.2018 / 00:20