RandomFractals / vscode-data-preview

Data Preview 🈸 extension for importing 📤 viewing 🔎 slicing 🔪 dicing 🎲 charting 📊 & exporting 📥 large JSON array/config, YAML, Apache Arrow, Avro, Parquet & Excel data files
https://marketplace.visualstudio.com/items?itemName=RandomFractalsInc.vscode-data-preview
Apache License 2.0
541 stars 58 forks source link

Incorrect Type inference CSV #334

Open emilianomm opened 1 year ago

emilianomm commented 1 year ago

Hi!

I'm currently having some issues on type inferencing for columns that have a large amounts of codes with pure numeric characters an a very few that include a alpha character. Like:

col = [ 
              123, 
              321,
                ...,
               V12,
               231,
                 ...
          ]

You probably get it. In this case DV infer a 123 type and show the likes of V12 as NA values. Any way to control the type inference or change dtype afterwards?

Thanks!