ENH: dataframe.from_pandas ... accept npartitions or chunksize#1034
ENH: dataframe.from_pandas ... accept npartitions or chunksize#1034thequackdaddy wants to merge 3 commits intodask:masterfrom
Conversation
|
+1 on the content. This looks great! Can I ask you to rebase in the whoopsie commit? Or perhaps all into one for something of this size? |
|
So this is where I confess I'm not too good with git. I think what you are suggesting is that I do the following git checkout master Is that right? I've screwed up git a lot. |
|
Wait wait... git checkout master |
|
Close. I'm suggesting that you do the following: Then, change Then you save/exit and rewrite the docstring. Finally you force push back up to your fork on github. As a warning, this is where you can lose information. Alternatively, I can do all of this for you. It's a decent thing to learn how to do though. |
DOC: Wrote a little more documentation DOC: Whoopsie...
5c6dcb7 to
312625f
Compare
|
Yep I screwed it up. Let me make a new pull request. I think I should have squashed the ones above this commit as well. |
Hello,
In the project I'm building, I've found it much more convenient if I can make a constant dataframe of the same size and with the same shape as my
from_bcolzdata frame. (So the dataframe is just a column of zero's or one's or whatnot.)I wanted the divisions to be the same as well to make the processing easier.... and this was the easiest route to that.
Let me know your thoughts.
Thanks.