Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

98
Vistas
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 Respuestas
Responde la pregunta

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 Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda