Cargando…

Pandas cookbook : recipes for scientific computing, time series analysis and data visualization using Python /

Over 95 hands-on recipes to leverage the power of pandas for efficient scientific computation and data analysis About This Book Use the power of pandas to solve most complex scientific computing problems with ease Leverage fast, robust data structures in pandas to gain useful insights from your data...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Petrou, Theodore (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham, UK : Packt Publishing, 2017.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)
Tabla de Contenidos:
  • Pandas foundations
  • Dissecting the anatomy of a DataFrame
  • Accessing the main DataFrame components
  • Understanding data types
  • Selecting a single column of data as a series
  • Calling series methods
  • Working with operators on a series
  • Chaining series methods together
  • Making the index meaningful
  • Renaming row and column names
  • Creating and deleting columns
  • Essential Chapter 2: DataFrame operations
  • Selecting multiple DataFrame columns
  • Selecting columns with methods
  • Ordering column names sensibly
  • Operating on the entire DataFrame
  • Chaining DataFrame methds together
  • Working with operators on a DataFrame
  • Comparing missing values
  • Transposing the direction of a DataFrame operation
  • Determining college campus diversity
  • Chapter 3: Beginning data analysis
  • Developing a data analysis routine.