D3 Getting values from keys using array of objects
问题 So I read in a csv file on Country GDP, and I filtered out unwanted columns and countries. Now I want to know how to extract the values from this array of objects and use them to create x and y axes for a multi-series line chart. Here is my code function country(element) { return element.CountryName == "Brazil" || element.CountryName == "China" || element.CountryName == "Russian Federation" || element.CountryName == "United Kingdom" || element.CountryName == "United States" || element