Dont stop
Human Nature
You are not alone
Heal the World
Stranger in Moscow
Man in the Mirror
Gonna be starting something
The Way you make me feel
You rock my world
This is it
Dont stop
Human Nature
You are not alone
Heal the World
Stranger in Moscow
Man in the Mirror
Gonna be starting something
The Way you make me feel
You rock my world
This is it
Edward Tufte in his seminal book talked of lie factor. See image below, and how columbine seems higher than virginia tech thanks to the dotted line even though it had 50% less casualities
http://www.infovis-wiki.net/index.php/Lie_Factor
The “Lie Factor” is a value to describe the relation between the size of effect shown in a graphic and the size of effect shown in the data.
Edward Tufte, Prof. at the Yale University, defined the “Lie Factor” in his book “The Visual Display of Quantitative Information” in 1983.
He states the principle that

Got an interesting query on LinkedIn
Sorry if it sounds like an ad, (but it isnt) I was just blown away from these courses for Rs 450 ~ 8 USD each. Apparently 100,000 students have taken the course which I find dubious since I dont really see a 100,000 data scientists when we try and hire . Still it is a good economical package!

!pip install pyspark
from pyspark import SparkContext,SparkConf
sc=SparkContext()
import os
os.getcwd()
os.chdir('C:\\Users\\Dell\\Desktop')
os.listdir()
#load data
data=sc.textFile('C:\\Users\\Dell\\Desktop\\iris.csv')
type(data)
data.top(1)
data.first()
from pyspark.sql import SparkSession
spark= SparkSession.builder \
.master("local") \
.appName("Data Exploration") \
.getOrCreate()
#load data as Spark DataFrame
data2=spark.read.format("csv") \
.option("header","true") \
.option("mode","DROPMALFORMED") \
.load('C:\\Users\\Dell\\Desktop\\iris.csv')
type(data2)
data2.printSchema()
data2.columns
data2.schema.names
newColumns=['Sepal_Length', 'Sepal_Width', 'Petal_Length', 'Petal_Width', 'Species']
from functools import reduce
data2 = reduce(lambda data2, idx: data2.withColumnRenamed(oldColumns[idx], newColumns[idx]), range(len(oldColumns)), data2)
data2.printSchema()
data2.show()
data2.dtypes
data3 = data2.select('Sepal_Length', 'Sepal_Width', 'Species')
data3.cache()
data3.count()
data3.show()
data3.limit(5)
data3.limit(5).show()
data3.limit(5).limit(2).show()
data4=data2.selectExpr('CAST(Sepal_Length AS INT) AS Sepal_Length')
data4
from pyspark.sql.functions import *
data4.select('Sepal_Length').agg(mean('Sepal_Length')).show()
data5=data2.selectExpr('CAST(Sepal_Length AS INT) AS Sepal_Length','CAST(Petal_Width AS INT) AS Petal_Width','CAST(Sepal_Width AS INT) AS Sepal_Width','CAST(Petal_Length AS INT) AS Petal_Length','Species')
data5
data5.columns
data5.select('Sepal_Length','Species').groupBy('Species').agg(mean("Sepal_Length")).show()
Why do people go to America? Moving involves tremendous emotional, financial and physical expenditure. It is a very different and unique culture full of surprises, your savings will vanish in the expensive dollar economy, and you will have to adjust to a car driven, credit history driven existence.
Why move to America?
The answer lies in the small notion of American dream-
I can criticize, mock , insult the American president when in America- a freedom I am denied in most other countries on the planet
I can worship anyone and anything, openly, loudly and not be afraid.
I can get a good living even as a blue collar worker and have unlimited opportunities to start y own business or startup with atmost ease.
But above all,
I am free from fear when I am in America. The FBI needs a warrant and the CIA wont hurt me. That is not true of other countries.
Yet with threats of deportation, there is no more freedom from fear. Even to children. Hate crimes against minorities is an unprecedented high (by American standards) and even the press is now mocked (reversing traditional American politics or even politics in other democracies). The Putinization of America is on way and all we do is twiddle on Twitter.
So why move for the American dream?
As someone said, to dream the American dream, you first need to go to sleep.
Amen