Giter VIP home page Giter VIP logo

Comments (3)

hupili avatar hupili commented on May 19, 2024

Thanks @ConnorLi96 ! Clear written feedback. @ChicoXYC can you try to address the comments first? For better explaining certian concept, feel free to ask me. It also helps to link to different reading materials on a certain topic.

from python-for-data-and-media-communication-gitbook.

ChicoXYC avatar ChicoXYC commented on May 19, 2024

@ConnorLi96 @hupili
Thanks so much. Add explanation of array.shape and index, hope it may be helpful for you. If you have more questions, free to ask.

  • Array.shape
>>> b = np.array([[1,2,3],[4,5,6]])    # Create a rank 2 array
>>> print(b.shape)
(2, 3) #the first number means how many elements in this array, in this case, this array has two elements - two lists. The second number means how many sub-elements in each element. In this case, there are 3 values in each list. So, it's like a layer nesting.
>>> print(b[0, 0], b[0, 1], b[1, 0])
1 2 4 #you can access values by their index. Similarly, the first number is to index elements in this array, the second number is to index the sub-elements in each elements.
  • About index in data types

Simply, Index is like the position of one element in the whole list or object, which used to access this element. The index of first element is 0 and increases by integer. The following are examples may help you better understand this.

    String  ‘H     e     l      l      o'
    Index   [0]   [1]   [2]    [3]    [4]
    List    ['a', 'b',  'c',   'd',   'e']
    Index   [0]   [1]   [2]    [3]    [4]

In the list ['a', 'b', 'c', 'd', 'e'], list[0]='a', 0 is the index of 'a' in this list, similarly use in array. We will use more in chapter 3 so that you can get more familiar with this issue.

from python-for-data-and-media-communication-gitbook.

ConnorLi96 avatar ConnorLi96 commented on May 19, 2024

Thanks a lot! This explanation is very useful and help me to understand it totally.

from python-for-data-and-media-communication-gitbook.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.