Web Development in 2020: What Coding Tools You Should Learn - https://www.freecodecamp.org/news/web-development-2020/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="description" content="Website Name"> | |
<meta name="author" content="Pradeep Singh"> | |
<title>WebPage Title</title> |
• anecdotal evidence: Evidence, often personal, that is collected casually rather than by a well-designed study.
• population: A group we are interested in studying. “Population” often refers to a group of people, but the term is used for other subjects, too.
• cross-sectional study: A study that collects data about a population at a particular point in time.
• cycle: In a repeated cross-sectional study, each repetition of the study is called a cycle.
- pyspark.sql module
- pyspark.streaming module
- pyspark.ml package
- pyspark.mllib package
- pyspark.sql.SparkSession: Main entry point for DataFrame and SQL functionality.
- pyspark.sql.DataFrame: A distributed collection of data grouped into named columns.
- pyspark.sql.Column: A column expression in a DataFrame.
Text Document -> Text pre-processing -> Text parsing & Exploratory Data Analysis -> Text Representation & Feature Engineering -> Modeling and/or Pattern Mining -> Evaluation & Deployment
- Machine Translation
- Speech Recognition
- Sentiment Analysis
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
from bs4 import BeautifulSoup | |
from csv import writer | |
response = requests.get('http://codedemos.com/sampleblog/') | |
soup = BeautifulSoup(response.text, 'html.parser') | |
posts = soup.find_all(class_='post-preview') |
OlderNewer