This code won't display any output. In general (there are exception)
notebook will only display things called with the `print` function,
jupyter's `display` module, and bare statement on the last line of the cell.

Type `print(footbool)` in another cell to see what I mean.

On Thu, Sep 5, 2019 at 7:53 AM Parth Bhatt <[email protected]> wrote:

> Hi All,
> I am a new learner for Jupyter Notebook and I started with the Intro to
> Data Science book,
> In chapter 2 I am running this code but I am unable to see any outputs
> after the execution of the code.
> I've no clue what's happening and why I am not seeing the results. I am
> running it on windows (Python 3).
>
> Kindly help me and suggest me any good basic tutorials or videos which can
> be helpful.
>
>
> import pandas as pd
> import numpy as np
> import matplotlib.pyplot as plt
>
>
> data = {’year ’: [
> 2010 , 2011 , 2012 ,
> 2010 , 2011 , 2012 ,
> 2010 , 2011 , 2012
> ],
> ’team ’: [
> ’FCBarcelona ’, ’FCBarcelona ’,
> ’FCBarcelona ’, ’RMadrid ’,
> ’RMadrid ’, ’RMadrid ’,
> ’ValenciaCF ’, ’ValenciaCF ’,
> ’ValenciaCF ’
> ],
> ’wins ’: [30, 28, 32, 29, 32, 26, 21, 17, 19],
> ’draws ’: [6, 7, 4, 5, 4, 7, 8, 10, 8],
> ’losses ’: [2, 3, 2, 4, 2, 5, 9, 11, 11]
> }
> football = pd.DataFrame(data , columns = [
> ’year ’, ’team ’, ’wins ’, ’draws ’, ’losses ’
> ]
> )
>
> --
> You received this message because you are subscribed to the Google Groups
> "Project Jupyter" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jupyter/9c12b435-1704-455c-9eef-5c4e78572fce%40googlegroups.com
> <https://groups.google.com/d/msgid/jupyter/9c12b435-1704-455c-9eef-5c4e78572fce%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Project Jupyter" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jupyter/CADT3MEAs3GAi1_2X3QUxO9OrykFoM7jrKo8pQhg7B_MsJpJZgw%40mail.gmail.com.

Reply via email to