File:ACPT Contestants.svg

Summary

Description
English: A plot of the total number of contestants attending the American Crossword Puzzle Tournament.
Date
Source Own work
Author Eitanlees
SVG development
InfoField
 
The SVG code is valid.
 
This vector image was created with an unknown SVG tool.
Category:Valid SVG created with Other tools#ACPT%20Contestants.svg
 
Category:Translation possible - SVGThis file uses embedded text that can be easily translated using a text editor.
Python Code
InfoField
click to expand
import altair as alt

URL = 'https://gist.githubusercontent.com/eitanlees/9c75a27ef3a5239e37f3c1d4bc235940/raw/ca1cab54753ddb63f8445715b29b16b7f86cac10/ACPT.csv'

alt.Chart(URL).mark_circle(size=80).encode(
    alt.X('Year:T', 
          axis=alt.Axis(title='Year')
         ), 
    alt.Y('Contestants:Q', 
          axis=alt.Axis(title='Contestants')
         ), 
    alt.Color('Location:N', 
              sort=['Brooklyn, New York', 
                    'Stamford, Connecticut',
                    'Online'
                   ]
             )
)

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, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
Category:CC-BY-SA-4.0#ACPT%20Contestants.svg
Category:Self-published work Category:Attendance statistics Category:American Crossword Puzzle Tournament
Category:American Crossword Puzzle Tournament Category:Attendance statistics Category:CC-BY-SA-4.0 Category:Self-published work Category:Translation possible - SVG Category:Valid SVG created with Other tools