If you only want to include specific columns from the generated table you could use include_cols.
Original
2011 | 2012 | 2013 | 2014 | 2015 | |
---|---|---|---|---|---|
Sweden | 1.6% | 2.2% | 3.2% | 4.5% | 6.9% |
Norway | -6.6% | 1.2% | 1.4% | 1.9% | 2.0% |
Finland | -16.6% | -14.2% | 10.2% | 11.0% | 13.2% |
Iceland | 6.6% | 6.2% | 7.2% | 11.0% | 16.2% |
Denmark | -2.6% | 0% | 2.6% | 2.9% | 2.11% |
With include_cols
This example below shows data from column 1,2 and 4 (with include_cols=”1-2,4″).
Shortcode
[csvtohtml_create source_type="visualizer_plugin" path="csvfiles" source_files="sweden;norway;finland;iceland;denmark" include_cols="1-2,4" source_type="visualizer_plugin"]
2011 | 2013 | |
---|---|---|
Sweden | 1.6% | 3.2% |
Norway | -6.6% | 1.4% |
Finland | -16.6% | 10.2% |
Iceland | 6.6% | 7.2% |
Denmark | -2.6% | 2.6% |
You may also select columns by their actual names, so instead of 1-2,4 you could type, (header name of column 1 empty) 2011 (header name of column 2),2013 (header name of column 4).
Shortcode
[csvtohtml_create source_type="visualizer_plugin" path="csvfiles" source_files="sweden;norway;finland;iceland;denmark" include_cols=",2011,2013"]
2011 | 2013 | |
---|---|---|
Sweden | 1.6% | 3.2% |
Norway | -6.6% | 1.4% |
Finland | -16.6% | 10.2% |
Iceland | 6.6% | 7.2% |
Denmark | -2.6% | 2.6% |