Curated Video
Apache Spark 3 for Data Engineering and Analytics with Python - Challenge Part 1 - Data Preparation
Let's tackle the first task that was discussed in our previous lesson. You can compare your solution with the solution provided in this video. This clip is from the chapter "Structured API - Spark DataFrame" of the series "Apache Spark 3...
Curated Video
Apache Spark 3 for Data Engineering and Analytics with Python - Columns and Expressions
Let's explore columns and expressions in this session. This clip is from the chapter "Structured API - Spark DataFrame" of the series "Apache Spark 3 for Data Engineering and Analytics with Python".This section primarily focuses on the...
Packt
Compare the breadth-first and depth-first search algorithms : Installation and Setup
From the section: Shortest Time Search (Depth First Search). Set up the environment, download and install the required libraries required for this title. β’ Download python, Graphviz, and Pip. β’ Run the installer and install these...
Programming Electronics Academy
Tiny Arduino Compatible GPS Car Tracker :: James Bond Wanna Be
Isnβt it hard to finish watching a spy movie and not want to do something...spy-like? You know, like having 40 video cameras in your house, dancing the tango with some ambassador, or jumping off a helicopter onto a wild cheetah? Well -...
R Programming 101
How to import data and install packages - R programming for beginners
In this video I look at how to start a project in R, how to import data and how to install a package. Packages like tidyverse or DPLYR or ggplot extend your data analysis capabilities a lot! This video forms part of the R programming for...
Curated Video
Complete Python Scripting for Automation - os.path module
OS Module: os.path module This clip is from the chapter "OS Module" of the series "Complete Python Scripting for Automation".In this section, the author introduces OS Module and Basic operation like os.path module, os.system() function...
Curated Video
Apache Spark 3 for Data Engineering and Analytics with Python - Adding, Renaming, and Dropping Columns
In this session, we're going to learn how to add, rename, and drop columns. This clip is from the chapter "Structured API - Spark DataFrame" of the series "Apache Spark 3 for Data Engineering and Analytics with Python".This section...
Curated Video
Julia for Data Science (Video 10)
Julia is an easy, fast, open source language that if written well performs nearly as well as low-level languages such as C and FORTRAN. Its design is a dance between specialization and abstraction, providing high machine performance...
TLDR News
What Will Happen To The Irish Border After Brexit? - Brexit Explained
One of the biggest issues the UK faces in Brexit negotiations is working out how the border between Ireland and Northern Ireland will operate. The UK will share a border with an EU country which means the current open borders may no...
Curated Video
Complete Python Scripting for Automation - Simple exception handling to changing current working directory
Functions: Simple exception handling to changing current working directory This clip is from the chapter "Functions" of the series "Complete Python Scripting for Automation".You will learn how to define a Function, converting simple code...
Curated Video
Mastering Swift 2 Programming (Video 25)
Swift 2 is a multi-paradigm programming language that has expressive features familiar to modern functional languages, and does not forget the object-oriented features of Objective-C. Things that took a block of code in Objective-C are...
APMonitor
Import Data and Analyze with Python
Python programming language allows sophisticated data analysis and visualization. This tutorial is a basic step-by-step introduction on how to import a text file (CSV), perform simple data analysis, export the results as a text file, and...
Packt
Create visual representations of data that models real-world phenomena or processes : Scatter Plots
From the section: Data Visualization. In this section you will learn about data visualization, matplotlib library, bar charts, line charts and scatter plots. Thereβs also an activity for data visualization. Data Visualization: Scatter Plots
Curated Video
Apache Spark 3 for Data Engineering and Analytics with Python - Challenge Part 3 - Prepare 2019 Data
In the session, we will address the first task of the challenge that was discussed in the previous video. We will be preparing 2019 data and modularizing our programs. This clip is from the chapter "Structured API - Spark DataFrame" of...
Curated Video
Apache Spark 3 for Data Engineering and Analytics with Python - Challenge Part 2 - Rearrange the Schema
Let's work on the second part of the challenge. In this session, we will be changing some datatypes, rename a few columns, drop some columns, and add new columns. This clip is from the chapter "Structured API - Spark DataFrame" of the...
Curated Video
Apache Spark 3 for Data Engineering and Analytics with Python - Distinct Drop Duplicates Order By
Depending on the dataset that you are working with, you may require a unique set of rows. Let's explore how to get unique set of rows, drop duplicates, and sort/order the data frame. This clip is from the chapter "Structured API - Spark...
Curated Video
Python for Network Forensics 1.4: Importing Scapy Modules
In this video, we will design a Python based Scapy tool to automate our network analysis. β’ Familiarize ourselves with common Python data structures β’ Learn to import 3rd party modules into our own application β’ Unleash the power of...
Curated Video
Python 3: Project-based Python, Algorithms, Data Structures - Recursion mini-project 2 - Factorial
Build a function that generates lists of integers of various sizes and ranges This clip is from the chapter "Algorithms - Sort, performance, complexity and big O notation" of the series "Python 3: Project-based Python, Algorithms, Data...
Curated Video
CompTIA Security+ Certification SY0-601: The Total Course - Touring Certificates
Mike tours various certificates in this episode. This clip is from the chapter "Cryptography" of the series "CompTIA Security+ Certification SY0-601: The Total Course".This section introduces you to cryptography.
The March of Time
1953: GOA, INDIA
MOT 1953: GOA, INDIA: MURMAGAO HARBOR: VS Customs agents looking at import items for tariff duty charges, weighing & checking silk robes, examining Swiss watches, small pearls from Iran examined by hand, pearls pouring from bag onto...
Packt
Create a computer vision system using decision tree algorithms to solve a real-world problem : Introduction to MatPlotLib
From the section: Python Crash Course [Optional]. In this section, weβll continue diving into Python data structures with tuples and dictionaries, functions, Boolean Operations and Loops, and libraries like Pandas, MatPlotLib and Seaborn...
Curated Video
Master Java Web Services and REST API with Spring Boot- Step 01 - Initialize a Spring Web Services application with Spring Boot
SOAP Web Services with Spring and Spring Boot: Step 01 - Initialize a Spring Web Services application with Spring Boot This clip is from the chapter "SOAP Web Services with Spring and Spring Boot" of the series "Master Java Web Services...
Packt
Data Seed Script
This video focuses on data seed script. This clip is from the chapter "Getting Started with MongoDB" of the series "MERN E-commerce from Scratch".This section explains how to get started with MongoDB.
APMonitor
Python π If Statements
Statements if and else tell the computer what to do based on a condition that is True or False. The elif statement is an additional if statement when there is more than one switching condition.