XIV

Source 📝

Original file(1,920 × 1,046 pixels, file size: 95 KB, MIME type: image/png)

Summary

DescriptionVladimir Putin approval (Levada, 2020).png
English: Chart of Vladimir Putin approval for the——whole data set published by, Levada Centr https://www.levada.ru/indikatory/odobrenie-organov-vlasti/
Date
Source Own work
Author Cloud200

Licensing

I, "the copyright holder of this work," hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International 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,"/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.0CC BY-SA 4.0 Creative Commons Attribution-Share Alike 4.0 truetrue

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 = 
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()

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts

25 May 2020

image/png

File history

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

Date/TimeThumbnailDimensionsUserComment
current22:47, 25 May 2020Thumbnail for version as of 22:47, 25 May 20201,920 × 1,046 (95 KB)Cloud200Cross-wiki upload from en.wikipedia.org

File usage

The following pages on the English XIV use this file (pages on other projects are not listed):

Global file usage

The following other wikis use this file:

Metadata

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.

Horizontal resolution39.37 dpc
Vertical resolution39.37 dpc
Software used

Text is available under the Creative Commons Attribution-ShareAlike License. Additional terms may apply.