Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

96
Views
D3 TimeParse Formatting

been working on a D3 assignment and the timeParse is really not working for me.

Console.log Data Format without timeparse

the attached image is the date data of the csv I'm using (d3.dsv loaded) and I have used var parseTime = d3.timeParse("%m-%d-%Y") in an effort to load it, but it always returns null. I have also tried (%e-%d-%Y) variation to no avail. The interesting thing is that the first format worked yesterday and now its giving null when I tried continuing my work today. Any help would be appreciated.

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Since you have not provided that data, I have assumed the data & the code below works.

One thing to pay attention to is in you data you have forward slash (/) separating day, month & year. However, in d3.timeParse, you use hyphen (-). Both have to match.

let data = [
  { date: "11/22/2016", cat: 5 },
  { date: "12/22/2016", cat: 4 },
  { date: "01/22/2017", cat: 3 },
  { date: "02/22/2017", cat: 2 },
];

parseTime = d3.timeParse("%m/%d/%Y");

data.forEach((d) => console.log(d.date));

data.forEach((d) => (d.date = parseTime(d.date)));

data.forEach((d) => console.log(d.date));

console.log(data);

Output

enter image description here

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!