Data Frames
Everything on SkillVeris tagged Data Frames — collected across the glossary, study notes, blog, and cheat sheets.
6 resources across 2 libraries
Study Notes(5)
DataFrames Basics
How Spark's DataFrame API represents distributed, schema-aware tabular data and why it outperforms hand-written RDD code.
Running SQL Queries on DataFrames
Learn how to register DataFrames as temporary views and query them with standard SQL syntax, and how SQL and the DataFrame API interoperate under the hood.
DataFrames.jl Basics
An introduction to tabular data manipulation in Julia with DataFrames.jl — creating, inspecting, filtering, grouping, and joining data tables.
Concatenating DataFrames
Using pandas' concat function to stack DataFrames or Series along rows or columns, and how it differs from merge in purpose and alignment behavior.
Merging and Joining DataFrames
How pandas' merge function combines two DataFrames on shared keys using inner, left, right, and outer join logic, and how it compares to the index-based join m…