Wednesday, October 16, 2019
The Best Star Trek Episodes are Quantum Leap Style Ones
Looking at the top 20 rated episodes from imdb https://www.imdb.com/list/ls076657706/
20. Star Trek: Voyager (1995–2001)
Episode: Scorpion (1997)
19. Star Trek: Voyager (1995–2001)
Episode: Blink of an Eye (2000)
18. Star Trek: The Next Generation (1987–1994)
Episode: Tapestry (1993) -QL
17. Star Trek: Deep Space Nine (1993–1999)
Episode: Call to Arms (1997)
16. Star Trek: The Original Series (1966–1969)
Episode: Space Seed (1967)
15. Star Trek: The Original Series (1966–1969)
Episode: The Trouble with Tribbles (1967)
14. Star Trek: The Next Generation (1987–1994)
Episode: Cause and Effect (1992) -QL
13. Star Trek: The Original Series (1966–1969)
Episode: Balance of Terror (1966)
12. Star Trek: The Next Generation (1987–1994)
Episode: Q Who (1989)
11. Star Trek: Deep Space Nine (1993–1999)
Episode: Duet (1993)
10. Star Trek: The Next Generation (1987–1994)
Episode: The Measure of a Man (1989)
9. Star Trek: Deep Space Nine (1993–1999)
Episode: The Visitor (1995) -QL
8. Star Trek: The Next Generation (1987–1994)
Episode: Yesterday's Enterprise (1990) -QL
7. Star Trek: The Original Series (1966–1969)
Episode: Mirror, Mirror (1967) -QL
6. Star Trek: Deep Space Nine (1993–1999)
Episode: In the Pale Moonlight (1998)
5. Star Trek: The Next Generation (1987–1994)
Episode: The Best of Both Worlds: Part II (1990)
4. Star Trek: Deep Space Nine (1993–1999)
Episode: Trials and Tribble-ations (1996) -QL
3. Star Trek: The Next Generation (1987–1994)
Episode: The Best of Both Worlds (1990)
2. Star Trek: The Original Series (1966–1969)
Episode: The City on the Edge of Forever (1967) -QL
1. Star Trek: The Next Generation (1987–1994)
Episode: The Inner Light (1992) -QL
8 of the top 20 marked here with -QL and 6 of the top 10 involve someone else's life or a parallel universe.
Thursday, September 05, 2019
Climate and NFL graphs
I worked out how to combine graphs into one picture in r package this week. This image of Englands weather since 1878 got 7 thousand upvotes on reddit.
This type of graph I found out about here. This is not a particularly interesting graph but I think the animation of 2+ classes of things changing over two dimensions over time is interesting.
Saturday, August 17, 2019
England's Summer Weather
One dataset back to 1878 is the hottest each day got. This is the 'temperatures up to' figure weather forecasts give.
You can see 1976 was hot but also the trend over time. 1976 was very unusual for the 100 previous years. And now it looks fairly normal.
The English dataset goes back to 1659 for average daily temperatures. Here is how those temperatures have changed for June, July, August over that time.
1652-1700: 14.9
1701-1725: 15.2
1725-1750: 15.6
1751-1775: 15.3
1776-1800: 15.6
1801-1825: 15.1
1826-1850: 15.3
1851-1875: 15.3
1876-1900: 15.1
1901-1925: 14.9
1926-1950: 15.6
1951-1975: 15.3
1976-1994: 15:5
1994-2019: 16.0
Wednesday, August 14, 2019
Weather Overflows
The first was Hurricane Orphelia that went outside the range hurricanes are expected in. It went further north than the software was able to map
The second was this week where Mississippi got so hot (121F) that the temperature map could not show it and flipped over to 000.
Friday, March 22, 2019
Ireland Population Density Maps
Wednesday, March 20, 2019
Heatmap of the world
The picture as I said in the first comment on the post was inspired by Ed Hawkins spiral animation of world temperatures and was an attempt to show everything in one picture.
A few outlets picked up the picture. The weather channel put it on facebook without crediting me.
Tableau I found out last year use it to advertise themselves but with no credit to me the original design
Ed Hawkins tweeted about the graph
And in June 2016 we discussed further as I switched Time to the Y axis and made other changes. My point is he tweeted about "'heat-map' representation of global temperature changes since 1850" two years before he published his heat map representation (using stripes). My graphs used the Hadcrut-4 and HadCET datasets
In May 2018 he produced a climate graph (below) with only years not months in the heatmap. At no point has he said that my heatmaps (which were inspired by his global temperatures spiral animation) might have inspired him.
I had produced a heatmap graph with lines for years that he saw in Sept 2017
Hawkins graph has deservidely become famous. And heatmaps are one of the most common visualisation types, which is evidence he could have come up with it on his own anyway. I would like if my ones did inspire him that it got mentioned somewhere. But the big deal here is that global warming is being shown in a popular eye catching way.
Monday, February 25, 2019
February is Hot
Central England has weather data going back a long time. 1772 for daily average temperature and 1878 for maximum and minimum temperatures on each day.
2 times February the 25th since 1772 had an average temperature for the day above 10°C in Central England 1790 with 10.7°C, and 1922 with 11°C
The maximum temperatures observed in central England on the 25th of February were 1922 with 14.1,1953 with 13.1 and 1976 with 13.1 For those 140 years the maximum daily temperature averaged 6.6C.
I put the code to work all this out here. Graph of Feb 25th max temperature shows how weird 20°C is
It takes a while for the HADCET data to be updated. There is a nearby weatherstation http://www.weathercast.co.uk/world-weather/weather-stations/obsid/99060.html when I figure out the relationship between the two it will be possible to do a comparison between today and all the previous years.
Tuesday, February 05, 2019
English soccer is not normal
Baseball wins seem not to follow a normal distribution
There is a great R Package dataset of football results by James Curley here. This engsoccerdata has a function to generate soccer league tables of many countries over a long time period.
league<-maketable_all(df=england[,])
team GP W D L gf ga gd Pts Pos
1 Manchester United 962 604 209 149 1856 847 1009 2021 1
and create a new column for the percentage of wins
league<-league %>%
mutate(PercentW = W / GP)
p<-ggplot(data=league, aes(league$PercentW)) + geom_histogram()
#binwidth=20
p<-p + ggtitle("Percentage wins\n in English football league") + xlab("Percentage Wins") + ylab("Number of Teams")
p<-p+theme_update(plot.title = element_text(hjust = 0.5))
p<-p + theme_bw()
library(fitdistrplus)
library(logspline)
x<-league$PercentW
fit.norm <- fitdist(x, "norm")
plot(fit.norm)
shapiro.test(x)
Shapiro-Wilk normality test
data: x W = 0.96276, p-value = 0.0006663 Which means English football wins really do not have a normal distribution.
Goals per game are also not normally distributed. But I dont think anyone expectes them to be
league<-league %>%
mutate(GoalsPgame = gf / GP)
shapiro.test(league$GoalsPgame)
Shapiro-Wilk normality test data: x W = 0.92134, p-value = 4.818e-07
And for France
Shapiro-Wilk normality test
data: leagueF$PercentW
W = 0.98522, p-value = 0.4699 so French football wins do not have might have (thanks for Paulfor the correction in the comments) a normal distribution. I must check the other leagues in the dataset as behaviour this different is odd.
Thursday, January 10, 2019
The Oldest Irishman Joke
The French king sat opposite him and asked.
'Quid distat inter sottum et Scottum?' (What separates a sot [drunkard] from an Irishman?),
Eriugena replied, 'Tabula tantum' (Only a Table).
I think the gag setup still works 1200 years later.
What separates man from the animals?
The Liffey
Sunday, January 06, 2019
Ireland Carbon reduction by 2030
How much do we need to reduce Carbon by?
We have committed to 'reducing greenhouse gas emissions by 40 per cent (compared to 1990 levels)'. Which is 60% of 56 million tonnes our carbon output by 40%. Which is 33.6 million tonnes of around 42.5% of our current carbon usage.
How would we do this?
On a personal level not an industrial one what would I have to do to reduce my carbon output by 40%? Please correct me if I am wrong here but roughly it seems to be
1. Get rid of my car. (as seen in Show Table: 2.5) 20% of our carbon output is Transport. Electric cars do not seem to be vastly more efficient than petrol ones.
2. Become Vegan. This seems to reduce food Carbon by about 40% .
3. Insulate the house and install energy efficient appliances. This seems to make less impact than cars and meat.
4. Sign up to airtricity. This one is easy enough.
How would this happen?
This all seems asking a lot. On transport Public transport subsidies would have to increase massively immediately. Even then 30% of Irish people live in the countryside which is really hard to do without a car.
It could be that rewilding the countryside means that we do not need to reduce carbon outputs by as much. But that would be a huge undertaking by itself.
Why is all this not being talked about? If I am totally wrong here please explain in the comments how to reduce by 40% in an easier way. If it is that we have to go vegan, live in cities and massively boost public transport starting immediately that seems to be a massive task.
Friday, January 26, 2018
Trumps Year 1
1. Better healthcare. Cover Everybody, cost less and have lower deducables - No things got Worse. America's uninsured rate is on the rise.
2. "If Trump can deliver an average of more than 3% over his 4 years in office I think an impartial observer would agree the economy has done well." Didnt happen in year 1. "The economy grew 2.3 percent in 2017, better than the year before, but far short of what Trump is promising. Officials had focused on 3 percent GDP growth as proof his economic policies were working, and Trump has said it could go far beyond that target."
3. A balanced Budget. Didn't happen 'the House of Representatives passed its version of a tax reform bill that added an estimated $1.4 trillion to the federal deficit over the next decade.' The vote this year was not for an immediate reduction in the deficeit.
4. Infrastructure improvements didn't obviously happen but in fairness this would take time. So it cant be called based on the data that only goes up to 2016
Three of these measures did not succeed this year.
Wednesday, December 06, 2017
The Best Books I Read in 2017
Non fiction
1. The Toaster Project- This seems like you could get it across in a Ted talk. Things are far more complicated then you imagine and getting them as cheap as we do is amazing. But its really funny to follow him for a long time and see the frustrations he goes through learning this. Secondly I found it oddly cheering. No one does anything all we do is add a tiny bit to what the millions around us do so don't take yourself so seriously.
Runners up:
A Farewell to Alms: A Brief Economic History of the World why do loads of us live long well feed lives? doesn't answer the question but gives loads of evidence of what didn't cause it.
Corruption: What Everyone Needs to Know?. corruption as a basic dishonesty seemed really important this year. Why it happens and at can be done about it in a short easy read.
Also very good: Other Minds: The Octopus, Silk Roads, Vermeer's Hat, Fifty Things that Made the Modern Economy, Stubborn Attachments
Fiction
We Have Always Lived in the Castle A creepy southern Gothic story with a very unreliable narrator. I have read loads of Shirley Jackson this year.
Runners up: The Handmaid's Tale
also very good The Death of Ivan Ilych, High-Rise and loads of Ross MacDonald books.
I havent done one of these in year so my favorite non fiction in 2015 was Wood, G.D.: Tambora: The Eruption That Changed the World and in 2016 was Money: The Unauthorised Biography by Martin Felix
I had great fun reading this year. Next year I must stay off twitter and chess.com and read more.
Monday, October 30, 2017
Truncated Prime Pictures
I made the graph dropping the last digit from each prime. The walk looks different but not that different. similar to some of the other walks I calculated
I made a barchart of the counts of digits in prime numbers up to 10138889.
The same graph not including the final digit also shows this truncated view is not normal either. A graph of the truncated counts on all numbers up to 10158737 is 60 million digits
This really does look normal. So it looks like Prime numbers except the least significant digit might be normal but making a walk with them still shows them moving from the origin at too quick a rate to be really a random walk in the digits.
I made a heatmap of which numbers follow each other in the primes up to ten million digits.
and the primes except the last digit
Code is here
Friday, October 27, 2017
More Prime Pictures
Thsi idea is from Walking on real numbers though they did not look at the prime number concatenated.
Using the first 11066873 prime digits if the previous number was smaller go up a step if it was larger go down a step. The path crosses zero the 204 times.
Using the first 2010484 prime digits if the previous number was smaller go up a step if it was larger go down a step. The path crosses zero the 197 times.
I am still not sure these pictures mean anything.
Thursday, October 05, 2017
Number Sequence Walks in One Image
Champernowne Number is similar but there are some differences.
even Numbers
Odd Numbers
Nearly Primes (numbers that are not divisible by 2,3,5,7,11,13,17,19) are added tot he string to walk. This walk will be all primes and a few numbers that aren't. The graph is more similar to the prime graph (and I got the scaling a bit wrong at the start )but I am still surprised at how different it is.
Tuesday, October 03, 2017
Zooming in on the loop in Smarandache Sequence
to draw just this loop part of the image the code is here. Zoomed in the path looks like this
This image contains the 279 primes from 14503 up to 17183
In the 100K image it seems to be the over 2000 primes between 152003 and 178361 that make up this loop part
Sunday, October 01, 2017
Fractal Pattern in the prime numbers
2 add on 3 add on 5 add on 7... to make 2357111317192329
A reddit user improved my earlier code with generators. That old code is here. And using the generators from this code I got a prime number checker from here.
With 10k steps this looks like
100k steps
and a million steps (digits)
Five million digits
1000 digits from primes
100 digits looks like an album cover
Here every one tenth of the total distance changes the colour so roughly the blue part on the top left is the previous image. These are primes in the base 10 which is probably why the pattern repeats like that.
These seem really similar to each other. The Champernowne constant seems to do something similar, so maybe most sequences of natural numbers stuck together make repeating patterns like this. I tested the even and off numbers and they kind of do.
even numbers 100k digits
odd numbers 100k digits
The code is here so you can play with it, find bugs and recreate the images. Thanks to the help to the reddit user who recreated the images in Mathematica, code here as a sanity check.
Numbers from a sequence in the base ten make a similar pattern that gets ten time bigger each round. Which doesn't sound surprising said like that. Still the pictures look cool I think.













































