To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

File:US Seasonal Unemployment.svg

From Wikipedia, the free encyclopedia

Original file(SVG file, nominally 720 × 540 pixels, file size: 150 KB)

Summary

Description
Chart of the seasonal US unemployment rate from the BLS statistics, showing mean, 95% interval and outliers. Puerto Rico has been removed from the data set. Source: ftp://ftp.bls.gov/pub/time.series/la/la.data.3.AllStatesS
Date
Source Own work
Author Autopilot

Source

u <- read.table("la.data.3.AllStatesS", header=T, fill=T)

# Convert the months into fractional years
u$time <- u$year + (as.numeric(u$period) - 1) / 12

# Get just the measurement values (those that end in "03")
m <- u[grep("03$", u$series_id),]

# And ignore the ones that are in Puerto-rico, state code 43
m <- subset(m, series_id != "LASST43000003")

# make the year a factor
m$year <- as.factor(m$year)

# Aggregate all samples into a single year average
# leaving per-state data intact
v <- aggregate(m, list(year=m$year, series_id=m$series_id), mean)

# Aggregate all samples into a per-month average
m2 <- aggregate(m, list(year=m$year, period=m$period), mean, na.rm=T)
m2 <- m2[order(m2$time),]
#m2 <- aggregate(m, list(year=m$year), mean, na.rm=T)

# And generate the box plot for every state
par(family="Times")
par(bty="n")
plot(
	value ~ year,
	data = v,
	ylim = c(0,16),
	main = "US Seasonally Adjusted Unemployment",
	ylab = "Unemployment rate",
	xlab = "Year",
	las=1
)
grid()

# Add the moving average line
par(new=T)
par(bty="n")
plot(
	value ~ time,
	data = m2,
	col = "red",
	type = "l",
	ylim = c(0,16),
	xlim = c(1976,2011),
	main = "",
	xlab = "",
	ylab = "",
	axes = F
);

dev.copy(svg, "US Seasonal Unemployment.svg", width=8, height=6)
dev.off()

Licensing

I, the copyright holder of this work, hereby publish it under the following licenses:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
GNU head Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License.
You may select the license of your choice.

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts

12 December 2010

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current01:30, 13 December 2010Thumbnail for version as of 01:30, 13 December 2010720 × 540 (150 KB)AutopilotAdded trend line
00:41, 13 December 2010Thumbnail for version as of 00:41, 13 December 2010720 × 540 (151 KB)Autopilot{{Information |Description={{en|1=Chart of the seasonal US unemployment rate from the BLS statistics, showing mean, 95% interval and outliers (mostly Puerto Rico). <source lang=sas> # ftp://ftp.bls.gov/pub/time.series/la/la.data.3.AllStatesS u <- read.tab
The following pages on the English Wikipedia use this file (pages on other projects are not listed):

Global file usage

Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.