The Shape of the Other: The Evolution of UFO Sightings by Shape

[This article was first published on Weird Data Science, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

In earlier analyses of the UFO phenomenon, based on the NUFORC dataset, we have examined the global density of sightings, and the relative distribution of sightings against the location of military bases in the United States. All of these analyses have, however, considered individual sightings to be more or less equivalent.

The NUFORC dataset, however, provides much more detailed information on individual sightings. The most significant immediate feature of each report, beyond its time and location, is the recorded shape of each object. Was the reported UFO saucer-shaped? Triangular? A flash of light? Or did the individual see more more than one object moving in formation? By considering this aspect of the data we can interrogate more closely the nature of UFO sightings over the years.

The NUFORC dataset classifies each sighting as one of 46 possible shapes, with approximately three percent of entries not being classified directly. Of those 46, several categories overlap each other; “Triangle”, “triangle”, and “Triangular” are all, for example, possibilities. Additionally, the dataset contains both “other” and “unknown” categories.

With a minimal level of cleaning we are left with 26 categories, including the familiar circular objects, but also “crescent” (2 entries), “hexagon” (1 entry), and “cross” (356 entries). For easier representation and analysis, we have collapsed several infrequent and similar categories together, resulting in eight top-level categories distributed in the following way:

We can clearly see from this that lights are the most commonly-reported extraterrestrial manifestation, closely followed by the category of “round” objects that most closely matches, perhaps, the traditional concept of a UFO sighting. This category does, however, extend to spheres, disks, ovals, domes, eggs, and cones.

This breakdown of frequency is somewhat deceptive: the sightings reported in the NUFORC database span from a reported 1400CE (a roughly-dated cave painting in Texas depicting a saucer-shaped object) to the present day. For reliability, we have discounted reports prior to 1900CE from our analysis. In our data, then, are these sightings consistent over time? Has the form and nature of our extraterrestrial visitors shifted in recent history? Are we naively assuming that all objects are from the same source, and with similar intentions?

At the most mundane level, the total volume of sightings has sharply increased since the early reports in the dataset. The total number of reported sightings in the 1940s was 144 in total, compared with 4934 sightings in 2017 alone, and a peak of 8651 sightings in 2014.

Broken down by category, the total number of sightings since 1945 is shown below. We have removed sightings prior to 1945 from this diagram, as they were sufficiently low in volume that they were not visible. The most marked rise in sightings begins in the mid-1990s, with 502 sightings in 1994 rising to 1467 in 1995, with the overall rising trend following until its peak in 2014.

Count of sightings by shape over time.

Count of sightings by shape over time. (PDF Version.)

To understand the specific nature of visitations, however, it is useful to view sightings as a proportion of the total, rather than their absolute numbers.

Proportion of UFO sightings by shape over time.

Proportion of UFO sightings by shape over time. (PDF Version.)

It is clear that, allowing for the overall increase in numbers, the proportion of generically round UFOs has reduced since the 1950s, when they clearly dominated. The most significant increase has been the rise in triangular sightings, including “delta” and “chevron” shaped craft. This conceivably tracks the development of terrestrial military aircraft towards “delta wing” and similar profiles.

Since the mid-90s there have been a marked increase in sightings reported simply as “lights” — flashes, fireballs, flares, and similar. From 2000 onwards, the relative proportions appear to be mainly steady.

For specific cases, 1995 shows an oddly large proportion of unclassified “other” sightings, although these do not seem to be the result of any particular event. The highest proportion of these are in Seattle, with 38 sightings, but are spread fairly evenly throughout the year.

Breaking down sightings according to specific times, rather than year-by-year reveals some other points of interest. Firstly, sightings by month:

Per-month UFO sightings by shape.

Per-month UFO sightings by shape. (PDF Version.)

Sightings are much more common in the Northern hemisphere’s summer months, presumably due to higher numbers of people spending time outside and being in a position to spot anomalous phenomena.

Breaking down sightings by hour, we can see that sightings are far more common at night than during the day, with the lowest volumes of sightings around 08:00, and the highest at 21:00. For both monthly and hourly sightings, the relative proportions of sightings by shape remain relatively constant. We can conclude that UFOs’ activity is unrelated to their shape. This consistency of behaviour suggests that, regardless of their shape, the various forms of UFO, however they disguise themselves, may be drawn from a single source.

Hourly UFO sightings by shape.

Hourly UFO sightings by shape. (PDF Version.)

This is far from a definitive breakdown of UFO behaviour by their shape. In future posts we will explore whether differing shapes of UFO cluster geographically, and the extent to which cotemporaneous sightings can be correlated by their shape and description.

You can keep up to date with our latest statistical esoterica on Twitter at @WeirdDataSci.

As always, keep delving.

Code Note:
In developing this entry we have moved from using the excellent work of Tim Renner in gathering and cleaning the NUFORC UFO dataset, and developed our own scraping code. Most posts here have included source code at the bottom of each entry. As this post relied on more than the usual code, however, and included multiple outputs, we are including only representative code. The full scaping and analysis code will be the focus of a future post.

Show analysis code

Data:

Other:

Proportional Time Series Plot Code:


# Structure of ufo_tbl object output from NUFORC scraping code
Classes ‘tbl_df’, ‘tbl’ and 'data.frame':       114949 obs. of  8 variables:
 $ occurred: POSIXct, format: "1995-02-02 23:00:00" "1995-02-02 19:15:00" "1995-02-02 20:10:00" "1994-12-13 18:55:00" ...
 $ reported: POSIXct, format: "1995-02-02 10:47:00" "1995-02-03 06:06:00" "1995-02-03 10:32:00" "1995-02-03 17:45:00" ...
 $ posted  : POSIXct, format: "2003-02-05" "2003-03-04" "2003-03-21" "2003-03-21" ...
 $ location: chr  "Shady Grove, OR" "Denmark, WI" "Traverse City, MI" "Murphy, NC" ...
 $ shape   : chr  "Other" "Round" "Other" "Other" ...
 $ duration: chr  "15 min" "75 min" "2 min (?)" "" ...
 $ details : chr  "Man and wife witness very bright, moving light over ridge to southwest.  Flashing green & red lights. Good rept." "Caller, and apparently several other people, witnessed multiple strange craft streaking through the night sky i"| __truncated__ "Four children left home to go sledding on a hill located approximately 500 yards away.  At approximately 2010 h"| __truncated__ "Woman reports seeing strange, lighted obj. with  \"arms.\"  Many witnesses and written reports." ...
 $ date    : Date, format: "1995-02-02" "1995-02-02" "1995-02-02" "1994-12-13" ...



library(tidyverse)
library(magrittr)
library(lubridate)
library(forcats)

library(ggplot2)
library(ggridges)
library(ggthemes)
library(showtext)

library(viridis)

# Create a summary barplot for UFO activity by shape over time

# Load the data from scraping http://www.nuforc.org
ufo_tbl <- readRDS( "data/ufo_processed.rds" )

# Load font
font_add( "mapfont", "font/Tox Typewriter.ttf")
showtext_auto()

# Shape entries are inconsistent. Manual fixing required. 
# Most inconsistency is lowercase and uppercase, so use str_to_title to fix
# that.
ufo_tbl$shape <- ufo_tbl$shape %>%
	str_to_title %>%
	str_replace( "(^$|Unknown)", "Other" ) %>%
	str_replace( "(Changed|Changing)", "Changing" ) %>%
	str_replace( "(Delta|Triangle|Triangular)", "Triangle" ) %>%
	str_replace( "(Circle|Round|Dome)", "Circle" ) %>%
	# Categories too small to be represented individually
	str_replace( "(Crescent|Pyramid|Hexagon|Dome)", "Other" ) %>%
	str_replace( "Flare", "Light" )

# Further category combination for frequency plot
ufo_tbl$shape <- ufo_tbl$shape %>%
	str_replace( "(Fireball|Flash)", "Light" ) %>%
	str_replace( "(Sphere|Disk|Oval|Egg|Circle|Cone)", "Round" ) %>%
	str_replace( "(Cigar|Cylinder)", "Cylinder" ) %>%
	str_replace( "Chevron", "Triangle" ) %>%
	str_replace( "(Cross|Diamond|Teardrop)", "Other" ) 

# Cut off at 1900, as earlier sightings are infrequent and unreliable.
# (Unlike those post 1900...)
ufo_tbl <- ufo_tbl %>%
	filter( occurred >= "1900-01-01" ) %>%
	filter( occurred <= "2019-01-01" )

# Proportional frequency of each sighting
ufo_tbl$date <- lubridate::date( ufo_tbl$occurred )
frequency_tbl <- ufo_tbl %>% 
	count( aggr_date = year(occurred), shape ) %>%
	group_by( aggr_date ) %>%
	mutate(freq = n / sum(n))

colnames( frequency_tbl ) <- c( "aggr_date", "shape", "n" , "freq")

gp <- ggplot( frequency_tbl, aes( x=aggr_date, fill=shape, y=freq ) ) + 
	labs( x="Date", y="Sightings\n(Proportion)" ) +
	geom_col( alpha=0.4 ) + 
	scale_fill_viridis( name = "Shape", option="D", discrete=TRUE ) +
	theme_dark() +
	theme( 
			panel.background = element_rect(fill = "#222222", colour = "#222222"),
			plot.background = element_rect(fill = "#222222", colour = "#222222"),
			legend.key = element_rect(fill = "#222222"),
			legend.background = element_rect(fill = "#222222"),
			legend.title = element_text( size=18, color="#eeeeee", family="mapfont", margin = margin( t = 20 ) ),
			legend.text = element_text( size=14, color="#eeeeee", family="mapfont", margin = margin( t = 20 ) ),
			text = element_text( color="#eeeeee", family="mapfont" ),
			axis.title.x = element_text( size=18, color="#eeeeee", family="mapfont", margin = margin( t = 20 ) ),
			axis.title.y = element_text( size=18, color="#eeeeee", family="mapfont", margin = margin( r = 20 ) ),
			axis.text = element_text( size=14, color="#eeeeee", family="mapfont" ),
			panel.grid.major = element_line(colour = "#444444"),
			panel.grid.minor = element_line(colour = "#444444"),
			)

# Cowplot trick for ggtitle
title <- ggdraw() + 
	draw_label("Propotion of UFO Sightings by Shape, 1900-2017", fontfamily="mapfont", colour = "#eeeeee", size=18, hjust=0, vjust=1, x=0.02, y=0.88) +
	draw_label("http://www.weirddatascience.net | @WeirdDataSci", fontfamily="mapfont", colour = "#eeeeee", size=14, hjust=0, vjust=1, x=0.02, y=0.40)

data_label <- ggdraw() +
	draw_label("Data: http://www.nuforc.org", fontfamily="mapfont", colour = "#eeeeee", size=14, hjust=1, x=0.98 ) 

# Remove legend from internal plot
theme_set(theme_cowplot(font_size=4, font_family = "mapfont" ) ) # 

tgp <- plot_grid(title, gp, data_label, ncol=1, rel_heights=c(0.1, 1, 0.1)) 

tgp <- tgp + 
	theme( 
			panel.background = element_rect(fill = "#222222", colour = "#222222"),
			plot.background = element_rect(fill = "#222222", colour = "#222222"),
			) 

save_plot("output/proportion_over_time.pdf", 
							tgp,
							base_width = 16,
							base_height = 9,
			           	base_aspect_ratio = 1.78 )


To leave a comment for the author, please follow the link and comment on their blog: Weird Data Science.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)