User Portlet User Portlet

Sean Cheren
Discussions
Interesting post, Arnoud! It was odd to me that the pitch shift changed what word it sounded like he was saying. When I originally listened to the recording, if I focused on the lower frequencies I could hear "laurel" but focusing on the higher...
Hi Enrique, Can you please attach the CSV?
I had to remove getline and stringstream lines since they were waiting for input and hanging the kernel. I would look at this post for some info on how to open a pipe as an alternative:...
Some of the values are not strings, so StringReplace is complaining.. An easy fix would be changing the 3rd line to ``` hwd = MapAt[ToExpression[StringReplace[ToString[#], " " ~~ __ -> ""]] &, hwd, {All, 2}]; ```
Hi Xinkai, We've reported the issue and will look at it as soon as we can. Meanwhile, have you seen that "Dataset" was added as an element for Import of CSV/TSV in 11.2? Perhaps try this as a workaround for now. ``` ...
Try backing up and removing $UserBaseDirectory.
Hi Mike, You could use StringReplace to delete all the characters including and after the space of the result like this: ``` hwd = Import["~/Desktop/hw.tsv", {"Data", All, 1}]; hwtemp = Import["~/Desktop/hw.tsv", {"Data", All, 2}]; date =...
Excel by default imports a list of rectangular sheets. You could try Import[file, {"Data", 1}] to only import the first sheet, then the data should be rectangular.
Hi Szabolcs, Good news! In the near future, Wolfram Research is working on an updated CSV Import/Export which will fix a number of bugs with escaped characters, as well as provide speed/memory improvements via a LibraryLink paclet. We will...