mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-12-23 09:37:54 +01:00
Documentation update
This commit is contained in:
parent
0b061f0a5e
commit
a7b76f9315
@ -75,16 +75,18 @@ public class PunchCardGraphCreator {
|
||||
int avg = findAverage(dataArray);
|
||||
double standardDiviation = getStandardDiviation(dataArray, avg);
|
||||
Log.debug("Diviation: " + standardDiviation);
|
||||
for (int i = 0; i < 7; i++) {
|
||||
for (int j = 0; j < 24; j++) {
|
||||
int value = dataArray[i][j];
|
||||
if (value - avg > 3 * standardDiviation) {
|
||||
dataArray[i][j] = (int) (avg);
|
||||
if (standardDiviation > 3) {
|
||||
for (int i = 0; i < 7; i++) {
|
||||
for (int j = 0; j < 24; j++) {
|
||||
int value = dataArray[i][j];
|
||||
if (value - avg > 3 * standardDiviation) {
|
||||
dataArray[i][j] = (int) (avg);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
for (int i = 0; i < 7; i++) {
|
||||
Log.debug(" " + Arrays.toString(dataArray[i]));
|
||||
for (int i = 0; i < 7; i++) {
|
||||
Log.debug(" " + Arrays.toString(dataArray[i]));
|
||||
}
|
||||
}
|
||||
}
|
||||
return dataArray;
|
||||
|
@ -24,6 +24,9 @@ Config.Point | Version introduced | Type | Default | Description
|
||||
LogProgressOnConsole | 2.4.0 | boolean | false | More detailed analysis progress to console.
|
||||
NotifyWhenFinished | 3.0.0 | boolean | true | Enables ["Analysis Complete"-message](https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/java/com/djrapitops/plan/Phrase.java#L73) will be shown on the console after analysis is complete.
|
||||
MinutesPlayedUntilConsidiredActive | 2.0.0 | Integer | 10 | This setting affects how the Analysis treats player's activity. Whether or not a player is active is determined with 3 values: Last Login, Playtime and Login Times. If the player has logged in in the last 2 weeks, has playtime higher than in the config, and has logged in 3 times, the player is considered active. Otherwise the player is counted as inactive.
|
||||
RemoveOutliersFromVisualization | 3.4.0 | boolean | true | This setting attempts to remove big spikes from data visualization.
|
||||
Export.Enabled | 3.4.0 | boolean | false | Enables export of html pages after analysis
|
||||
Export.DestinationFolder | 3.4.0 | String | 'Analysis Results' | Path to the export folder. Will be created if doesn't exist. If contains ':' will be regarded as full filepath.
|
||||
|
||||
## Cache settings
|
||||
|
||||
|
@ -15,6 +15,8 @@ The plugin uses placeholders to place the values into the html. Here I will go t
|
||||
|
||||
Placeholder | Description | Example
|
||||
---------- | ------------------------------------- | -----
|
||||
%currenttime% | Server epoch ms, used for clock. | 1496486156
|
||||
%refreshlong% | Epoch ms of last refresh (server time) | 1496486156
|
||||
%uuid% | Players UUID or 'Hidden' if config setting for UUID visibility is disabled. | 88493cd1-567a-49aa-acaa-84197b5de595
|
||||
%lastseen% | A formatted version of the last Epoch second the user was seen. | Feb 02 18:03:12
|
||||
%logintimes% | How many times the user has logged in | 34
|
||||
@ -64,6 +66,8 @@ Placeholder | Description | Example
|
||||
|
||||
Placeholder | Description | Example
|
||||
---------- | ------------------------------------- | -----
|
||||
%currenttime% | Server epoch ms, used for clock. | 1496486156
|
||||
%refreshlong% | Epoch ms of last refresh (server time) | 1496486156
|
||||
%gm0% | Total percentage all players have spent in SURVIVAL | 66%
|
||||
%gm1% | Total percentage all players have spent in CREATIVE | 19%
|
||||
%gm2% | Total percentage all players have spent in ADVENTURE | 10%
|
||||
@ -92,6 +96,13 @@ Placeholder | Description | Example
|
||||
%sessionaverage% | Formatted time amount of the average session length | 4m 30s
|
||||
%version% | Version of Plan | 3.2.0
|
||||
%planlite% | Replaced with an empty string. Old feature. |
|
||||
%uniquejoinsday% | Replaced with number of unique players | 5
|
||||
%uniquejoinsweek% | Replaced with number of unique players | 47
|
||||
%uniquejoinsmonth% | Replaced with number of unique players | 234
|
||||
%avguniquejoins% | Replaced with number of average joins / day | 56
|
||||
%avguniquejoinsday% | Replaced with number of average joins / day in last 24h | 56
|
||||
%avguniquejoinsweek% | Replaced with number of average joins / day in last 7d | 60
|
||||
%avguniquejoinsmonth% | Replaced with number of average joins / day in last 30d | 59
|
||||
%sortabletable% | Multi column table containing all players | [Created with this code](https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/java/com/djrapitops/plan/ui/tables/SortablePlayersTableCreator.java)
|
||||
%dataday% | Data for 24h online activity | [0, 0, 0, 0, 1]
|
||||
%dataweek% | Data for 7d online activity | [0, 0, 0, 0, 1]
|
||||
@ -106,12 +117,6 @@ Placeholder | Description | Example
|
||||
%geomapz% | Number array for Chloropleth map | [...]
|
||||
%gmdata% | Data for the sectors on the gm usage pie | [43242, 432423421, 35345, 5432534]
|
||||
%gmlabels% | Labels for the sectors of gm pie. | ["Survival", "Creative", "Adventure", "Spectator"]
|
||||
%genderdata% | Data for the sectors on the Gender pie | [3, 4, 5]
|
||||
%gendermale% | Amount of male players | 3
|
||||
%genderfemale% | Amount of female players | 4
|
||||
%gendercolors% | Colors for the gender pie in the config | [#ffffff, #000000, #ffffff]
|
||||
%genderfcolor% | Color of the FEMALE sector in gender pie | #ffffff
|
||||
%gendermcolor% | Color of the MALE sector in gender pie | #000000
|
||||
%activecol% | Color of the ACTIVE sector in config | ffffff
|
||||
%inactivecol% | Color of the INACTIVE sector in config | 000000
|
||||
%joinleavecol% | Color of the UNKNOWN sector in config | ffffff
|
||||
|
Loading…
Reference in New Issue
Block a user