From Wikipedia, the free encyclopedia
Original file (1,920 × 1,046 pixels, file size: 95 KB, MIME type: image/png )
Summary
Licensing
I, the copyright holder of this work, hereby publish it under the following 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. https://creativecommons.org/licenses/by-sa/4.0 CC BY-SA 4.0 Creative Commons Attribution-Share Alike 4.0 true true
Code
Python3 code used to generate this graph. Data is copied manually from Levada.ru and saved into two separate ASCII files:
approval.txt - approval (%) formatted as comma-separated integers (31,53,65...)
dates.txt - dates of the corresponding approval polls formatted as comma-separated MM.YYYY strings (08.1999,09.1999,10.1999,11.1999...)
from numpy import loadtxt
from matplotlib import pyplot as plt
approval = loadtxt ( 'approval.txt' , delimiter = ',' )
dates = loadtxt ( 'dates.txt' , delimiter = ',' , dtype = str )
dates2 = [ datetime . datetime . strptime ( x , '%m.%Y' ) for x in dates ]
x = dates2
y = approval
plt . plot ( x , y )
plt . ylabel ( 'Approval %' )
plt . title ( 'Vladimir Putin approval percentage (Levada, closed question)' )
plt . grid ( True )
plt . show ()
English Add a one-line explanation of what this file represents
File history
Click on a date/time to view the file as it appeared at that time.
Date/Time Thumbnail Dimensions User Comment
current 22:47, 25 May 2020 1,920 × 1,046 (95 KB) Cloud200 Cross-wiki upload from en.wikipedia.org
File usage
The following 3 pages use this file:
Global file usage
The following other wikis use this file:
Usage on es.wikipedia.org
Usage on kk.wikipedia.org
This file contains additional information, probably added from the digital camera or scanner used to create or digitize it.
If the file has been modified from its original state, some details may not fully reflect the modified file.