File:Sweden2010RiksdagPolls.svg

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

Original file(SVG file, nominally 956 × 474 pixels, file size: 94 KB)

Captions

Captions

Add a one-line explanation of what this file represents

Summary[edit]

Description
English: All parliamentary parties' polling performance between the2006 and 2010 Swedish general elections. Graph begins at the 2006 election and ends at the 2010 election. Polls were conducted by various organizations and combined by the Swedish National Broadcaster SVT; see below for details.
Date
Source Own work
 
This W3C-unspecified plot was created with Matplotlib.
Author Hydrox
Other versions

Raw data[edit]

Date Moderate Party Centre Party Liberal People's Party Christian Democrats Social Democratic Party Left Party Green Party Sweden Democrats Others The Alliance Red-Greens
2006
election
26.2% 7.9% 7.5% 6.6% 35.0% 5.9% 5.2% 2.9% 2.8% 48.2% 46.1%
Feb 2007 25.8% 5.9% 5.8% 5.3% 41.4% 5.8% 6.1% 2.7% 1.2% 42.9% 53.3%
May 2007 24.9% 6.7% 5.4% 4.1% 42.6% 5.0% 6.6% 3.0% 1.7% 41.1% 54.2%
Aug 2007 25.0% 6.4% 6.1% 4.2% 41.1% 6.0% 6.6% 3.5% 1.1% 41.7% 53.7%
Nov 2007 21.9% 6.3% 7.5% 4.1% 44.1% 5.4% 6.3% 2.9% 1.5% 39.8% 55.8%
Feb 2008 22.2% 6.1% 6.5% 3.9% 44.2% 5.7% 6.1% 3.4% 1.8% 38.8% 56.0%
May 2008 21.6% 6.2% 6.8% 4.5% 43.8% 5.3% 6.4% 3.5% 1.6% 39.6% 55.3%
Aug 2008 22.5% 5.7% 6.9% 3.9% 43.3% 5.6% 6.7% 3.5% 1.7% 39.1% 55.7%
Nov 2008 26.5% 5.6% 6.6% 4.2% 39.7% 5.5% 6.9% 3.6% 1.3% 43.0% 52.1%
Dec 2008[1] 27.2% 5.5% 7.1% 4.0% 37.1% 6.5% 7.4% 4.5% 0.8% 43.8% 51.0%
Feb 2009 27.8% 5.3% 7.0% 4.1% 37.5% 5.8% 7.2% 3.5% 1.7% 44.2% 50.6%
May 2009 29.7% 5.3% 6.3% 4.2% 33.8% 6.7% 7.6% 3.5% 3.0% 45.5% 48.0%
Aug 2009 27.0% 5.9% 7.8% 4.1% 32.8% 6.5% 9.0% 4.1% 2.9% 44.8% 48.2%
Nov 2009 28.7% 4.7% 6.6% 4.2% 32.8% 5.8% 9.5% 5.5% 2.2% 44.2% 48.1%
Feb 2010 28.4% 4.7% 6.3% 4.6% 33.9% 5.6% 9.7% 4.8% 2.0% 43.9% 49.3%
May 2010 30.8% 4.8% 6.7% 4.5% 32.4% 5.7% 9.5% 4.0% 1.6% 46.8% 47.6%
June 2010 32.4% 4.9% 6.4% 4.4% 30.3% 5.4% 9.8% 4.7% 1.8% 48.1% 45.4%
July 2010 31.6% 5.1% 6.2% 4.7% 30.5% 5.4% 9.5% 4.8% 47.6% 45.4%
August 2010 31.4% 5.1% 6.9% 5.7% 29.5% 5.4% 9.1% 4.7% 49.1% 44.0%
September 2010 31.2% 5.4% 7.9% 5.8% 28.2% 6.3% 8.1% 5.4% 50.3% 42.6%
2010
election
30.06% 6.56% 7.06% 5.60% 30.66% 5.60% 7.34% 5.70% 1.43% 49.27% 43.60%

Note: The poll numbers are taken from the SVT.se "Opinion index", which summarizes the average value from different polling organisations. The numbers on this page may not always be 100% accurately summarized and/or in some cases this page uses inaccurate poll numbers. In cases where inaccurate numbers have been used by this page, the actual accurate numbers from the polling organizations are being used instead.[2]

References[edit]

  1. Gapet halverat mellan partiblocken (in Swedish) Sydsvenskan, 14 December 2008 (retrieved 19 September 2010)
  2. Valet 2010 (in Swedish). Sveriges Television. Retrieved on 19 September 2010.

Diagram source code[edit]

Diagram created in Python with mathplotlib, thanks to Wereon for inspiration.

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from pylab import *
import datetime

rc('figure', figsize=(11.75,5))
rc('font', family='sans-serif')

date = lambda y, m, d: date2num(datetime.date(y,m,d))

seriesDate = [ 
    date(2006,9,17),
    date(2007,2,1),
    date(2007,5,1),
    date(2007,7,1),
    date(2007,11,1),
    date(2008,2,1),
    date(2008,5,1),
    date(2008,7,1),
    date(2008,11,1),
    date(2008,12,1),
    date(2009,2,1),
    date(2009,5,1),
    date(2009,7,1),
    date(2009,11,1),
    date(2010,2,1),
    date(2010,5,1),
    date(2010,6,1),
    date(2010,7,1),
    date(2010,8,1),
    date(2010,9,1),
    date(2010,9,19)
]

