🚨📦 Help support this channel - shop through my Amazon storefront! ⬇⬇⬇ www.amazon.com/shop/trevorsullivan ⬆⬆⬆
@carlvogel853310 ай бұрын
Really outstanding - best RDR tutorial I’ve seen
@SanketL37306 ай бұрын
where have you been sir up until now? loved your way of teaching. liked and subbed.
@akaibukai Жыл бұрын
Thanks for your videos! This channel is truly underrated!
@sgremm Жыл бұрын
hi, super video. i have the problem that in the csv file the decimal point is a comma instead of point. i become a ParseFloat(ParseFloatError). pls excuse me my bad english
@TrevorSullivan Жыл бұрын
Thank you for your support! You'll probably need to fix the CSV data before you'll be able to read it with the CSV parser in Rust. You'll have to write a script to parse it yourself and then add double quotes around the decimal value. I would probably use PowerShell for this purpose.
@sgremm Жыл бұрын
thnk you very much, i have write my own Deserialize function and now passed without failure
@TrevorSullivan Жыл бұрын
@@sgremm that's an even better idea! Great job! God bless you 🦀
@krystiankoniuszy3952 Жыл бұрын
In Europe we separate our partials with comma so American 3.14 would be 3,14 in Europe, so more and more you would find a ";" as divider in csv files. Great video btw!
@Hellbending Жыл бұрын
Actual tutorial starts at 12:30 Can get raw real world data csv’s via kaggle too
@TrevorSullivan Жыл бұрын
Good idea to grab data from Kaggle.
@Hellbending Жыл бұрын
@@TrevorSullivan when I was learning pandas (python) I used a couple of them; things like phone purchases based on ages and country or something and top Spotify artists of 2024 - Funnily enough hearing that rust handles data as bytes first - string second was kind of amusing to me because I ran Into a UTF-8 encoding issue with pandas that I had to solve by passing it as bytes anyway lol