-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathThreadNet_Graphics.R
More file actions
686 lines (547 loc) · 22.6 KB
/
ThreadNet_Graphics.R
File metadata and controls
686 lines (547 loc) · 22.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
##########################################################################################################
# THREADNET Graphics functions
# This software may be used according to the terms provided in the
# GNU General Public License (GPL-3.0) https://opensource.org/licenses/GPL-3.0?
# Absolutely no warranty!
##########################################################################################################
# graphic functions used in Shiny App.
# some plotly, but some from other packages
library(plotly)
###### Pie charts for context factors ####
# It would be nice to display some other helpful information, perhaps (like the % of possible combinations that occur)
#' Creates pie charts for one or more contextual factors
#'
#' When selecting contextual factors that define threads, events and comparisons, this function provide visual feedback about the number of factors levels
#' and also the number of levels when the factors are combined
#'
#' @family ThreadNet_Graphics
#'
#' @param oc data frame of occurrences
#' @param CF list of contextual factors (columns) to include in the display
#'
#' @return plotyly pie charts (one or more)
#'
#' @export
CF_multi_pie <- function(oc,CF){
# print(paste('in CF_multiPie, oc colnames=',colnames(oc)))
# print(paste('in CF_multiPie, CF=',CF))
# avoid unpleasant error messages
if (length(CF)==0) {return(plotly_empty())}
# make sure the necessary columns are present
if (!all(CF %in% colnames(oc))) {return(plotly_empty())}
# first add the combined column if there is more than one
if (length(CF) >1){
oc = combineContextFactors(oc, CF, "COMBINED")
CF = c(CF, "COMBINED") }
# get number of plots, which now includes the combined plot
nPlots = length(CF) # nPies+1
### compute layout information
# compute the offset = half the width of each plot
offset = 1/(2*nPlots)
# Locate the centers for the plots -- this is where the annotations will go
ctrPlot = (0:(nPlots-1))/nPlots + offset
# locate upper and lower bounds on the domains of the plots (LB & UB)
plotDomainLB = ctrPlot - offset
plotDomainUB = ctrPlot + offset
# Now loop for each CF, computing entropy and adding on the next "trace" to the plot
# start with blank plot object
pies = plot_ly()
max_combos = 1
for (i in 1:nPlots) {
# make table information for each plot, including the combined one
cfData = as.data.frame(table(oc[CF[i]]))
# take out rows with zero frequency
cfData = cfData[(cfData[,"Freq"]>0),]
#N levels
CFlevels = length(cfData[,"Freq"])
# keep track of max possible combinations
max_combos = max_combos*CFlevels
#compute entropy for each plot
CFentropy = compute_entropy(cfData[,"Freq"])
# Add the new plots
pies = pies %>%
add_pie(data = cfData, labels = ~Var1, values = ~Freq,
textinfo='label',textposition='none', name=as.character(CF[i]),
domain = list(x = c(plotDomainLB[i], plotDomainUB[i])) ) %>%
add_annotations(text=paste0(CF[i],"<br>N=",CFlevels,"<br>entropy=",format(CFentropy, digits=2)),showarrow=FALSE,xanchor="center",
font=list(size="14",color="white"),
xref="paper",yref="paper",y=.5,x=ctrPlot[i])
}
pies = pies %>%
layout(showlegend=FALSE,
xaxis = list(showgrid = FALSE,zeroline = FALSE, showticklabels = FALSE),
yaxis = list(showgrid = FALSE, zeroline = FALSE,showticklabels = FALSE)
# ,
# autosize = F, width = "100%", height = "100px")
)
return(pies)
}
####################################################
# use the same general layout, but just for one event
# need to pass in the levels for each CF to use as the column names
# e is a data.frame with events (created by OccToEvents1 or OccToEvents2)
# CF = list of context factor names used to define events
# r is the row name for the event being examined
#
# KNOWN ISSUES:
# * Need to pass in the factor levels as labels for the pie slices
# * Need to compute the values differently for a node in the dendrogram or in a zoomed graph
# * Probably need to pass in the vector of values
#
# Call this for one CF at a time
# o is the raw occurrences. This is where we get the labels.
# e is the events. This is where we get the frequencies
# cf is the column name for one CF (e.g., "actor")
# r is one row (or cluster ID)
# zm is the zoom column number.
make_df_for_one_pie <- function(o,e,cf,r,zm){
# get the labels from the occurrences (o), get the frequencies from events
cfdf = data.frame(Freq = aggregate_VCF_for_cluster(e,cf,r,zm), Label= levels(o[[cf]]) )
return(cfdf)
}
# e = events
# o = occurrences
# CF = list of the event_CF
# zoom level as an integer (so you can grab it from the slider)
# r = row number or cluster number. Should be the number on the event
# z = integer for zoom column
CF_multi_pie_event <- function(o, e,CF,r, zm){
# avoid unpleasant error messages
if (length(CF)==0) {return(plotly_empty())}
# print(paste('in CF_multi_pie_event, r=',r))
if (is.na(as.numeric(r))) {return(plotly_empty())}
# get number of plots
nPlots = length(CF)
# paste "V_" onto the contextual factor names
# CF = paste0("V_",CF)
### compute layout information
# compute the offset = half the width of each plot
offset = 1/(2*nPlots)
# Locate the centers for the plots -- this is where the annotations will go
ctrPlot = (0:(nPlots-1))/nPlots + offset
# locate upper and lower bounds on the domains of the plots (LB & UB)
plotDomainLB = ctrPlot - offset
plotDomainUB = ctrPlot + offset
n=length
# Now loop for each CF, computing entropy and adding on the next "trace" to the plot
# start with blank plot object
pies = plot_ly()
max_combos = 1
for (i in 1:nPlots) {
# make table information for each plot
# cfData = data.frame(Freq=as.matrix(unlist(e[r,CF[i]])),Var1= letters[seq( from = 1, to = length(unlist(e[r,CF[i]])) )])
cfData = make_df_for_one_pie(o,e,CF[i],r,zm)
# take out rows with zero frequency
cfData = cfData[(cfData[,"Freq"]>0),]
#N levels
CFlevels = length(cfData[,"Freq"])
# Add the new plots
if(CFlevels==1){
pies = pies %>%
add_pie(data = cfData, labels = ~Label, values = ~Freq,
textinfo='label',textposition='none', name=as.character(CF[i]),
domain = list(x = c(plotDomainLB[i], plotDomainUB[i])) ) %>%
add_annotations(text=paste0(CF[i],"<br>",cfData$Label),showarrow=FALSE,xanchor="center",
font=list(size="14",color="white"),
xref="paper",yref="paper",y=.5,x=ctrPlot[i])
} else {
pies = pies %>%
add_pie(data = cfData, labels = ~Label, values = ~Freq,
textinfo='label',textposition='none', name=as.character(CF[i]),
domain = list(x = c(plotDomainLB[i], plotDomainUB[i])) ) %>%
add_annotations(text=paste0(CF[i],"<br>N=",CFlevels),showarrow=FALSE,xanchor="center",
font=list(size="14",color="white"),
xref="paper",yref="paper",y=.5,x=ctrPlot[i])
}
}
pies = pies %>%
layout(showlegend=FALSE,
xaxis = list(showgrid = FALSE,zeroline = FALSE, showticklabels = FALSE),
yaxis = list(showgrid = FALSE, zeroline = FALSE,showticklabels = FALSE)
# ,
# autosize = F, width = "100%", height = "100px")
)
return(pies)
}
######################################################################
# ThreadMap shows the threads in a horizongal layout
#' Shows threads in a horizontal layout
#'
#' Creates a plotly chart of threads in either clock time or event time, depending on the timescale parameter.
#'
#' @family ThreadNet_Graphics
#'
#' @param or Dataframe of threads
#' @param TN name of column with thread number
#' @param timescale name of column that will be used to plot x-axis of events. It can be the can be the time stamp (for clock time) or the sequence number (for event time)
#' @param CF name of contextual factor that will determine the colors
#' @shape shape of plotted points
#'
#' @return plotly object
#' @export
#'
threadMap <- function(or, TN, timescale, CF, shape){
# print('in threadMap')
# print(head(or))
# setting color palettes
# first find the number of distinct colors
nColors = length(unique(or[,CF]))
pal <- diverge_hcl(nColors)
if (timescale == 'seqNum') {
xaxis = 'Event Time'
} else if (timescale == 'tStamp') {
xaxis = 'Actual Time'
} else if (timescale == 'relativeTime') {
xaxis = 'Relative time'
}
return( plot_ly(or, x = ~as.integer(or[[timescale]]), y = ~or[[TN]], color= ~as.character(or[,CF]),
colors=pal,
name = 'threads', type = 'scatter', mode='markers', marker=list(size=10, opacity=1), # fill='tonextx',
text = ~or$label,
hoverinfo = "text+x+y",
symbol= "line-ew", symbols=shape, showlegend=FALSE)
%>%
layout(
xaxis = list(title = xaxis),
yaxis = list(title = knitr::combine_words(get_THREAD_CF(), sep = ", "))
)
)
}
################################################
#' Create an ngram bar chart
#'
#' Shows the n-grams within a set of threads (but not splitting across threads). This provides a visual indication of how repetitive the threads are.
#'
#' @family ThreadNet_Graphics
#'
#' @param o a dataframe of occurrences or events
#' @param TN the column that contains the threadNum
#' @param CF the contextual factor within which to count the n-grams
#' @param n the length of the ngram
#' @param mincount the minimum count to display
#'
#' @return plotly object
#' @export
#'
#' @examples
ng_bar_chart <- function(o,TN, CF, n, mincount){
# get the ngrams
ngdf = count_ngrams(o,TN, CF, n)
# print("ngdf")
# print(ngdf)
# put them in descending order -- tricky (http://stackoverflow.com/questions/40224892/r-plotly-barplot-sort-by-value)
ngdf$ngrams = factor(ngdf$ngrams, levels =unique(ngdf$ngrams)[order(ngdf$freq, decreasing = TRUE)])
# make a list so we can return the data and the plot
ng=new("list")
# only include if they occur more than the threshold
ngBars = ngdf[ngdf$freq>=mincount,]
ngp <- plot_ly( ngBars, x = ~ngrams, y = ~freq, type = "bar",showlegend=FALSE) %>%
layout(xaxis= list(showticklabels = FALSE, title=paste0(n,"-grams of ",CF, " that occur > ",mincount," times")))
return(ngp)
}
# this version we pass in the ngram data frame already sorted
ng_bar_chart_freq <- function(ngdf){
# put them in descending order -- tricky (http://stackoverflow.com/questions/40224892/r-plotly-barplot-sort-by-value)
ngdf$ngrams = factor(ngdf$ngrams, levels =unique(ngdf$ngrams)[order(ngdf$freq, decreasing = FALSE)])
ngp <- plot_ly( ngdf, y = ~ngrams, x = ~freq, type = "bar",showlegend=FALSE) %>%
layout(xaxis= list(showticklabels = TRUE, title='Frequency')) %>%
layout(yaxis= list(showticklabels = FALSE, title=''))
return(ngp)
}
#############################################################################
#' Circular network layout for event network (USES visnetwork)
#'
#' Should be replaced with a more expressive layout in plotly
#'
#' @family ThreadNet_Graphics
#'
#' @param et dataframe with the threads to be graphed
#' @param TN the column with the threadNumber
#' @param CF is the contetual factors (column)
#' @param timesplit time measure
#'
#' @return plotly object
#' @export
eventNetwork <- function(et, TN, CF, timesplit){
n <- threads_to_network(et, TN, CF, timesplit)
title_phrase = paste("Estimated complexity index =",estimate_network_complexity(n))
edge_shapes <- list()
for(i in 1:length(n$edgeDF$from)) {
E <- n$edgeDF[i,]
edge_shape = list(
type = "line",
line = list(color = "#030303", width = 0),
x0 = E[['from_x']],
x1 = E[['to_x']],
y0 = E[['from_y']],
y1 = E[['to_y']],
xref = "x",
yref = "y"
)
edge_shapes[[i]] <- edge_shape
}
x <- list(
title = 'Average Time'
)
y <- list(
title = 'Frequency'
)
color_pal = colorRampPalette(brewer.pal(11,'Spectral'))
size_pal = (n$nodeDF$y_pos-min(n$nodeDF$y_pos))/(max(n$nodeDF$y_pos)-min(n$nodeDF$y_pos))*15+10
network <- plot_ly(x = ~n$nodeDF$x_pos, y = ~n$nodeDF$y_pos,
width = 0,
mode = "markers",
marker = list(size= size_pal,
color=color_pal(100)[as.numeric(cut(n$nodeDF$x_pos, breaks=100))]
),
text = n$nodeDF$label, key = n$nodeDF$label, hoverinfo = "text", source = 'A')
p <- layout(
network,
title = title_phrase,
shapes = edge_shapes,
xaxis = x,
yaxis = y
)
return(p)
}
################################################################
## Here is the networkD3 version of the same thing.
# it has a bunch of extra code because of the groups...
# needs to be re-written to separate computation of the network from the layout...
#' NetworkD3 layout for event network
#'
#' @family ThreadNet_Graphics
#'
#' @param n = list with data frames for nodes and edges
#'
#' @return networkD3 object
#' @export
forceNetworkD3 <- function(n){
# zero indexing
n$nodeDF['id'] = n$nodeDF['id']-1
n$edgeDF['from'] = n$edgeDF['from']-1
n$edgeDF['to'] = n$edgeDF['to']-1
return( forceNetwork(Links = n$edgeDF, Nodes = n$nodeDF, Source = "from",
Target = "to", Value = "Value", NodeID = "label",
Group = "Group", opacity = 1, zoom = T,arrows=TRUE, bounded = FALSE,
clickAction = 'Shiny.onInputChange("Group", d.name)'))
}
######################################################################################
#' Comparison plots
#'
#' Produce a set set of comparison sub-plots in an array. Ideally, we should be able to use any of the plots. So far it is only bar charts.
#' This is a prototype that could use rather extensive redesign...
#'
#' @family ThreadNet_Graphics
#'
#' @param e dataframe with threads to be plotted
#' @param o dataframe with the original data
#' @param CF contextul factors
#' @param CF_levels list of levels from whicheve contextual factor was chosen for comprisons (e.g., location =1, 2, 3)
#' @param nTimePeriods how many time periods to divide the data?
#' @param ng_size size of ngram
#' @param zoom_level choose the zoom level, if applicable
#' @param plot_type a type of plotly plot with a function written
#'
#' @return plotly object, including subplots
#' @export
#'
#' @examples
Comparison_Plots <- function(e, o, CF, CF_levels, nTimePeriods=1, plot_type,role_map_cfs){
# get the first event of each thread, so we can order them consistently by time
et = e[e$seqNum==1,]
et = et[order(et$tStamp),]
# count the size of everything -- nTimePeriods is giving type error...
nThreads = nrow(et)
nLevels = max(1,length(CF_levels))
nTimeBuckets = as.numeric(max(1,nTimePeriods))
total_buckets = nLevels * nTimeBuckets
# Set up the N x M data stuctures to hold the parameters and the plots
plot_buckets = matrix(rep(list(), total_buckets),nrow = nTimeBuckets , ncol =nLevels)
# Get the subsets, first by time and then by category. This will just return thread numbers.
time_buckets = make_subsets(et$threadNum,nTimeBuckets)
plot_list = list()
for (tb in 1:nTimeBuckets){
for (f in 1:nLevels){
plotName = paste0("Time-",tb,"-","CF-",f)
plot_bucket = et[(is.element(et$threadNum,unlist(time_buckets[tb])) & et[CF]==CF_levels[f]),"threadNum"]
# then make the subplots
# this gets all of the events in all of the threads that match the criteria
dfp= e[is.element(e$threadNum,unlist(plot_bucket)),]
# print("dfp[,1:7]")
# print(dfp[,1:7])
# ideally make sure at least one thread is long enough to do an ngram...
if (nrow(dfp)>2){
if (plot_type=='Ngrams')
{plot_list[[plotName]] = ng_bar_chart(dfp,"threadNum", 1, 2, 2)}
else if (plot_type=='Role Maps')
{plot_list[[plotName]] = role_map( dfp, o, role_map_cfs ) }
else if (plot_type=='Thread Trajectories')
{plot_list[[plotName]] = threadTrajectory( dfp ) }
else if (plot_type=='Threads (event time)')
{plot_list[[plotName]] = threadMap(dfp, "threadNum", "seqNum", 1, 15 ) }
else
{plot_list[[plotName]] = plotly_empty()}
}
}}
# create two versions: one that uses ngrams (1-2-3) and one that shows numbers.
return(subplot(plot_list,nrows=nLevels))
}
# This one is not currently used.
threadLengthBarchart <- function(o, TN){
sizes = threadSizeTable(o,TN)
tgbc <- plot_ly( sizes, x = ~Var1, y = ~Freq, type = "bar", showlegend=FALSE) %>%
layout(xaxis= list(showticklabels = TRUE, title=paste0("Distribution of thread length")))
return(tgbc)
}
# Basic Network layout - back from the dead
# accepts the data stucture with nodeDF and edgeDF created by threads_to_network and normalNetwork
circleVisNetwork <- function( n,directed='directed', showTitle=FALSE ){
title_phrase =''
# if (showTitle==TRUE)
# title_phrase = paste("Estimated complexity index =",round(estimate_network_complexity(n),2))
# else
# title_phrase =''
# print("nodes")
# print(n$nodeDF)
#
# print("edges")
# print(n$edgeDF)
if (directed =='directed')
{ return(visNetwork(n$nodeDF, n$edgeDF, width = "100%", main=title_phrase) %>%
visEdges(arrows ="to",
color = list(color = "black", highlight = "red")) %>%
visLayout(randomSeed = 12 ) %>% # to have always the same network
visIgraphLayout(layout = "layout_in_circle") %>%
# visIgraphLayout(layout = "layout_as_tree") %>%
visNodes(size = 10) %>%
visOptions(highlightNearest = list(enabled = T, hover = T),
nodesIdSelection = T)) }
else {return(visNetwork(n$nodeDF, n$edgeDF, width = "100%", main=title_phrase) %>%
visEdges(color = list(color = "black", highlight = "red")) %>%
visLayout(randomSeed = 12 ) %>% # to have always the same network
visIgraphLayout(layout = "layout_in_circle") %>%
# visIgraphLayout(layout = "layout_as_tree") %>%
visNodes(size = 10) %>%
visOptions(highlightNearest = list(enabled = T, hover = T),
nodesIdSelection = T))}
}
# e is any set of events
# vcf is the context factor to graph as network for that set of events
# l is the set of labels = factor levels of original data for that VCF
normalNetwork <- function(e, o, cf){
# First get the node names & remove the spaces just in case
node_label = levels(o[[cf]])
node_label=str_replace_all(node_label," ","_")
# print("node_label")
# print(node_label)
# set up the data frames we need to draw the network
nodes = data.frame(
id = 1:length(node_label),
label = node_label,
title=node_label)
# get the column name for the vector...
vcf=paste0('V_',cf)
# add up the indicators of co-presence in this set of events
vcf_sum = colSums( matrix( unlist(e[[vcf]]), nrow = length(e[[vcf]]), byrow = TRUE) )
# compute outer product to get adjacency matrix,remove diagonal (self-ties) and then standardize to 0-1
a=sqrt(vcf_sum %o% vcf_sum)
diag(a) = 0
a=a/max(a)
# print(a)
g=graph_from_adjacency_matrix(a, mode='undirected', weighted=TRUE)
#E = get.edgelist(g, attr='weight')
edges=cbind( get.edgelist(g) , round( E(g)$weight, 3 ))
colnames(edges)=c('from','to','label')
return(list(nodeDF = nodes, edgeDF = as.data.frame(edges) ))
}
filter_network_edges <- function(n, threshold){
# print(head(n$edgeDF))
# print(paste('threshold=',threshold))
n$edgeDF = n$edgeDF %>% filter(label>threshold)
# print(head(n$edgeDF))
return(n)
}
# role map will show "who does what" for any set of events
# cfs contains a list of two contextual factors.
role_map <- function(e, o, cfs){
if (!length(cfs)==2)
return(plot_ly())
# Get the context factors
vcf_1 = paste0('V_',cfs[1])
vcf_2 = paste0('V_',cfs[2])
# add up the indicators of co-presence in this set of events
vcf_1_sum = colSums( matrix( unlist(e[[vcf_1]]), nrow = length(e[[vcf_1]]), byrow = TRUE) )
vcf_2_sum = colSums( matrix( unlist(e[[vcf_2]]), nrow = length(e[[vcf_2]]), byrow = TRUE) )
# compute outer product to get adjacency matrix
who_does_what= round(vcf_1_sum %o% vcf_2_sum,0)
return( plot_ly(
x=levels(o[[cfs[2]]]),
y=levels(o[[cfs[1]]]),
z=who_does_what,
type='heatmap',
colors= 'Reds') )
}
# this shows relative time versus sequential time
# Inspired by Gergen and Daniger-Schroeder
threadTrajectory <- function(or){
# setting color palettes
# first find the number of distinct colors
nColors = length(unique(or$threadNum))
pal <- rainbow_hcl(nColors)
return( plot_ly(or, x = ~or$relativeTime, y = ~or$seqNum, color= as.character(or$threadNum),
colors=pal,
name = 'threads', type = 'scatter', mode='lines',
text = ~paste(or$threadNum,or$label,sep=':'),
hoverinfo = "text",
showlegend=FALSE)
%>%
layout(
xaxis = list(title='Relative time'),
yaxis = list(title='Sequence')
))
}
movingWindowCorrelation <- function( trace ){
return( plot_ly(trace, x = ~window, y = ~correlation,
name = 'Window', type = 'scatter', mode='lines+markers',
text = paste('Thread:',trace$thread),
marker=list(size=8, opacity=1),
hoverinfo = "text",
symbol= "line-ew", symbols=15, showlegend=FALSE
)
%>%
layout(
xaxis = list(title='Window number'),
yaxis = list(title='Correlation',
range = c(0, 1),
autotick = FALSE,
ticks = "outside",
tick0 = 0,
dtick = 0.1,
ticklen = 5,
tickwidth = 2,
showticklabels = TRUE))
)
}
dualmovingWindowCorrelation <- function( trace ){
return( plot_ly(trace, x = ~thread, y = ~correlation,
name = 'Window', type = 'scatter', mode='lines+markers',
# text = ~thread,
marker=list(size=8, opacity=1),
# hoverinfo = "text",
symbol= "line-ew", symbols=15, showlegend=FALSE #,height = 200
)
%>%
layout(
xaxis = list(title='Window number'),
yaxis = list(title='Correlation',
range = c(0, 1),
autotick = FALSE,
ticks = "outside",
tick0 = 0,
dtick = 0.1,
ticklen = 5,
tickwidth = 2,
showticklabels = TRUE))
)
}