Skip to content

Instantly share code, notes, and snippets.

@kcsluis
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kcsluis/f0932df3418bc9f1886c to your computer and use it in GitHub Desktop.
Save kcsluis/f0932df3418bc9f1886c to your computer and use it in GitHub Desktop.
NYC Shops, Bar Charts
<!DOCTYPE html>
<meta charset="utf-8">
<style type="text/css">
/* svg {
border: 1px solid #f0f;
}*/
body {
font-family: 'arial', sans-serif;
font-size: 9px;
width: 960px;
margin: 40px auto;
}
h1 {
font-size: 36px;
}
.bar {
fill: steelblue;
}
.bar:hover {
fill: blue;
}
.category_label {
text-align: right;
}
</style>
<body>
<h1>NYC Shops, Categorized</h1>
<div class="mainContainer1"></div>
<h1>NYC Shops, Neighborhoods</h1>
<div class="mainContainer2"></div>
<h1>NYC Shops, Chains</h1>
<div class="mainContainer3"></div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js" charset="utf-8"></script>
<script>
var margin = {top: 1, right: 60, bottom: 1, left: 120};
var width = 960 - margin.left - margin.right,
height = 10 - margin.top - margin.bottom;
var xScale = d3.scale.linear()
.range([0,width]);
function barChart(JSONdata, thisContainer, whatItIs) {
d3.json(JSONdata, function(error, data) {
if (error) throw error;
var xcount = data.map( function (d) { return d.count; });
var xMax = d3.max(xcount);
xScale.domain([0,xMax]);
data.sort( function (a,b) { return b.count - a.count; });
console.log(data);
var container = d3.select("body").select("div." + thisContainer).selectAll("svg.container")
.data(data)
.enter()
.append("svg")
.attr("class", "container")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom);
var svgContainer = container.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
svgContainer
.append("rect")
.attr("class", "bar")
.attr("width", function (d) { return xScale(d.count); })
.attr("height", height)
.attr("x", 0)
.attr("y", 0);
svgContainer
.append("text")
.attr("class", "category_label")
.attr("text-anchor", "end")
.attr("dy", height-1)
.attr("dx", -4)
.text( function (d) { return d[whatItIs]; });
svgContainer
.append("text")
.attr("class", "count_label")
.attr("text-anchor", "start")
.attr("dy", height-1)
.attr("dx", function (d) { return xScale(d.count)+4; })
.text( function (d) { return d.count; });
});
};
barChart("nycShops_categories.json", "mainContainer1", "category");
barChart("nycShops_neighborhoods.json", "mainContainer2", "neighborhood");
barChart("nycShops_chains.json", "mainContainer3", "key");
</script>
[{"category":"Women's Clothing","count":1392},{"category":"Jewelry","count":962},{"category":"Men's Clothing","count":799},{"category":"Accessories","count":659},{"category":"Cosmetics & Beauty Supply","count":644},{"category":"Shoe Stores","count":597},{"category":"Art Galleries","count":589},{"category":"Drugstores","count":509},{"category":"Home Decor","count":349},{"category":"Eyewear & Opticians","count":324},{"category":"Mobile Phones","count":313},{"category":"Florists","count":304},{"category":"Fashion","count":281},{"category":"Furniture Stores","count":263},{"category":"Electronics","count":234},{"category":"Antiques","count":195},{"category":"Hardware Stores","count":185},{"category":"Bookstores","count":184},{"category":"Vintage & Consignment","count":173},{"category":"Used","count":173},{"category":"Convenience Stores","count":172},{"category":"Shopping","count":172},{"category":"Children's Clothing","count":168},{"category":"Leather Goods","count":167},{"category":"Photography Stores & Services","count":164},{"category":"Sports Wear","count":157},{"category":"Cards & Stationery","count":155},{"category":"Bridal","count":154},{"category":"Musical Instruments & Teachers","count":147},{"category":"Watches","count":144},{"category":"Optometrists","count":143},{"category":"Department Stores","count":136},{"category":"Toy Stores","count":133},{"category":"Discount Store","count":120},{"category":"Fabric Stores","count":118},{"category":"Kitchen & Bath","count":117},{"category":"Music & DVDs","count":99},{"category":"Office Equipment","count":98},{"category":"Hobby Shops","count":97},{"category":"Lingerie","count":95},{"category":"Tobacco Shops","count":88},{"category":"Framing","count":84},{"category":"Thrift Stores","count":84},{"category":"Bikes","count":80},{"category":"Gift Shops","count":79},{"category":"Videos & Video Game Rental","count":78},{"category":"Mattresses","count":72},{"category":"Arts & Crafts","count":69},{"category":"Luggage","count":67},{"category":"Art Supplies","count":66},{"category":"Sporting Goods","count":66},{"category":"Newspapers & Magazines","count":66},{"category":"Vitamins & Supplements","count":64},{"category":"Skin Care","count":61},{"category":"Bespoke Clothing","count":59},{"category":"Computers","count":57},{"category":"Formal Wear","count":51},{"category":"Personal Shopping","count":50},{"category":"Baby Gear & Furniture","count":50},{"category":"Flowers & Gifts","count":47},{"category":"Interior Design","count":45},{"category":"Shades & Blinds","count":45},{"category":"Printing Services","count":42},{"category":"Appliances","count":41},{"category":"Hair Salons","count":41},{"category":"Sewing & Alterations","count":40},{"category":"Makeup Artists","count":38},{"category":"Hats","count":37},{"category":"Costumes","count":36},{"category":"Outdoor Gear","count":36},{"category":"Watch Repair","count":34},{"category":"Pawn Shops","count":34},{"category":"Home & Garden","count":34},{"category":"Bike Rentals","count":32},{"category":"Nurseries & Gardening","count":31},{"category":"Coffee & Tea","count":31},{"category":"IT Services & Computer Repair","count":31},{"category":"Wholesale Stores","count":30},{"category":"Mobile Phone Repair","count":30},{"category":"Music & Video","count":28},{"category":"Comic Books","count":28},{"category":"Mags","count":28},{"category":"Books","count":28},{"category":"Gold Buyers","count":28},{"category":"Art Schools","count":27},{"category":"Vape Shops","count":27},{"category":"Adult","count":26},{"category":"Knitting Supplies","count":25},{"category":"Jewelry Repair","count":24},{"category":"Wedding Planning","count":24},{"category":"Photographers","count":23},{"category":"Electronics Repair","count":22},{"category":"Pop-up Shops","count":22},{"category":"Shopping Centers","count":22},{"category":"Party & Event Planning","count":21},{"category":"Swimwear","count":21},{"category":"Performing Arts","count":21},{"category":"Internet Service Providers","count":21},{"category":"Building Supplies","count":20},{"category":"Keys & Locksmiths","count":20},{"category":"Barbers","count":19},{"category":"Museums","count":19},{"category":"Venues & Event Spaces","count":18},{"category":"Wigs","count":18},{"category":"Vinyl Records","count":18},{"category":"Bike Repair/Maintenance","count":18},{"category":"Lighting Fixtures & Equipment","count":16},{"category":"Outlet Stores","count":16},{"category":"Flea Markets","count":13},{"category":"Party Supplies","count":13},{"category":"Maternity Wear","count":13},{"category":"Hair Extensions","count":12},{"category":"Piercing","count":12},{"category":"Day Spas","count":12},{"category":"Hair Removal","count":11},{"category":"Cooking Classes","count":11},{"category":"Shoe Repair","count":11},{"category":"Paint Stores","count":10},{"category":"Uniforms","count":10},{"category":"Grocery","count":10},{"category":"Tattoo","count":10},{"category":"Rugs","count":10},{"category":"Print Media","count":10},{"category":"Carpeting","count":9},{"category":"Plus Size Fashion","count":9},{"category":"Video/Film Production","count":9},{"category":"Professional Services","count":9},{"category":"Specialty Schools","count":9},{"category":"Souvenir Shops","count":9},{"category":"Graphic Design","count":8},{"category":"Medical Supplies","count":8},{"category":"Video Game Stores","count":8},{"category":"Specialty Food","count":8},{"category":"Chocolatiers & Shops","count":7},{"category":"Adult Education","count":7},{"category":"Embroidery & Crochet","count":7},{"category":"Bars","count":7},{"category":"Cultural Center","count":7},{"category":"Fitness/Exercise Equipment","count":7},{"category":"Health Markets","count":7},{"category":"Contractors","count":6},{"category":"Ophthalmologists","count":6},{"category":"Home Theatre Installation","count":6},{"category":"Recording & Rehearsal Studios","count":6},{"category":"Fitness & Instruction","count":6},{"category":"Tours","count":6},{"category":"Auction Houses","count":6},{"category":"Local Services","count":5},{"category":"High Fidelity Audio Equipment","count":5},{"category":"Christmas Trees","count":5},{"category":"Furniture Reupholstery","count":5},{"category":"Yoga","count":5},{"category":"Cooking Schools","count":5},{"category":"Festivals","count":5},{"category":"Event Planning & Services","count":5},{"category":"Cafes","count":5},{"category":"Painters","count":5},{"category":"Screen Printing/T-Shirt Printing","count":5},{"category":"Social Clubs","count":4},{"category":"Adult Entertainment","count":4},{"category":"Appraisal Services","count":4},{"category":"Libraries","count":4},{"category":"Lounges","count":4},{"category":"Tutoring Centers","count":4},{"category":"Massage","count":4},{"category":"Cabinetry","count":4},{"category":"Carpet Cleaning","count":4},{"category":"Hair Stylists","count":4},{"category":"Surf Shop","count":4},{"category":"Appliances & Repair","count":4},{"category":"Session Photography","count":4},{"category":"Flooring","count":4},{"category":"Security Systems","count":4},{"category":"Eyelash Service","count":4},{"category":"Restaurants","count":4},{"category":"Delis","count":4},{"category":"Event Photography","count":4},{"category":"Education","count":4},{"category":"Private Tutors","count":4},{"category":"Dry Cleaning & Laundry","count":4},{"category":"Surfing","count":3},{"category":"Art Classes","count":3},{"category":"Music Venues","count":3},{"category":"Musical Instrument Services","count":3},{"category":"Musicians","count":3},{"category":"Bakeries","count":3},{"category":"Community Service/Non-Profit","count":3},{"category":"Customized Merchandise","count":3},{"category":"Videographers","count":3},{"category":"Jazz & Blues","count":3},{"category":"Plumbing","count":3},{"category":"Data Recovery","count":3},{"category":"Trophy Shops","count":3},{"category":"Medical Spas","count":3},{"category":"Local Flavor","count":3},{"category":"Candy Stores","count":3},{"category":"Desserts","count":3},{"category":"Ice Cream & Frozen Yogurt","count":3},{"category":"Web Design","count":3},{"category":"Motorcycle Dealers","count":3},{"category":"Men's Hair Salons","count":2},{"category":"Knife Sharpening","count":2},{"category":"Pet Stores","count":2},{"category":"Psychics & Astrologers","count":2},{"category":"Personal Chefs","count":2},{"category":"Personal Assistants","count":2},{"category":"Screen Printing","count":2},{"category":"Farmers Market","count":2},{"category":"Party Equipment Rentals","count":2},{"category":"Self Storage","count":2},{"category":"Glass & Mirrors","count":2},{"category":"Dance Studios","count":2},{"category":"Nutritionists","count":2},{"category":"Skate Shops","count":2},{"category":"Golf","count":2},{"category":"Nail Salons","count":2},{"category":"Colleges & Universities","count":2},{"category":"Guns & Ammo","count":2},{"category":"Motorcycle Gear","count":2},{"category":"Active Life","count":2},{"category":"Tea Rooms","count":2},{"category":"Health & Medical","count":2},{"category":"Heating & Air Conditioning/HVAC","count":2},{"category":"Home Cleaning","count":2},{"category":"Mass Media","count":2},{"category":"Urgent Care","count":2},{"category":"Beer","count":2},{"category":"Banks & Credit Unions","count":2},{"category":"Marketing","count":2},{"category":"Home Health Care","count":2},{"category":"Home Organization","count":2},{"category":"Arcades","count":2},{"category":"Laser Eye Surgery/Lasik","count":2},{"category":"Language Schools","count":2},{"category":"Landscaping","count":2},{"category":"American (New)","count":2},{"category":"Wine & Spirits","count":2},{"category":"Diving","count":1},{"category":"Preschools","count":1},{"category":"Doctors","count":1},{"category":"Guitar Stores","count":1},{"category":"Private Investigation","count":1},{"category":"Herbs & Spices","count":1},{"category":"Medical Centers","count":1},{"category":"Golf Equipment Shops","count":1},{"category":"Public Relations","count":1},{"category":"Public Services & Government","count":1},{"category":"Pubs","count":1},{"category":"Radio Stations","count":1},{"category":"Real Estate","count":1},{"category":"Horseback Riding","count":1},{"category":"Magicians","count":1},{"category":"Day Camps","count":1},{"category":"Sandwiches","count":1},{"category":"Naturopathic/Holistic","count":1},{"category":"Golf Equipment","count":1},{"category":"Scuba Diving","count":1},{"category":"Nightlife","count":1},{"category":"Notaries","count":1},{"category":"Medical Transportation","count":1},{"category":"Italian","count":1},{"category":"Limos","count":1},{"category":"Shipping Centers","count":1},{"category":"Cupcakes","count":1},{"category":"Couriers & Delivery Services","count":1},{"category":"Cosmetology Schools","count":1},{"category":"Cosmetic Dentists","count":1},{"category":"Opera & Ballet","count":1},{"category":"Skating Rinks","count":1},{"category":"Ski & Snowboard Shops","count":1},{"category":"General Dentistry","count":1},{"category":"Gardeners","count":1},{"category":"Comedy Clubs","count":1},{"category":"Special Education","count":1},{"category":"Food Court","count":1},{"category":"Cocktail Bars","count":1},{"category":"Cheese Shops","count":1},{"category":"Sports Bars","count":1},{"category":"Caterers","count":1},{"category":"Street Vendors","count":1},{"category":"Food","count":1},{"category":"Paint & Sip","count":1},{"category":"Swimming Pools","count":1},{"category":"Metal Fabricators","count":1},{"category":"Car Stereo Installation","count":1},{"category":"Fishing","count":1},{"category":"Television Service Providers","count":1},{"category":"Television Stations","count":1},{"category":"Theater District","count":1},{"category":"Financial Services","count":1},{"category":"Cafeteria","count":1},{"category":"Midtown West","count":1},{"category":"Business Consulting","count":1},{"category":"Travel Services","count":1},{"category":"Tree Services","count":1},{"category":"Financial Advising","count":1},{"category":"Handyman","count":1},{"category":"Brewing Supplies","count":1},{"category":"Insurance","count":1},{"category":"Breakfast & Brunch","count":1},{"category":"Boating","count":1},{"category":"Kitchen Incubators","count":1},{"category":"Bay Ridge","count":1},{"category":"Karaoke","count":1},{"category":"Motorcycle Repair","count":1},{"category":"Mountain Biking","count":1},{"category":"Bagels","count":1},{"category":"Automotive","count":1},{"category":"Arts & Entertainment","count":1},{"category":"Walking Tours","count":1},{"category":"Electricians","count":1},{"category":"Educational Services","count":1},{"category":"Water Delivery","count":1},{"category":"Waxing","count":1},{"category":"Movers","count":1},{"category":"Playgrounds","count":1},{"category":"Gyms","count":1},{"category":"Life Coach","count":1},{"category":"Windows Installation","count":1},{"category":"Pool & Billiards","count":1},{"category":"Door Sales/Installation","count":1},{"category":"Lactation Services","count":1}]
[{"key":"Duane Reade","count":184},{"key":"T-Mobile","count":45},{"key":"AT&T","count":39},{"key":"RadioShack","count":37},{"key":"Verizon Wireless","count":34},{"key":"Staples","count":33},{"key":"CVS Pharmacy","count":32},{"key":"GNC","count":32},{"key":"Cohen's Fashion Optical","count":27},{"key":"The Vitamin Shoppe","count":23},{"key":"Gap","count":23},{"key":"Ricky's NYC","count":23},{"key":"Sephora","count":19},{"key":"J","count":18},{"key":"American Apparel","count":17},{"key":"Banana Republic","count":16},{"key":"Papyrus","count":16},{"key":"LensCrafters","count":15},{"key":"Deals","count":15},{"key":"Walgreens","count":14},{"key":"Aerosoles","count":13},{"key":"Modell's Sporting Goods","count":13},{"key":"MAC Cosmetics","count":13},{"key":"Coach","count":13},{"key":"Foot Locker","count":12},{"key":"Laila Rowe","count":12},{"key":"Victoria's Secret","count":12},{"key":"Jennifer Convertibles","count":11},{"key":"Janovic Paint & Decorating Center","count":11},{"key":"Ann Taylor","count":11},{"key":"Gamestop","count":11},{"key":"Urban Outfitters","count":11},{"key":"Rite Aid","count":10},{"key":"Strawberry","count":10},{"key":"Variazioni","count":10},{"key":"LOFT","count":9},{"key":"Housing Works Thrift Shop","count":9},{"key":"Sunglass Hut","count":9},{"key":"Second Time Around","count":9},{"key":"Sprint Store","count":9},{"key":"Basics Plus","count":9},{"key":"CVS/pharmacy","count":9},{"key":"Nine West","count":9},{"key":"OPTYX","count":8},{"key":"Super Runners Shop","count":8},{"key":"H&M","count":8},{"key":"Michael Kors","count":8},{"key":"Barnes & Noble Booksellers","count":8},{"key":"Design Within Reach","count":8},{"key":"The Art of Shaving","count":8},{"key":"Club Monaco","count":8},{"key":"Zara","count":8},{"key":"Forever 21","count":8},{"key":"Bolton's","count":8},{"key":"Duane Reade Drugs","count":7},{"key":"OMG, The Jeans Store","count":7},{"key":"Brooks Brothers","count":7},{"key":"Apple Store","count":7},{"key":"GameStop","count":7},{"key":"Brooklyn Industries","count":7},{"key":"Barnes & Noble","count":7},{"key":"MetroPCS","count":7},{"key":"Sunglass Hut International","count":7},{"key":"Men's Wearhouse","count":7},{"key":"Lids","count":7},{"key":"Steve Madden","count":7},{"key":"LensCrafters Optique","count":7},{"key":"Salvation Army","count":7},{"key":"Kenneth Cole","count":7},{"key":"Aldo Shoes","count":7},{"key":"CVS","count":7},{"key":"Ralph Lauren","count":6},{"key":"L'Occitane","count":6},{"key":"Burlington Coat Factory","count":6},{"key":"Best Buy","count":6},{"key":"Robert Marc","count":6},{"key":"Radioshack","count":6},{"key":"The Body Shop","count":6},{"key":"Payless Shoe Source","count":6},{"key":"Intermix","count":6},{"key":"The Children's Place","count":6},{"key":"Goodwill","count":6},{"key":"Fresh","count":6},{"key":"Sleepy's, The Mattress Professionals","count":6},{"key":"Sprint","count":5},{"key":"Journeys","count":5},{"key":"Theory","count":5},{"key":"Kiehl's Since 1851","count":5},{"key":"Talbots","count":5},{"key":"Solstice Sunglasses","count":5},{"key":"Searle","count":5},{"key":"Swatch Store","count":5},{"key":"L'occitane","count":5},{"key":"Anthropologie","count":5},{"key":"H & M","count":5},{"key":"Armani Exchange","count":5},{"key":"Levi's Store","count":5},{"key":"City Sports","count":5},{"key":"Hugo Boss","count":5},{"key":"Borders","count":5},{"key":"Rag & Bone","count":5},{"key":"lululemon athletica","count":5},{"key":"United Colors of Benetton","count":5},{"key":"Lot Less Closeouts","count":5},{"key":"Uniqlo","count":5},{"key":"Pylones","count":5},{"key":"Marshalls","count":5},{"key":"Juicy Couture","count":5},{"key":"Bath & Body Works","count":5},{"key":"Vince Camuto","count":5},{"key":"True Religion","count":5},{"key":"Joe Fresh","count":5},{"key":"Burberry","count":5},{"key":"Necessary Clothing","count":5},{"key":"Olive & Bette's","count":5},{"key":"Brookstone","count":5},{"key":"Old Navy","count":5},{"key":" & Company","count":5},{"key":"Express","count":5},{"key":"Jo Malone","count":4},{"key":"The Look","count":4},{"key":"NHS Hardware","count":4},{"key":"Montmartre","count":4},{"key":"Calypso St","count":4},{"key":"Paper Source","count":4},{"key":"Missha","count":4},{"key":"CeX","count":4},{"key":"Pottery Barn","count":4},{"key":"Prato Fine Men's Wear","count":4},{"key":"Precision","count":4},{"key":"Manhattan Eyeworks","count":4},{"key":"Rainbow","count":4},{"key":"Louis Vuitton","count":4},{"key":"Raymour and Flanigan Furniture","count":4},{"key":"Brandy Melville","count":4},{"key":"LUSH","count":4},{"key":"Lucky Brand","count":4},{"key":"Chanel","count":4},{"key":"Bonobos Guideshop","count":4},{"key":"Cartridge World","count":4},{"key":"Bond No","count":4},{"key":"Shoegasm","count":4},{"key":"Lacoste Boutique","count":4},{"key":"Satya Jewelry","count":4},{"key":"Aeropostale","count":4},{"key":"Blockbuster","count":4},{"key":"Kate's Paperie","count":4},{"key":"Kate Spade","count":4},{"key":"Coup De Coeur","count":4},{"key":"Conway Stores","count":4},{"key":"Olde Good Things","count":4},{"key":"Jimmy Choo","count":4},{"key":"Badichi Customized Belts","count":4},{"key":"Stussy","count":4},{"key":"Cole Haan","count":4},{"key":"INA","count":4},{"key":"Helmut Lang","count":4},{"key":"Swarovski","count":4},{"key":"Geox","count":4},{"key":"TJ Maxx","count":4},{"key":"bebe","count":4},{"key":"Gracious Home","count":4},{"key":"Gothic Cabinet Craft","count":4},{"key":"Thomas Pink","count":4},{"key":"Daffy's","count":4},{"key":"Decor Art Gallery","count":4},{"key":"UGG Australia","count":4},{"key":"Gagosian Gallery","count":4},{"key":"Diptyque","count":4},{"key":"Universal News","count":4},{"key":"David Z","count":4},{"key":"Arche","count":4},{"key":"DSW Designer Shoe Warehouse","count":4},{"key":"Eileen Fisher Boutique","count":4},{"key":"Verizon","count":4},{"key":"Eileen Fisher","count":4},{"key":"Edible Arrangements","count":4},{"key":"Wink","count":4},{"key":"Wolford Boutique","count":4},{"key":"White Furniture","count":4},{"key":"Williams-Sonoma","count":4},{"key":"Kmart","count":3},{"key":"Cartier","count":3},{"key":"Betsey Johnson","count":3},{"key":"Michal Negrin","count":3},{"key":"Molton Brown","count":3},{"key":"Monk Thrift Shop","count":3},{"key":"Charles Tyrwhitt","count":3},{"key":"Christian Louboutin","count":3},{"key":"Beyond Vape","count":3},{"key":"Nomorerack","count":3},{"key":"Babesta","count":3},{"key":"Goodwill Thrift Shop","count":3},{"key":"Anya Hindmarch","count":3},{"key":"Agent Provocateur","count":3},{"key":"Cozy's Cuts For Kids","count":3},{"key":"Guess","count":3},{"key":"Crocs","count":3},{"key":"Amsterdam Boutique","count":3},{"key":"Pandora","count":3},{"key":"H","count":3},{"key":"Arden B","count":3},{"key":"Patagonia","count":3},{"key":"Halloween City","count":3},{"key":"Payless ShoeSource","count":3},{"key":"Payless Shoesource","count":3},{"key":"Phantom of Broadway","count":3},{"key":"Phoenix Roze","count":3},{"key":"Pookie & Sebastian","count":3},{"key":"Pookie and Sebastian","count":3},{"key":"Posman Books","count":3},{"key":"Yankee Clubhouse Shop","count":3},{"key":"Hudson News","count":3},{"key":"Blockbuster Video","count":3},{"key":"Pier 1 Imports","count":3},{"key":"Polo Ralph Lauren","count":3},{"key":"Project No","count":3},{"key":"Purdy Girl","count":3},{"key":"Bloomingdale's","count":3},{"key":"Innovation Luggage","count":3},{"key":"Bluemercury","count":3},{"key":"INTIMACY - bra fit stylists","count":3},{"key":"Jubilee","count":3},{"key":"Ann Taylor Loft","count":3},{"key":"Boltons","count":3},{"key":"Dean Leather","count":3},{"key":"Alphabets","count":3},{"key":"Aerosoles Shoe Store","count":3},{"key":"Reiss","count":3},{"key":"Roni","count":3},{"key":"Selima Optique","count":3},{"key":"Door Store","count":3},{"key":"Sherwin-Williams Paint Store","count":3},{"key":"JackRabbit Sports","count":3},{"key":"Sacco Shoes","count":3},{"key":"Boost Mobile","count":3},{"key":"Sandro","count":3},{"key":"Jonathan Adler","count":3},{"key":"Save Khaki","count":3},{"key":"Scoop NYC","count":3},{"key":"Sean","count":3},{"key":"Disc-O-Rama Music World","count":3},{"key":"American Eagle Outfitters","count":3},{"key":"Secret of Treasures","count":3},{"key":"SEE","count":3},{"key":"KGB Deals","count":3},{"key":"Space NK Apothecary","count":3},{"key":"De Janeiro Stores","count":3},{"key":"Spirit Halloween","count":3},{"key":"Deal$","count":3},{"key":"Bose","count":3},{"key":"BCBG Max Azria","count":3},{"key":"Know Style","count":3},{"key":"Aesop","count":3},{"key":"Stuart Weitzman","count":3},{"key":"Bed Bath & Beyond","count":3},{"key":"Bang & Olufsen","count":3},{"key":"La Perla","count":3},{"key":"Eye To Eye Vision Center","count":3},{"key":"Superdry","count":3},{"key":"Sur La Table","count":3},{"key":"EZ Pawn Corp","count":3},{"key":"Earnest Sewn","count":3},{"key":"Target","count":3},{"key":"The Tumi Store","count":3},{"key":"Eastern Mountain Sports","count":3},{"key":"Tommy Hilfiger","count":3},{"key":"Tony Moly","count":3},{"key":"Tory Burch","count":3},{"key":"Tourneau","count":3},{"key":"Tower Records-Video-Books","count":3},{"key":"Leather Impact","count":3},{"key":"Barclay Rex","count":3},{"key":"Esprit","count":3},{"key":"Think Closet","count":3},{"key":"Allen-Edmonds","count":3},{"key":"Tiffany & Co","count":3},{"key":"Camper","count":3},{"key":"French Connection","count":3},{"key":"U","count":3},{"key":"Capezio Dance Theatre Shop","count":3},{"key":"Footlocker","count":3},{"key":"Maje","count":3},{"key":"Malia Mills","count":3},{"key":"Anne Fontaine","count":3},{"key":"Fossil Store","count":3},{"key":"Afaze","count":3},{"key":"Madewell","count":3},{"key":"Feel Beauty Supply","count":3},{"key":"Mephisto","count":3},{"key":"Metro Drugs","count":3},{"key":"Warby Parker","count":3},{"key":"Filene's Basement","count":3},{"key":"Wireless Warehouse","count":3},{"key":"Mr","count":3},{"key":"Muji","count":3},{"key":"Mulberry","count":3},{"key":"Zales Jewelers","count":3},{"key":"Fishs Eddy","count":3}]
[{"neighborhood":"Midtown West","count":1957},{"neighborhood":"Upper East Side","count":984},{"neighborhood":"Midtown East","count":966},{"neighborhood":"SoHo","count":690},{"neighborhood":"Chelsea","count":686},{"neighborhood":"Flatiron","count":573},{"neighborhood":"East Village","count":482},{"neighborhood":"Upper West Side","count":460},{"neighborhood":"West Village","count":424},{"neighborhood":"Hell's Kitchen","count":421},{"neighborhood":"Lower East Side","count":410},{"neighborhood":"Greenwich Village","count":380},{"neighborhood":"Theater District","count":326},{"neighborhood":"Yorkville","count":323},{"neighborhood":"Chinatown","count":310},{"neighborhood":"Nolita","count":265},{"neighborhood":"TriBeCa","count":233},{"neighborhood":"Financial District","count":230},{"neighborhood":"Harlem","count":223},{"neighborhood":"","count":210},{"neighborhood":"Murray Hill","count":183},{"neighborhood":"South Village","count":161},{"neighborhood":"Union Square","count":159},{"neighborhood":"Washington Heights","count":152},{"neighborhood":"Alphabet City","count":142},{"neighborhood":"NoHo","count":140},{"neighborhood":"East Harlem","count":134},{"neighborhood":"Civic Center","count":112},{"neighborhood":"Little Italy","count":111},{"neighborhood":"Gramercy","count":106},{"neighborhood":"Meatpacking District","count":103},{"neighborhood":"Koreatown","count":87},{"neighborhood":"Kips Bay","count":81},{"neighborhood":"Manhattan Valley","count":81},{"neighborhood":"South Street Seaport","count":44},{"neighborhood":"Morningside Heights","count":36},{"neighborhood":"Inwood","count":34},{"neighborhood":"Battery Park","count":30},{"neighborhood":"Flushing","count":29},{"neighborhood":"Stuyvesant Town","count":29},{"neighborhood":"Astoria","count":25},{"neighborhood":"Downtown Flushing","count":19},{"neighborhood":"Crown Heights","count":18},{"neighborhood":"Elmhurst","count":18},{"neighborhood":"Bushwick","count":17},{"neighborhood":"Williamsburg - North Side","count":16},{"neighborhood":"Forest Hills","count":16},{"neighborhood":"East Williamsburg","count":15},{"neighborhood":"Park Slope","count":15},{"neighborhood":"Two Bridges","count":14},{"neighborhood":"Bedford Stuyvesant","count":14},{"neighborhood":"Flatbush","count":13},{"neighborhood":"Downtown Brooklyn","count":12},{"neighborhood":"Midwood","count":12},{"neighborhood":"Bensonhurst","count":12},{"neighborhood":"Long Island City","count":9},{"neighborhood":"Sheepshead Bay","count":9},{"neighborhood":"Borough Park","count":8},{"neighborhood":"DUMBO","count":8},{"neighborhood":"Ridgewood","count":7},{"neighborhood":"Greenpoint","count":7},{"neighborhood":"South Williamsburg","count":7},{"neighborhood":"Dyker Heights","count":7},{"neighborhood":"Bath Beach","count":7},{"neighborhood":"Hunters Point","count":6},{"neighborhood":"Marine Park","count":6},{"neighborhood":"JFK Airport","count":6},{"neighborhood":"Jackson Heights","count":6},{"neighborhood":"Canarsie","count":6},{"neighborhood":"Williamsburg - South Side","count":6},{"neighborhood":"Brooklyn Heights","count":6},{"neighborhood":"Cobble Hill","count":6},{"neighborhood":"Maspeth","count":5},{"neighborhood":"Prospect Heights","count":5},{"neighborhood":"New Dorp","count":5},{"neighborhood":"Bay Ridge","count":5},{"neighborhood":"Sunset Park","count":5},{"neighborhood":"Oakwood","count":5},{"neighborhood":"Bayside","count":5},{"neighborhood":"Jamaica","count":5},{"neighborhood":"Gowanus","count":5},{"neighborhood":"Sunnyside","count":4},{"neighborhood":"Boerum Hill","count":4},{"neighborhood":"Heartland Village","count":4},{"neighborhood":"Brighton Beach","count":4},{"neighborhood":"Vinegar Hill","count":4},{"neighborhood":"Co-op City","count":4},{"neighborhood":"Roosevelt Island","count":4},{"neighborhood":"Clinton Hill","count":4},{"neighborhood":"Gravesend","count":3},{"neighborhood":"LeFrak City","count":3},{"neighborhood":"Carroll Gardens","count":3},{"neighborhood":"Fordham","count":3},{"neighborhood":"Belmont","count":3},{"neighborhood":"Red Hook","count":3},{"neighborhood":"Prospect Lefferts Gardens","count":3},{"neighborhood":"Richmond Hill","count":3},{"neighborhood":"Woodside","count":3},{"neighborhood":"Fort Greene","count":3},{"neighborhood":"Mott Haven","count":3},{"neighborhood":"Glendale","count":2},{"neighborhood":"Kingsbridge","count":2},{"neighborhood":"Malba","count":2},{"neighborhood":"Lindenwood","count":2},{"neighborhood":"Pomonok","count":2},{"neighborhood":"Kew Gardens Hills","count":2},{"neighborhood":"Kensington","count":2},{"neighborhood":"Rego Park","count":2},{"neighborhood":"Highland Park","count":2},{"neighborhood":"Briarwood","count":2},{"neighborhood":"Graniteville","count":2},{"neighborhood":"New Lots","count":2},{"neighborhood":"Morris Heights","count":2},{"neighborhood":"Spring Creek","count":2},{"neighborhood":"Steinway","count":2},{"neighborhood":"Fresh Meadows","count":2},{"neighborhood":"East Flatbush","count":2},{"neighborhood":"Utopia","count":2},{"neighborhood":"Arrochar","count":2},{"neighborhood":"Westerleigh","count":2},{"neighborhood":"Whitestone","count":2},{"neighborhood":"College Point","count":2},{"neighborhood":"Woodhaven","count":2},{"neighborhood":"Brickell","count":1},{"neighborhood":"Soundview","count":1},{"neighborhood":"South Slope","count":1},{"neighborhood":"Morris Park","count":1},{"neighborhood":"Parkchester","count":1},{"neighborhood":"Pelham Gardens","count":1},{"neighborhood":"Mill Basin","count":1},{"neighborhood":"Stapleton","count":1},{"neighborhood":"Middle Village","count":1},{"neighborhood":"Georgetown","count":1},{"neighborhood":"Kew Gardens","count":1},{"neighborhood":"Fort Hamilton","count":1},{"neighborhood":"Floral Park","count":1},{"neighborhood":"Edenwald","count":1},{"neighborhood":"Eastside","count":1},{"neighborhood":"East New York","count":1},{"neighborhood":"North Riverdale","count":1},{"neighborhood":"Ditmas Park","count":1},{"neighborhood":"Mill Island","count":1},{"neighborhood":"Van Nest","count":1},{"neighborhood":"Coney Island","count":1},{"neighborhood":"Concourse Village","count":1},{"neighborhood":"West Brighton","count":1},{"neighborhood":"Huguenot","count":1},{"neighborhood":"Westchester Square","count":1},{"neighborhood":"Hillcrest","count":1},{"neighborhood":"Ocean Parkway","count":1},{"neighborhood":"Seaside","count":1},{"neighborhood":"Claremont Village","count":1},{"neighborhood":"Wingate","count":1},{"neighborhood":"Ozone Park","count":1},{"neighborhood":"City Island","count":1},{"neighborhood":"Gerritson Beach","count":1}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment