Solidify takes two dimensional data and converts it into a 3d object. To begin, upload a CSV file. The file can either be a 2x2 grid of data or a two column time series.
Week 1 | Week 2 | Week 3 | Week 4 |
---|---|---|---|
21 | 22 | 29 | 31 |
18 | 22 | 21 | 23 |
18 | 21 | 31 | 52 |
... | ... | ... | ... |
Column one should contain dates, column two should contain values. The model will be created so that the x axis is weeks of the year, the z axis (depth) are the days of the week starting from Sunday to Saturday, and the y axis (height) is the data values. Dates should be formatted in the "%m/%d/%Y" format as shown below.
Date | Value |
---|---|
01/01/2022 | 4 |
01/02/2022 | 8 |
01/02/2022 | 9 |
... | ... |