seriesPoll = [
    #   M     C      FP      KD        S      V      MP      SD     ÖVR       Al     R-G
    [26.2,  7.9,    7.5,    6.6,    35.0,   5.9,    5.2,    2.9,    2.8,    48.2,   46.1], # 2006 election
    [25.8,  5.9,    5.8,    5.3,    41.4,   5.8,    6.1,    2.7,    1.2,    42.9,   53.3],
    [24.9,  6.7,    5.4,    4.1,    42.6,   5.0,    6.6,    3.0,    1.7,    41.1,   54.2],
    [25.0,  6.4,    6.1,    4.2,    41.1,   6.0,    6.6,    3.5,    1.1,    41.7,   53.7],
    [21.9,  6.3,    7.5,    4.1,    44.1,   5.4,    6.3,    2.9,    1.5,    39.8,   55.8],
    [22.2,  6.1,    6.5,    3.9,    44.2,   5.7,    6.1,    3.4,    1.8,    38.8,   56.0],
    [21.6,  6.2,    6.8,    4.5,    43.8,   5.3,    6.4,    3.5,    1.6,    39.6,   55.3],
    [22.5,  5.7,    6.9,    3.9,    43.3,   5.6,    6.7,    3.5,    1.7,    39.1,   55.7],
    [26.5,  5.6,    6.6,    4.2,    39.7,   5.5,    6.9,    3.6,    1.3,    43.0,   52.1],
    [27.2,  5.5,    7.1,    4.0,    37.1,   6.5,    7.4,    4.5,    0.8,    43.8,   51.0],
    [27.8,  5.3,    7.0,    4.1,    37.5,   5.8,    7.2,    3.5,    1.7,    44.2,   50.6],
    [29.7,  5.3,    6.3,    4.2,    33.8,   6.7,    7.6,    3.5,    3.0,    45.5,   48.0],
    [27.0,  5.9,    7.8,    4.1,    32.8,   6.5,    9.0,    4.1,    2.9,    44.8,   48.2],
    [28.7,  4.7,    6.6,    4.2,    32.8,   5.8,    9.5,    5.5,    2.2,    44.2,   48.1],
    [28.4,  4.7,    6.3,    4.6,    33.9,   5.6,    9.7,    4.8,    2.0,    43.9,   49.3],
    [30.8,  4.8,    6.7,    4.5,    32.4,   5.7,    9.5,    4.0,    1.6,    46.8,   47.6],
    [32.4,  4.9,    6.4,    4.4,    30.3,   5.4,    9.8,    4.7,    1.8,    48.1,   45.4],
    [31.6,  5.1,    6.2,    4.7,    30.5,   5.4,    9.5,    4.8,    1.8,    47.6,   45.4], #ÖVR interpolated
    [31.4,  5.1,    6.9,    5.7,    29.5,   5.4,    9.1,    4.7,    1.8,    49.1,   44.0], #ÖVR interpolated
    [31.2,  5.4,    7.9,    5.8,    28.2,   6.3,    8.1,    5.4,    1.8,    50.3,   42.6], #ÖVR interpolated
    [30.06, 6.56,  7.06,   5.60,   30.66,  5.60,   7.34,   5.70,   1.43,   49.27,  43.60]  #2010 election
]

seriesColor = [
    # M            C         FP          KD         S          V          MP         SD      ÖVR        Al        R-G
    "#52bdec", "#009933", "#0044CC", "#2D338E", "#ff0000", "#b00000", "#00FF00", "#DDDD00", "gray", "#3333FF", "#ff6060"
]
seriesFormat = [
     "o-",       "o--",    "o-",       "o--",     "o-",     "o-",       "o-",     "o-",     "o-",   "o-",     "o-"
]

#                0    1    2     3     4    5    6     7       8            9           10
seriesParty = [ "M", "C", "FP", "KD", "S", "V", "MP", "SD", u"Övriga", u"Alliansen", u"Rödgröna"]

for i in range(len(seriesParty)): # range selects all, use [0,4,9,10] instead for -Coalitions and [1,2,3,5,6,7,8] for -SmallParties
    plot_date(seriesDate, [ d[i] for d in seriesPoll ], seriesFormat[i], lw=3, color=seriesColor[i], label=seriesParty[i])

ylabel('Vote %')
xlabel('Date')
grid(True)

savefig('Sweden2010RiksdagPolls.svg', bbox_inches="tight", pad_inches=.4)

Licensing[edit]

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.

File history

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

Date/TimeThumbnailDimensionsUserComment
current04:26, 24 September 2010Thumbnail for version as of 04:26, 24 September 2010956 × 474 (94 KB)Hydrox (talk | contribs)no legend at all
03:55, 24 September 2010Thumbnail for version as of 03:55, 24 September 20101,001 × 501 (112 KB)Hydrox (talk | contribs)no transparent stripe
03:38, 24 September 2010Thumbnail for version as of 03:38, 24 September 20101,064 × 564 (112 KB)Hydrox (talk | contribs){{Information |Description={{en|1=Polling between Swedish general elections 2006 and 2010. Graph begins at the 2006 election and ends at the 2010 election. Polls were mainly conducted by the Swedish National Broadcaster SVT; see below for details.}} |Sour

File usage on other wikis

The following other wikis use this file: