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?

Is random forest for regression a 'true' regression?

Slice a list based on an index and items behind it in python

What is the effect of the Feeblemind spell on Ability Score Improvements?

It is as easy as A B C, Figure out U V C from the given relationship

What is this weird d12 for?

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

Were any toxic metals used in the International Space Station?

Is the seat-belt sign activation when a pilot goes to the lavatory standard procedure?

Can my American children re-enter the USA by International flight with a passport card? Being that their passport book has expired

How would you translate "grit" (personality trait) to Chinese?

c++ conditional uni-directional iterator

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

Will consteval functions allow template parameters dependent on function arguments?

Why does SSL Labs now consider CBC suites weak?

I recently started my machine learning PhD and I have absolutely no idea what I'm doing

Polynomial division: Is this trick obvious?

Single word that parallels "Recent" when discussing the near future

My bread in my bread maker rises and then falls down just after cooking starts

What do the "optional" resistor and capacitor do in this circuit?

labelled end points on logic diagram

Why did the soldiers of the North disobey Jon?

Windows 10 lock screen - display my own random images

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

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



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

Log på Navigationsmenu

Wonderful Copenhagen (sang) Eksterne henvisninger | NavigationsmenurSide på frankloesser.comWonderful Copenhagen

Detroit Tigers Spis treści Historia | Skład zespołu | Sukcesy | Członkowie Baseball Hall of Fame | Zastrzeżone numery | Przypisy | Menu nawigacyjneEncyclopedia of Detroit - Detroit TigersTigers Stadium, Detroit, MITigers Timeline 1900sDetroit Tigers Team History & EncyclopediaTigers Timeline 1910s1935 World Series1945 World Series1945 World Series1984 World SeriesComerica Park, Detroit, MI2006 World Series2012 World SeriesDetroit Tigers 40-Man RosterDetroit Tigers Coaching StaffTigers Hall of FamersTigers Retired Numberse