I have purchase data as csv.
| Name | Sex | Week
|------------|-------------|--------------
| Apple | F | Mon
| Orange | F | Tue
| Apple | M | Fri ...
| Grape | M | Mon
and I want converted csv...
| Name:Apple | Name:Orange | Name:Grape | Sex:F | Sex:M | Week:Mon | Week:Tue |
| 1 | 0 | 0 | 1 | 0 | 1 | 0 |
| 0 | 1 | 0 | 1 | 0 | 0 | 1 | ...
| 1 | 0 | 0 | 0 | 1 | 0 | 0 |
| 0 | 0 | 1 | 0 | 1 | 1 | 0 |
R or Python have any good convert method? Thanks.
Here's one way to do this in R using the "reshape2" package. You'll have to rearrange the order of the columns in the output.
Assuming your
data.frame
is called "mydf":I haven't used python or pandas before, but there is a
get_dummies
function that should do what you want.