-
Notifications
You must be signed in to change notification settings - Fork 142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Invalid argument error when saving a loaded dataframe #170
Comments
Weird: changing the file extention to |
Sounds really weird. What happens if you try with different file names, different extensions, different paths? |
I won't have time to debug it, sorry :( It worked after I changed the file extention, and now I just went with it. |
Hi, the problem is even worse actually.
Could it be that somehow I've noticed that doesn't matter what file type I have, if I do:
and then modify
it gives me the error
I am on Windows 10, Julia 0.6.2. All packages on their latest stable version. The file I |
I closed the issue because you said you didn't have time to investigate it, and since we had no way to reproduce it... It looks like the file isn't properly closed by As a workaround, you can open the file manually using |
This is a windows-only issue; you can do |
You are right, using
instead worked. Is there any chance you can "fix" this, in the sense that I actually won't have to use the suggestions of quinnj or the fix by nalimilan? From a users perspective any function that has " |
@quinnj Is there any reason not to call |
I'm not sure what you mean. The error here is that when you |
Ah, I forgot that the columns are mmaped. I think by default we should do something safe and convenient, so if that means not using mmap on Windows or copying the array once it's been parsed, let's do that. Parsing a CSV file shouldn't require so much thought, or we're going to look bad compared with other languages. |
+1 for making sure this doesn't require a workaround on Windows 10. |
This is fixed on master with the switch to Note for now, you can get a NamedTuple of Vectors on master by doing |
In my case, the problem was the location of the output directory. Like in the case of @Datseris it was a Google Drive directory. Once I change the targer directory the problem was fixed. |
(I am sure that this problem comes just because I am a noob but I don't really know what to do with it so please bear with me...)
The last line gives me error:
SystemError: opening file pnjunction_simulations.tsv: Invalid argument
(P.S.: If there is a more "standard" way to add rows to a dataframe, besides this vcat I am doing, you are welcomed to let me know)
The text was updated successfully, but these errors were encountered: