Understanding Python syntax in lists vs seriesHow do I check if a list is empty?Calling an external command in PythonWhat are metaclasses in Python?Finding the index of an item given a list containing it in PythonDoes Python have a ternary conditional operator?Understanding slice notationUnderstanding Python super() with __init__() methodsHow to make a flat list out of list of listsHow do I list all files of a directory?Does Python have a string 'contains' substring method?

Formal Definition of Dot Product

What is the status of the Lannisters after Season 8 Episode 5, "The Bells"?

Testing if os.path.exists with ArcPy?

To whom did Varys write those letters in Game of Thrones S8E5?

enumitem: Understanding the usage of asterisk and exclamation mark in setting the different lengths

Why were the bells ignored in S8E5?

Why would someone open a Netflix account using my Gmail address?

Are there microwaves to heat baby food at Brussels airport?

God-Pharaoh's Statue and Finale Of Promise

Why commonly or frequently used fonts sizes are even numbers like 10px, 12px, 16px, 24px, or 32px?

Could there be something like aerobatic smoke trails in the vacuum of space?

How to redirect stdout to a file, and stdout+stderr to another one?

Network latencies between opposite ends of the Earth

Could a space colony 1g from the sun work?

Capital gains on stocks sold to take initial investment off the table

Can a tourist shoot a gun in the USA?

How to continually let my readers know what time it is in my story, in an organic way?

How to handle professionally if colleagues has referred his relative and asking to take easy while taking interview

Does addError() work outside of triggers?

Will there be more tax deductions if I put the house completely under my name, versus doing a joint ownership?

What is this weird d12 for?

Is random forest for regression a 'true' regression?

How to rename multiple files in a directory at the same time

Can anyone give me examples of the relative-determinative 'which'?



Understanding Python syntax in lists vs series


How do I check if a list is empty?Calling an external command in PythonWhat are metaclasses in Python?Finding the index of an item given a list containing it in PythonDoes Python have a ternary conditional operator?Understanding slice notationUnderstanding Python super() with __init__() methodsHow to make a flat list out of list of listsHow do I list all files of a directory?Does Python have a string 'contains' substring method?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








6















I am new to Python (no computer science background) for data science. I keep hearing that Python is easy, but I am making incremental progress. As an example, I understand:



len(titles[(titles.year >= 1950) & (titles.year <=1959)])


"In the titles dataframe, create a series and take from the year column of the titles dataframe anything greater than or equal to 1950 AND anything less than or equal to 1959. The take the length of it."



But when I encounter the following, I don't understand the logic of:



