I've got a CSV I've manipulated and have built a partition schema for my Azure Table. Using Building No for Partition (3-16) and the row keys are individual data points in time from a known point.
I'm having trouble when I upload my CSV to the table, at the moment I'm using Azure Storage Explorer and setting all parameters correctly. The problem is that the partition key is not staying the same once uploaded. It is auto incrementing in a strange way.
I've tried changing it from numeric to character in R before the export. I'm having to use Excel to make it work through import text for the CSV,I am formatting the column as text too. It does seem rather weird way to do it.
Two things I need help with if you can. Anyone got a way I can use write.table or an R function to write my Data frame correctly to CSV for instant upload
And why/how do I fix the Partition Key problem?