wilsong100
New Member
- Joined
- Feb 6, 2015
- Messages
- 3
I have a table that I extracted from ArcGIS (see an extract of the table below). It features 12 designated sites and within each of the sites there are occurences of up to 63 different feature types.
<tbody>
</tbody>
What I want to do is list the feature types as columns and the designated sites as rows. The values will contain the occurence of a feature within a designated site (see table below).
Table I would like to achieve:
<tbody>
</tbody>
Stumbling blocks are that there are 63 features I would like columns for and some designated sites do not have an occurence of all 63 features and unfortunately zero values were not recorded. So the data for designated sites only include data for the features that occur within them.
Much appreciated for any help on this.
Cheers
NAME | FEATURE | FREQUENCY |
Antrim Hills | Heather | 15 |
Antrim Hills | Scrub | 38 |
Larne | Beaches | 3 |
Larne | Rock | 17 |
.....and so on | | |
<tbody>
</tbody>
What I want to do is list the feature types as columns and the designated sites as rows. The values will contain the occurence of a feature within a designated site (see table below).
Table I would like to achieve:
| Beaches | Bracken | Heather | ....and so on |
Antrim Hills | 0 | 0 | 15 | |
Larne | 3 | 0 | 0 | |
Lough Foyle | 15 | 1 | 2 | |
....and so on | | | | |
<tbody>
</tbody>
Stumbling blocks are that there are 63 features I would like columns for and some designated sites do not have an occurence of all 63 features and unfortunately zero values were not recorded. So the data for designated sites only include data for the features that occur within them.
Much appreciated for any help on this.
Cheers