t = titles
(t.year // 10 * 10).value_counts().sort_index().plot(kind='bar')


or



titles.title.value_counts().head(10)


In both these cases, I can piece it together obviously.
But it is not clear. In the second, why does
Python not allow me to use square brackets and regular brackets like in the first example?










share|improve this question
























  • Off hand, this doesn't appear to be just "vanilla" python. Do you have any libraries you are using? (numpy, scipy, anaconda, etc.) If you had to run a "pip" command, that installs libraries. It would be helpful to note / tag what libraries you are using.

    – Mark Ribau
    2 hours ago






  • 2





    @MarkRibau Looks like pandas.

    – gmds
    2 hours ago






  • 1





    Judging from the word "dataframes," pandas is right.

    – kindall
    2 hours ago






  • 1





    Where would you expect to use square brackets in your other examples?

    – Code-Apprentice
    2 hours ago











  • You could use the brackets on t.year as well, you just dont. I'm not sure I understand your confusion, exactly, can you elaborate?

    – juanpa.arrivillaga
    2 hours ago

















6















I am new to Python (no computer science background) for data science. I keep hearing that Python is easy, but I am making incremental progress. As an example, I understand:



len(titles[(titles.year >= 1950) & (titles.year <=1959)])


"In the titles dataframe, create a series and take from the year column of the titles dataframe anything greater than or equal to 1950 AND anything less than or equal to 1959. The take the length of it."



But when I encounter the following, I don't understand the logic of:



t = titles
(t.year // 10 * 10).value_counts().sort_index().plot(kind='bar')


or



titles.title.value_counts().head(10)


In both these cases, I can piece it together obviously.
But it is not clear. In the second, why does
Python not allow me to use square brackets and regular brackets like in the first example?










share|improve this question
























  • Off hand, this doesn't appear to be just "vanilla" python. Do you have any libraries you are using? (numpy, scipy, anaconda, etc.) If you had to run a "pip" command, that installs libraries. It would be helpful to note / tag what libraries you are using.

    – Mark Ribau
    2 hours ago






  • 2





    @MarkRibau Looks like pandas.

    – gmds
    2 hours ago






  • 1





    Judging from the word "dataframes," pandas is right.

    – kindall
    2 hours ago






  • 1





    Where would you expect to use square brackets in your other examples?

    – Code-Apprentice
    2 hours ago











  • You could use the brackets on t.year as well, you just dont. I'm not sure I understand your confusion, exactly, can you elaborate?

    – juanpa.arrivillaga
    2 hours ago













6












6








6








I am new to Python (no computer science background) for data science. I keep hearing that Python is easy, but I am making incremental progress. As an example, I understand:



len(titles[(titles.year >= 1950) & (titles.year <=1959)])


"In the titles dataframe, create a series and take from the year column of the titles dataframe anything greater than or equal to 1950 AND anything less than or equal to 1959. The take the length of it."



But when I encounter the following, I don't understand the logic of:



t = titles
(t.year // 10 * 10).value_counts().sort_index().plot(kind='bar')


or



titles.title.value_counts().head(10)


In both these cases, I can piece it together obviously.
But it is not clear. In the second, why does
Python not allow me to use square brackets and regular brackets like in the first example?










share|improve this question
















I am new to Python (no computer science background) for data science. I keep hearing that Python is easy, but I am making incremental progress. As an example, I understand:



len(titles[(titles.year >= 1950) & (titles.year <=1959)])


"In the titles dataframe, create a series and take from the year column of the titles dataframe anything greater than or equal to 1950 AND anything less than or equal to 1959. The take the length of it."



But when I encounter the following, I don't understand the logic of:



t = titles
(t.year // 10 * 10).value_counts().sort_index().plot(kind='bar')


or



titles.title.value_counts().head(10)


In both these cases, I can piece it together obviously.
But it is not clear. In the second, why does
Python not allow me to use square brackets and regular brackets like in the first example?







python pandas syntax






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 2 hours ago









kindall

132k19199253




132k19199253










asked 2 hours ago









DataNoob7DataNoob7

435




435












  • Off hand, this doesn't appear to be just "vanilla" python. Do you have any libraries you are using? (numpy, scipy, anaconda, etc.) If you had to run a "pip" command, that installs libraries. It would be helpful to note / tag what libraries you are using.

    – Mark Ribau
    2 hours ago






  • 2





    @MarkRibau Looks like pandas.

    – gmds
    2 hours ago






  • 1





    Judging from the word "dataframes," pandas is right.

    – kindall
    2 hours ago






  • 1





    Where would you expect to use square brackets in your other examples?

    – Code-Apprentice
    2 hours ago











  • You could use the brackets on t.year as well, you just dont. I'm not sure I understand your confusion, exactly, can you elaborate?

    – juanpa.arrivillaga
    2 hours ago

















  • Off hand, this doesn't appear to be just "vanilla" python. Do you have any libraries you are using? (numpy, scipy, anaconda, etc.) If you had to run a "pip" command, that installs libraries. It would be helpful to note / tag what libraries you are using.

    – Mark Ribau
    2 hours ago






  • 2





    @MarkRibau Looks like pandas.

    – gmds
    2 hours ago






  • 1





    Judging from the word "dataframes," pandas is right.

    – kindall
    2 hours ago






  • 1





    Where would you expect to use square brackets in your other examples?

    – Code-Apprentice
    2 hours ago











  • You could use the brackets on t.year as well, you just dont. I'm not sure I understand your confusion, exactly, can you elaborate?

    – juanpa.arrivillaga
    2 hours ago
















Off hand, this doesn't appear to be just "vanilla" python. Do you have any libraries you are using? (numpy, scipy, anaconda, etc.) If you had to run a "pip" command, that installs libraries. It would be helpful to note / tag what libraries you are using.

– Mark Ribau
2 hours ago





Off hand, this doesn't appear to be just "vanilla" python. Do you have any libraries you are using? (numpy, scipy, anaconda, etc.) If you had to run a "pip" command, that installs libraries. It would be helpful to note / tag what libraries you are using.

– Mark Ribau
2 hours ago




2




2





@MarkRibau Looks like pandas.

– gmds
2 hours ago





@MarkRibau Looks like pandas.

– gmds
2 hours ago




1




1





Judging from the word "dataframes," pandas is right.

– kindall
2 hours ago





Judging from the word "dataframes," pandas is right.

– kindall
2 hours ago




1




1





Where would you expect to use square brackets in your other examples?

– Code-Apprentice
2 hours ago





Where would you expect to use square brackets in your other examples?

– Code-Apprentice
2 hours ago













You could use the brackets on t.year as well, you just dont. I'm not sure I understand your confusion, exactly, can you elaborate?

– juanpa.arrivillaga
2 hours ago





You could use the brackets on t.year as well, you just dont. I'm not sure I understand your confusion, exactly, can you elaborate?

– juanpa.arrivillaga
2 hours ago












3 Answers
3






active

oldest

votes


















8














This is not about lists vs pd.Series, but rather about the function of parentheses (()) vs brackets ([]) in Python.



Parentheses are used in two main cases: to modify the order of precedence of operations, and to delimit arguments when calling functions.



The difference between 1 + 2 * 3 and (1 + 2) * 3 is obvious, and if you want to pass a and b to a function f, f a b will not work, unlike in, say, Haskell.



We are concerned mostly with the first use here; for example, in this line:



(t.year // 10 * 10).value_counts().sort_index().plot(kind='bar')


Without the parentheses, you would be calling that chain of methods on 10, which wouldn't make sense. Clearly, you want to call them on the result of the parenthesised expression.



Now, in mathematics, brackets can also be used to denote precedence, in conjunction with parentheses, in a case where multiple nested parentheses would be confusing. For example, the two may be equivalent in mathematics:



[(1 + 2) * 3] ** 4
((1 + 2) * 3) ** 4


However, that is not the case in Python: ((1 + 2) * 3) ** 4 can be evaluated, whereas [(1 + 2) * 3] ** 4 is a TypeError, since the part within brackets resolves to a list, and you can't perform exponentiation on lists.



Rather, what happens in something like titles[titles.year >= 1950] is not directly relevant to precedence (though of course anything outside the brackets will not be part of the inner expression).



Instead, the brackets represent indexing; in some way, the value of titles.year >= 1950 is used to get elements from titles (this is done using overloading of the __getitem__ dunder method).



The exact nature of this indexing may differ; lists take integers, dicts take any hashable object and pd.Series take, among other things, boolean pd.Series (that is what is happening here), but they ultimately represent some way to subset the indexed object.



Semantically, therefore, we can see that brackets mean something different from parentheses, and are not interchangeable.



For completeness, using brackets as opposed to parentheses has one tangible benefit: it permits reassignment, because it automatically delegates to either __setitem__ or __getitem__, depending on whether assignment is being performed.



Therefore, you could do something like titles[titles.year >= 1950] = 'Nothing' if you wanted. However, in all cases, titles(titles.year >= 1950) = 'Nothing' delegates to __call_, and therefore will fail in the following way:



SyntaxError: can't assign to function call





share|improve this answer




















  • 1





    "Now, in mathematics, brackets can also be used to denote precedence, in conjunction with parentheses, in a case where multiple nested parentheses would be confusing." This might hit on the main confusion if the OP is familiar with this usage in algebra.

    – Code-Apprentice
    2 hours ago












  • Wow, thank you for the fulsome response. Yes, while my background in algebra is small, that has definitely caused me some confusion learning Python. This is the point - [] vs (). In particular, in Pandas. I am trying to be able to understand the logic, (hence my internal mentalese). So in Pandas, are [] for indexing and not making a series?

    – DataNoob7
    1 hour ago











  • @DataNoob7 Remember that indexing creates some form of subset! So, if you have a Series, you can index it to get another Series. If you mean from raw data, then that's a function call - something like pd.Series(data).

    – gmds
    1 hour ago











  • @gmds Stupid question - How is indexing defined in computer science. To me, the word "indexing" is just creating a "table of contents" to identify different parts of something. But you haven't actually extracted anything yet. So your phrase "indexing creates some form of subset" throws me off. To me you are just assigning a number, a letter, etc to your dataframe so you have not taken a subset of anything yet?

    – DataNoob7
    1 hour ago



















3














Square brackets are used for indexes on lists and dictionaries (and things that act like these). On the other hand, parentheses are used for a variety of reasons. In this case, they are used for grouping in (t.year // 10 * 10) or as a function call in value_counts() and other places.



In the case of a library like pandas, whether you use indexing notation with [] or a function call is entirely determined by the implementation of the library. You can learn these details through tutorials and the library's documentation.



Before digging deeper into the pandas library, I suggest that you study the basics of Python syntax. The official tutorial is a good place to start.



On a side note, when you write code, do not make each line as complex as what you see in these examples. You should instead break things into smaller pieces and assign intermediate parts to variables. For example, you can take



(t.year // 10 * 10).value_counts().sort_index().plot(kind='bar')


and turn it into



decade = (t.year // 10 * 10)
counts = decated.value_counts()
sorted = counts.sort_index()
sorted.plot(kind='bar')





share|improve this answer




















  • 1





    I have to agree. If just starting out (especially if you're new to programming in general), start with python basics before jumping into the data science part w/ pandas, numpy, etc.

    – Mark Ribau
    2 hours ago











  • @anyone I know sorted is a bad name here because of the builtin function. If anyone has a better suggestion, feel free to edit.

    – Code-Apprentice
    2 hours ago











  • What about sorted_counts, or, to be more specific (and, unfortunately, verbose), index_sorted_counts?

    – gmds
    2 hours ago












  • I have started "Python basics" through other means, but I will check out the official tutorial. I have a lot of data that I need to analyze for work(many datasets ranging from 700k to 40 million), so I need to accelerate this though. The frustrating part is that I know what I have to, but it is translating it into Python code that is very difficult. I understood [] to denote a series in pandas, but it is also indexing? Indexing outside of pandas? To the point of code length - maybe that is the issue.

    – DataNoob7
    1 hour ago


















2














t = titles
(t.year // 10 * 10).value_counts().sort_index().plot(kind='bar')


titles is a data frame. year is a column in that frame. In order, the operations are



  • Divide the year by 10 (integer division) and multiply by 10. This truncates the last digit to 0, so that each year is the beginning of its decade. The result of this is another column, the same length as the original.

  • Count the values; this will produce a new table with an entry (year, frequency) for each decade-year.

  • Sort this table by the default index

  • Make a bar plot of the result.

Does that get you going?






share|improve this answer























  • Thanks - I can understand what the code means, it's understanding the logic of why the code is written as such (see my original post).

    – DataNoob7
    1 hour ago











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f56140150%2funderstanding-python-syntax-in-lists-vs-series%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























3 Answers
3






active

oldest

votes








3 Answers
3






active

oldest

votes









active

oldest

votes






active

oldest

votes









8














This is not about lists vs pd.Series, but rather about the function of parentheses (()) vs brackets ([]) in Python.



Parentheses are used in two main cases: to modify the order of precedence of operations, and to delimit arguments when calling functions.



The difference between 1 + 2 * 3 and (1 + 2) * 3 is obvious, and if you want to pass a and b to a function f, f a b will not work, unlike in, say, Haskell.



We are concerned mostly with the first use here; for example, in this line:



(t.year // 10 * 10).value_counts().sort_index().plot(kind='bar')


Without the parentheses, you would be calling that chain of methods on 10, which wouldn't make sense. Clearly, you want to call them on the result of the parenthesised expression.



Now, in mathematics, brackets can also be used to denote precedence, in conjunction with parentheses, in a case where multiple nested parentheses would be confusing. For example, the two may be equivalent in mathematics:



[(1 + 2) * 3] ** 4
((1 + 2) * 3) ** 4


However, that is not the case in Python: ((1 + 2) * 3) ** 4 can be evaluated, whereas [(1 + 2) * 3] ** 4 is a TypeError, since the part within brackets resolves to a list, and you can't perform exponentiation on lists.



Rather, what happens in something like titles[titles.year >= 1950] is not directly relevant to precedence (though of course anything outside the brackets will not be part of the inner expression).



Instead, the brackets represent indexing; in some way, the value of titles.year >= 1950 is used to get elements from titles (this is done using overloading of the __getitem__ dunder method).



The exact nature of this indexing may differ; lists take integers, dicts take any hashable object and pd.Series take, among other things, boolean pd.Series (that is what is happening here), but they ultimately represent some way to subset the indexed object.



Semantically, therefore, we can see that brackets mean something different from parentheses, and are not interchangeable.



For completeness, using brackets as opposed to parentheses has one tangible benefit: it permits reassignment, because it automatically delegates to either __setitem__ or __getitem__, depending on whether assignment is being performed.



Therefore, you could do something like titles[titles.year >= 1950] = 'Nothing' if you wanted. However, in all cases, titles(titles.year >= 1950) = 'Nothing' delegates to __call_, and therefore will fail in the following way:



SyntaxError: can't assign to function call





share|improve this answer




















  • 1





    "Now, in mathematics, brackets can also be used to denote precedence, in conjunction with parentheses, in a case where multiple nested parentheses would be confusing." This might hit on the main confusion if the OP is familiar with this usage in algebra.

    – Code-Apprentice
    2 hours ago












  • Wow, thank you for the fulsome response. Yes, while my background in algebra is small, that has definitely caused me some confusion learning Python. This is the point - [] vs (). In particular, in Pandas. I am trying to be able to understand the logic, (hence my internal mentalese). So in Pandas, are [] for indexing and not making a series?

    – DataNoob7
    1 hour ago











  • @DataNoob7 Remember that indexing creates some form of subset! So, if you have a Series, you can index it to get another Series. If you mean from raw data, then that's a function call - something like pd.Series(data).

    – gmds
    1 hour ago











  • @gmds Stupid question - How is indexing defined in computer science. To me, the word "indexing" is just creating a "table of contents" to identify different parts of something. But you haven't actually extracted anything yet. So your phrase "indexing creates some form of subset" throws me off. To me you are just assigning a number, a letter, etc to your dataframe so you have not taken a subset of anything yet?

    – DataNoob7
    1 hour ago
















8














This is not about lists vs pd.Series, but rather about the function of parentheses (()) vs brackets ([]) in Python.



Parentheses are used in two main cases: to modify the order of precedence of operations, and to delimit arguments when calling functions.



The difference between 1 + 2 * 3 and (1 + 2) * 3 is obvious, and if you want to pass a and b to a function f, f a b will not work, unlike in, say, Haskell.



We are concerned mostly with the first use here; for example, in this line:



(t.year // 10 * 10).value_counts().sort_index().plot(kind='bar')


Without the parentheses, you would be calling that chain of methods on 10, which wouldn't make sense. Clearly, you want to call them on the result of the parenthesised expression.



Now, in mathematics, brackets can also be used to denote precedence, in conjunction with parentheses, in a case where multiple nested parentheses would be confusing. For example, the two may be equivalent in mathematics:



[(1 + 2) * 3] ** 4
((1 + 2) * 3) ** 4


However, that is not the case in Python: ((1 + 2) * 3) ** 4 can be evaluated, whereas [(1 + 2) * 3] ** 4 is a TypeError, since the part within brackets resolves to a list, and you can't perform exponentiation on lists.



Rather, what happens in something like titles[titles.year >= 1950] is not directly relevant to precedence (though of course anything outside the brackets will not be part of the inner expression).



Instead, the brackets represent indexing; in some way, the value of titles.year >= 1950 is used to get elements from titles (this is done using overloading of the __getitem__ dunder method).



The exact nature of this indexing may differ; lists take integers, dicts take any hashable object and pd.Series take, among other things, boolean pd.Series (that is what is happening here), but they ultimately represent some way to subset the indexed object.



Semantically, therefore, we can see that brackets mean something different from parentheses, and are not interchangeable.



For completeness, using brackets as opposed to parentheses has one tangible benefit: it permits reassignment, because it automatically delegates to either __setitem__ or __getitem__, depending on whether assignment is being performed.



Therefore, you could do something like titles[titles.year >= 1950] = 'Nothing' if you wanted. However, in all cases, titles(titles.year >= 1950) = 'Nothing' delegates to __call_, and therefore will fail in the following way:



SyntaxError: can't assign to function call





share|improve this answer




















  • 1





    "Now, in mathematics, brackets can also be used to denote precedence, in conjunction with parentheses, in a case where multiple nested parentheses would be confusing." This might hit on the main confusion if the OP is familiar with this usage in algebra.

    – Code-Apprentice
    2 hours ago












  • Wow, thank you for the fulsome response. Yes, while my background in algebra is small, that has definitely caused me some confusion learning Python. This is the point - [] vs (). In particular, in Pandas. I am trying to be able to understand the logic, (hence my internal mentalese). So in Pandas, are [] for indexing and not making a series?

    – DataNoob7
    1 hour ago











  • @DataNoob7 Remember that indexing creates some form of subset! So, if you have a Series, you can index it to get another Series. If you mean from raw data, then that's a function call - something like pd.Series(data).

    – gmds
    1 hour ago











  • @gmds Stupid question - How is indexing defined in computer science. To me, the word "indexing" is just creating a "table of contents" to identify different parts of something. But you haven't actually extracted anything yet. So your phrase "indexing creates some form of subset" throws me off. To me you are just assigning a number, a letter, etc to your dataframe so you have not taken a subset of anything yet?

    – DataNoob7
    1 hour ago














8












8








8







This is not about lists vs pd.Series, but rather about the function of parentheses (()) vs brackets ([]) in Python.



Parentheses are used in two main cases: to modify the order of precedence of operations, and to delimit arguments when calling functions.



The difference between 1 + 2 * 3 and (1 + 2) * 3 is obvious, and if you want to pass a and b to a function f, f a b will not work, unlike in, say, Haskell.



We are concerned mostly with the first use here; for example, in this line:



(t.year // 10 * 10).value_counts().sort_index().plot(kind='bar')


Without the parentheses, you would be calling that chain of methods on 10, which wouldn't make sense. Clearly, you want to call them on the result of the parenthesised expression.



Now, in mathematics, brackets can also be used to denote precedence, in conjunction with parentheses, in a case where multiple nested parentheses would be confusing. For example, the two may be equivalent in mathematics:



[(1 + 2) * 3] ** 4
((1 + 2) * 3) ** 4


However, that is not the case in Python: ((1 + 2) * 3) ** 4 can be evaluated, whereas [(1 + 2) * 3] ** 4 is a TypeError, since the part within brackets resolves to a list, and you can't perform exponentiation on lists.



Rather, what happens in something like titles[titles.year >= 1950] is not directly relevant to precedence (though of course anything outside the brackets will not be part of the inner expression).



Instead, the brackets represent indexing; in some way, the value of titles.year >= 1950 is used to get elements from titles (this is done using overloading of the __getitem__ dunder method).



The exact nature of this indexing may differ; lists take integers, dicts take any hashable object and pd.Series take, among other things, boolean pd.Series (that is what is happening here), but they ultimately represent some way to subset the indexed object.



Semantically, therefore, we can see that brackets mean something different from parentheses, and are not interchangeable.



For completeness, using brackets as opposed to parentheses has one tangible benefit: it permits reassignment, because it automatically delegates to either __setitem__ or __getitem__, depending on whether assignment is being performed.



Therefore, you could do something like titles[titles.year >= 1950] = 'Nothing' if you wanted. However, in all cases, titles(titles.year >= 1950) = 'Nothing' delegates to __call_, and therefore will fail in the following way:



SyntaxError: can't assign to function call





share|improve this answer















This is not about lists vs pd.Series, but rather about the function of parentheses (()) vs brackets ([]) in Python.



Parentheses are used in two main cases: to modify the order of precedence of operations, and to delimit arguments when calling functions.



The difference between 1 + 2 * 3 and (1 + 2) * 3 is obvious, and if you want to pass a and b to a function f, f a b will not work, unlike in, say, Haskell.



We are concerned mostly with the first use here; for example, in this line:



(t.year // 10 * 10).value_counts().sort_index().plot(kind='bar')


Without the parentheses, you would be calling that chain of methods on 10, which wouldn't make sense. Clearly, you want to call them on the result of the parenthesised expression.



Now, in mathematics, brackets can also be used to denote precedence, in conjunction with parentheses, in a case where multiple nested parentheses would be confusing. For example, the two may be equivalent in mathematics:



[(1 + 2) * 3] ** 4
((1 + 2) * 3) ** 4


However, that is not the case in Python: ((1 + 2) * 3) ** 4 can be evaluated, whereas [(1 + 2) * 3] ** 4 is a TypeError, since the part within brackets resolves to a list, and you can't perform exponentiation on lists.



Rather, what happens in something like titles[titles.year >= 1950] is not directly relevant to precedence (though of course anything outside the brackets will not be part of the inner expression).



Instead, the brackets represent indexing; in some way, the value of titles.year >= 1950 is used to get elements from titles (this is done using overloading of the __getitem__ dunder method).



The exact nature of this indexing may differ; lists take integers, dicts take any hashable object and pd.Series take, among other things, boolean pd.Series (that is what is happening here), but they ultimately represent some way to subset the indexed object.



Semantically, therefore, we can see that brackets mean something different from parentheses, and are not interchangeable.



For completeness, using brackets as opposed to parentheses has one tangible benefit: it permits reassignment, because it automatically delegates to either __setitem__ or __getitem__, depending on whether assignment is being performed.



Therefore, you could do something like titles[titles.year >= 1950] = 'Nothing' if you wanted. However, in all cases, titles(titles.year >= 1950) = 'Nothing' delegates to __call_, and therefore will fail in the following way:



SyntaxError: can't assign to function call






share|improve this answer














share|improve this answer



share|improve this answer








edited 2 hours ago

























answered 2 hours ago









gmdsgmds

10.4k1037




10.4k1037







  • 1





    "Now, in mathematics, brackets can also be used to denote precedence, in conjunction with parentheses, in a case where multiple nested parentheses would be confusing." This might hit on the main confusion if the OP is familiar with this usage in algebra.

    – Code-Apprentice
    2 hours ago












  • Wow, thank you for the fulsome response. Yes, while my background in algebra is small, that has definitely caused me some confusion learning Python. This is the point - [] vs (). In particular, in Pandas. I am trying to be able to understand the logic, (hence my internal mentalese). So in Pandas, are [] for indexing and not making a series?

    – DataNoob7
    1 hour ago











  • @DataNoob7 Remember that indexing creates some form of subset! So, if you have a Series, you can index it to get another Series. If you mean from raw data, then that's a function call - something like pd.Series(data).

    – gmds
    1 hour ago











  • @gmds Stupid question - How is indexing defined in computer science. To me, the word "indexing" is just creating a "table of contents" to identify different parts of something. But you haven't actually extracted anything yet. So your phrase "indexing creates some form of subset" throws me off. To me you are just assigning a number, a letter, etc to your dataframe so you have not taken a subset of anything yet?

    – DataNoob7
    1 hour ago













  • 1





    "Now, in mathematics, brackets can also be used to denote precedence, in conjunction with parentheses, in a case where multiple nested parentheses would be confusing." This might hit on the main confusion if the OP is familiar with this usage in algebra.

    – Code-Apprentice
    2 hours ago












  • Wow, thank you for the fulsome response. Yes, while my background in algebra is small, that has definitely caused me some confusion learning Python. This is the point - [] vs (). In particular, in Pandas. I am trying to be able to understand the logic, (hence my internal mentalese). So in Pandas, are [] for indexing and not making a series?

    – DataNoob7
    1 hour ago











  • @DataNoob7 Remember that indexing creates some form of subset! So, if you have a Series, you can index it to get another Series. If you mean from raw data, then that's a function call - something like pd.Series(data).

    – gmds
    1 hour ago











  • @gmds Stupid question - How is indexing defined in computer science. To me, the word "indexing" is just creating a "table of contents" to identify different parts of something. But you haven't actually extracted anything yet. So your phrase "indexing creates some form of subset" throws me off. To me you are just assigning a number, a letter, etc to your dataframe so you have not taken a subset of anything yet?

    – DataNoob7
    1 hour ago








1




1





"Now, in mathematics, brackets can also be used to denote precedence, in conjunction with parentheses, in a case where multiple nested parentheses would be confusing." This might hit on the main confusion if the OP is familiar with this usage in algebra.

– Code-Apprentice
2 hours ago






"Now, in mathematics, brackets can also be used to denote precedence, in conjunction with parentheses, in a case where multiple nested parentheses would be confusing." This might hit on the main confusion if the OP is familiar with this usage in algebra.

– Code-Apprentice
2 hours ago














Wow, thank you for the fulsome response. Yes, while my background in algebra is small, that has definitely caused me some confusion learning Python. This is the point - [] vs (). In particular, in Pandas. I am trying to be able to understand the logic, (hence my internal mentalese). So in Pandas, are [] for indexing and not making a series?

– DataNoob7
1 hour ago





Wow, thank you for the fulsome response. Yes, while my background in algebra is small, that has definitely caused me some confusion learning Python. This is the point - [] vs (). In particular, in Pandas. I am trying to be able to understand the logic, (hence my internal mentalese). So in Pandas, are [] for indexing and not making a series?

– DataNoob7
1 hour ago













@DataNoob7 Remember that indexing creates some form of subset! So, if you have a Series, you can index it to get another Series. If you mean from raw data, then that's a function call - something like pd.Series(data).

– gmds
1 hour ago





@DataNoob7 Remember that indexing creates some form of subset! So, if you have a Series, you can index it to get another Series. If you mean from raw data, then that's a function call - something like pd.Series(data).

– gmds
1 hour ago













@gmds Stupid question - How is indexing defined in computer science. To me, the word "indexing" is just creating a "table of contents" to identify different parts of something. But you haven't actually extracted anything yet. So your phrase "indexing creates some form of subset" throws me off. To me you are just assigning a number, a letter, etc to your dataframe so you have not taken a subset of anything yet?

– DataNoob7
1 hour ago






@gmds Stupid question - How is indexing defined in computer science. To me, the word "indexing" is just creating a "table of contents" to identify different parts of something. But you haven't actually extracted anything yet. So your phrase "indexing creates some form of subset" throws me off. To me you are just assigning a number, a letter, etc to your dataframe so you have not taken a subset of anything yet?

– DataNoob7
1 hour ago














3














Square brackets are used for indexes on lists and dictionaries (and things that act like these). On the other hand, parentheses are used for a variety of reasons. In this case, they are used for grouping in (t.year // 10 * 10) or as a function call in value_counts() and other places.



In the case of a library like pandas, whether you use indexing notation with [] or a function call is entirely determined by the implementation of the library. You can learn these details through tutorials and the library's documentation.



Before digging deeper into the pandas library, I suggest that you study the basics of Python syntax. The official tutorial is a good place to start.



On a side note, when you write code, do not make each line as complex as what you see in these examples. You should instead break things into smaller pieces and assign intermediate parts to variables. For example, you can take



(t.year // 10 * 10).value_counts().sort_index().plot(kind='bar')


and turn it into



decade = (t.year // 10 * 10)
counts = decated.value_counts()
sorted = counts.sort_index()
sorted.plot(kind='bar')





share|improve this answer




















  • 1





    I have to agree. If just starting out (especially if you're new to programming in general), start with python basics before jumping into the data science part w/ pandas, numpy, etc.

    – Mark Ribau
    2 hours ago











  • @anyone I know sorted is a bad name here because of the builtin function. If anyone has a better suggestion, feel free to edit.

    – Code-Apprentice
    2 hours ago











  • What about sorted_counts, or, to be more specific (and, unfortunately, verbose), index_sorted_counts?

    – gmds
    2 hours ago












  • I have started "Python basics" through other means, but I will check out the official tutorial. I have a lot of data that I need to analyze for work(many datasets ranging from 700k to 40 million), so I need to accelerate this though. The frustrating part is that I know what I have to, but it is translating it into Python code that is very difficult. I understood [] to denote a series in pandas, but it is also indexing? Indexing outside of pandas? To the point of code length - maybe that is the issue.

    – DataNoob7
    1 hour ago















3














Square brackets are used for indexes on lists and dictionaries (and things that act like these). On the other hand, parentheses are used for a variety of reasons. In this case, they are used for grouping in (t.year // 10 * 10) or as a function call in value_counts() and other places.



In the case of a library like pandas, whether you use indexing notation with [] or a function call is entirely determined by the implementation of the library. You can learn these details through tutorials and the library's documentation.



Before digging deeper into the pandas library, I suggest that you study the basics of Python syntax. The official tutorial is a good place to start.



On a side note, when you write code, do not make each line as complex as what you see in these examples. You should instead break things into smaller pieces and assign intermediate parts to variables. For example, you can take



(t.year // 10 * 10).value_counts().sort_index().plot(kind='bar')


and turn it into



decade = (t.year // 10 * 10)
counts = decated.value_counts()
sorted = counts.sort_index()
sorted.plot(kind='bar')





share|improve this answer




















  • 1





    I have to agree. If just starting out (especially if you're new to programming in general), start with python basics before jumping into the data science part w/ pandas, numpy, etc.

    – Mark Ribau
    2 hours ago











  • @anyone I know sorted is a bad name here because of the builtin function. If anyone has a better suggestion, feel free to edit.

    – Code-Apprentice
    2 hours ago











  • What about sorted_counts, or, to be more specific (and, unfortunately, verbose), index_sorted_counts?

    – gmds
    2 hours ago












  • I have started "Python basics" through other means, but I will check out the official tutorial. I have a lot of data that I need to analyze for work(many datasets ranging from 700k to 40 million), so I need to accelerate this though. The frustrating part is that I know what I have to, but it is translating it into Python code that is very difficult. I understood [] to denote a series in pandas, but it is also indexing? Indexing outside of pandas? To the point of code length - maybe that is the issue.

    – DataNoob7
    1 hour ago













3












3








3







Square brackets are used for indexes on lists and dictionaries (and things that act like these). On the other hand, parentheses are used for a variety of reasons. In this case, they are used for grouping in (t.year // 10 * 10) or as a function call in value_counts() and other places.



In the case of a library like pandas, whether you use indexing notation with [] or a function call is entirely determined by the implementation of the library. You can learn these details through tutorials and the library's documentation.



Before digging deeper into the pandas library, I suggest that you study the basics of Python syntax. The official tutorial is a good place to start.



On a side note, when you write code, do not make each line as complex as what you see in these examples. You should instead break things into smaller pieces and assign intermediate parts to variables. For example, you can take



(t.year // 10 * 10).value_counts().sort_index().plot(kind='bar')


and turn it into



decade = (t.year // 10 * 10)
counts = decated.value_counts()
sorted = counts.sort_index()
sorted.plot(kind='bar')





share|improve this answer















Square brackets are used for indexes on lists and dictionaries (and things that act like these). On the other hand, parentheses are used for a variety of reasons. In this case, they are used for grouping in (t.year // 10 * 10) or as a function call in value_counts() and other places.



In the case of a library like pandas, whether you use indexing notation with [] or a function call is entirely determined by the implementation of the library. You can learn these details through tutorials and the library's documentation.



Before digging deeper into the pandas library, I suggest that you study the basics of Python syntax. The official tutorial is a good place to start.



On a side note, when you write code, do not make each line as complex as what you see in these examples. You should instead break things into smaller pieces and assign intermediate parts to variables. For example, you can take



(t.year // 10 * 10).value_counts().sort_index().plot(kind='bar')


and turn it into



decade = (t.year // 10 * 10)
counts = decated.value_counts()
sorted = counts.sort_index()
sorted.plot(kind='bar')






share|improve this answer














share|improve this answer



share|improve this answer








edited 2 hours ago

























answered 2 hours ago









Code-ApprenticeCode-Apprentice

49.8k1492181




49.8k1492181







  • 1





    I have to agree. If just starting out (especially if you're new to programming in general), start with python basics before jumping into the data science part w/ pandas, numpy, etc.

    – Mark Ribau
    2 hours ago











  • @anyone I know sorted is a bad name here because of the builtin function. If anyone has a better suggestion, feel free to edit.

    – Code-Apprentice
    2 hours ago











  • What about sorted_counts, or, to be more specific (and, unfortunately, verbose), index_sorted_counts?

    – gmds
    2 hours ago












  • I have started "Python basics" through other means, but I will check out the official tutorial. I have a lot of data that I need to analyze for work(many datasets ranging from 700k to 40 million), so I need to accelerate this though. The frustrating part is that I know what I have to, but it is translating it into Python code that is very difficult. I understood [] to denote a series in pandas, but it is also indexing? Indexing outside of pandas? To the point of code length - maybe that is the issue.

    – DataNoob7
    1 hour ago












  • 1





    I have to agree. If just starting out (especially if you're new to programming in general), start with python basics before jumping into the data science part w/ pandas, numpy, etc.

    – Mark Ribau
    2 hours ago











  • @anyone I know sorted is a bad name here because of the builtin function. If anyone has a better suggestion, feel free to edit.

    – Code-Apprentice
    2 hours ago











  • What about sorted_counts, or, to be more specific (and, unfortunately, verbose), index_sorted_counts?

    – gmds
    2 hours ago












  • I have started "Python basics" through other means, but I will check out the official tutorial. I have a lot of data that I need to analyze for work(many datasets ranging from 700k to 40 million), so I need to accelerate this though. The frustrating part is that I know what I have to, but it is translating it into Python code that is very difficult. I understood [] to denote a series in pandas, but it is also indexing? Indexing outside of pandas? To the point of code length - maybe that is the issue.

    – DataNoob7
    1 hour ago







1




1





I have to agree. If just starting out (especially if you're new to programming in general), start with python basics before jumping into the data science part w/ pandas, numpy, etc.

– Mark Ribau
2 hours ago





I have to agree. If just starting out (especially if you're new to programming in general), start with python basics before jumping into the data science part w/ pandas, numpy, etc.

– Mark Ribau
2 hours ago













@anyone I know sorted is a bad name here because of the builtin function. If anyone has a better suggestion, feel free to edit.

– Code-Apprentice
2 hours ago





@anyone I know sorted is a bad name here because of the builtin function. If anyone has a better suggestion, feel free to edit.

– Code-Apprentice
2 hours ago













What about sorted_counts, or, to be more specific (and, unfortunately, verbose), index_sorted_counts?

– gmds
2 hours ago






What about sorted_counts, or, to be more specific (and, unfortunately, verbose), index_sorted_counts?

– gmds
2 hours ago














I have started "Python basics" through other means, but I will check out the official tutorial. I have a lot of data that I need to analyze for work(many datasets ranging from 700k to 40 million), so I need to accelerate this though. The frustrating part is that I know what I have to, but it is translating it into Python code that is very difficult. I understood [] to denote a series in pandas, but it is also indexing? Indexing outside of pandas? To the point of code length - maybe that is the issue.

– DataNoob7
1 hour ago





I have started "Python basics" through other means, but I will check out the official tutorial. I have a lot of data that I need to analyze for work(many datasets ranging from 700k to 40 million), so I need to accelerate this though. The frustrating part is that I know what I have to, but it is translating it into Python code that is very difficult. I understood [] to denote a series in pandas, but it is also indexing? Indexing outside of pandas? To the point of code length - maybe that is the issue.

– DataNoob7
1 hour ago











2














t = titles
(t.year // 10 * 10).value_counts().sort_index().plot(kind='bar')


titles is a data frame. year is a column in that frame. In order, the operations are



  • Divide the year by 10 (integer division) and multiply by 10. This truncates the last digit to 0, so that each year is the beginning of its decade. The result of this is another column, the same length as the original.

  • Count the values; this will produce a new table with an entry (year, frequency) for each decade-year.

  • Sort this table by the default index

  • Make a bar plot of the result.

Does that get you going?






share|improve this answer























  • Thanks - I can understand what the code means, it's understanding the logic of why the code is written as such (see my original post).

    – DataNoob7
    1 hour ago















2














t = titles
(t.year // 10 * 10).value_counts().sort_index().plot(kind='bar')


titles is a data frame. year is a column in that frame. In order, the operations are



  • Divide the year by 10 (integer division) and multiply by 10. This truncates the last digit to 0, so that each year is the beginning of its decade. The result of this is another column, the same length as the original.

  • Count the values; this will produce a new table with an entry (year, frequency) for each decade-year.

  • Sort this table by the default index

  • Make a bar plot of the result.

Does that get you going?






share|improve this answer























  • Thanks - I can understand what the code means, it's understanding the logic of why the code is written as such (see my original post).

    – DataNoob7
    1 hour ago













2












2








2







t = titles
(t.year // 10 * 10).value_counts().sort_index().plot(kind='bar')


titles is a data frame. year is a column in that frame. In order, the operations are



  • Divide the year by 10 (integer division) and multiply by 10. This truncates the last digit to 0, so that each year is the beginning of its decade. The result of this is another column, the same length as the original.

  • Count the values; this will produce a new table with an entry (year, frequency) for each decade-year.

  • Sort this table by the default index

  • Make a bar plot of the result.

Does that get you going?






share|improve this answer













t = titles
(t.year // 10 * 10).value_counts().sort_index().plot(kind='bar')


titles is a data frame. year is a column in that frame. In order, the operations are



  • Divide the year by 10 (integer division) and multiply by 10. This truncates the last digit to 0, so that each year is the beginning of its decade. The result of this is another column, the same length as the original.

  • Count the values; this will produce a new table with an entry (year, frequency) for each decade-year.

  • Sort this table by the default index

  • Make a bar plot of the result.

Does that get you going?







share|improve this answer












share|improve this answer



share|improve this answer










answered 2 hours ago









PrunePrune

47k143760




47k143760












  • Thanks - I can understand what the code means, it's understanding the logic of why the code is written as such (see my original post).

    – DataNoob7
    1 hour ago

















  • Thanks - I can understand what the code means, it's understanding the logic of why the code is written as such (see my original post).

    – DataNoob7
    1 hour ago
















Thanks - I can understand what the code means, it's understanding the logic of why the code is written as such (see my original post).

– DataNoob7
1 hour ago





Thanks - I can understand what the code means, it's understanding the logic of why the code is written as such (see my original post).

– DataNoob7
1 hour ago

















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f56140150%2funderstanding-python-syntax-in-lists-vs-series%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Invision Community Contents History See also References External links Navigation menuProprietaryinvisioncommunity.comIPS Community ForumsIPS Community Forumsthis blog entry"License Changes, IP.Board 3.4, and the Future""Interview -- Matt Mecham of Ibforums""CEO Invision Power Board, Matt Mecham Is a Liar, Thief!"IPB License Explanation 1.3, 1.3.1, 2.0, and 2.1ArchivedSecurity Fixes, Updates And Enhancements For IPB 1.3.1Archived"New Demo Accounts - Invision Power Services"the original"New Default Skin"the original"Invision Power Board 3.0.0 and Applications Released"the original"Archived copy"the original"Perpetual licenses being done away with""Release Notes - Invision Power Services""Introducing: IPS Community Suite 4!"Invision Community Release Notes

Canceling a color specificationRandomly assigning color to Graphics3D objects?Default color for Filling in Mathematica 9Coloring specific elements of sets with a prime modified order in an array plotHow to pick a color differing significantly from the colors already in a given color list?Detection of the text colorColor numbers based on their valueCan color schemes for use with ColorData include opacity specification?My dynamic color schemes

Tom Holland Mục lục Đầu đời và giáo dục | Sự nghiệp | Cuộc sống cá nhân | Phim tham gia | Giải thưởng và đề cử | Chú thích | Liên kết ngoài | Trình đơn chuyển hướngProfile“Person Details for Thomas Stanley Holland, "England and Wales Birth Registration Index, 1837-2008" — FamilySearch.org”"Meet Tom Holland... the 16-year-old star of The Impossible""Schoolboy actor Tom Holland finds himself in Oscar contention for role in tsunami drama"“Naomi Watts on the Prince William and Harry's reaction to her film about the late Princess Diana”lưu trữ"Holland and Pflueger Are West End's Two New 'Billy Elliots'""I'm so envious of my son, the movie star! British writer Dominic Holland's spent 20 years trying to crack Hollywood - but he's been beaten to it by a very unlikely rival"“Richard and Margaret Povey of Jersey, Channel Islands, UK: Information about Thomas Stanley Holland”"Tom Holland to play Billy Elliot""New Billy Elliot leaving the garage"Billy Elliot the Musical - Tom Holland - Billy"A Tale of four Billys: Tom Holland""The Feel Good Factor""Thames Christian College schoolboys join Myleene Klass for The Feelgood Factor""Government launches £600,000 arts bursaries pilot""BILLY's Chapman, Holland, Gardner & Jackson-Keen Visit Prime Minister""Elton John 'blown away' by Billy Elliot fifth birthday" (video with John's interview and fragments of Holland's performance)"First News interviews Arrietty's Tom Holland"“33rd Critics' Circle Film Awards winners”“National Board of Review Current Awards”Bản gốc"Ron Howard Whaling Tale 'In The Heart Of The Sea' Casts Tom Holland"“'Spider-Man' Finds Tom Holland to Star as New Web-Slinger”lưu trữ“Captain America: Civil War (2016)”“Film Review: ‘Captain America: Civil War’”lưu trữ“‘Captain America: Civil War’ review: Choose your own avenger”lưu trữ“The Lost City of Z reviews”“Sony Pictures and Marvel Studios Find Their 'Spider-Man' Star and Director”“‘Mary Magdalene’, ‘Current War’ & ‘Wind River’ Get 2017 Release Dates From Weinstein”“Lionsgate Unleashing Daisy Ridley & Tom Holland Starrer ‘Chaos Walking’ In Cannes”“PTA's 'Master' Leads Chicago Film Critics Nominations, UPDATED: Houston and Indiana Critics Nominations”“Nominaciones Goya 2013 Telecinco Cinema – ENG”“Jameson Empire Film Awards: Martin Freeman wins best actor for performance in The Hobbit”“34th Annual Young Artist Awards”Bản gốc“Teen Choice Awards 2016—Captain America: Civil War Leads Second Wave of Nominations”“BAFTA Film Award Nominations: ‘La La Land’ Leads Race”“Saturn Awards Nominations 2017: 'Rogue One,' 'Walking Dead' Lead”Tom HollandTom HollandTom HollandTom Hollandmedia.gettyimages.comWorldCat Identities300279794no20130442900000 0004 0355 42791085670554170004732cb16706349t(data)XX5557367