-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tseries
class
#294
Open
kostrzewa
wants to merge
33
commits into
master
Choose a base branch
from
tseries
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
tseries
class
#294
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
18b1b36
have explicit source file for generic functions
kostrzewa 2540be1
use .Rdata as extension in analysis_online
kostrzewa 9475263
begin work on 'tseries' class
kostrzewa 3d95596
vignette in which the new 'tseries' class is applied to study the gra…
kostrzewa eeaa93a
add 'tseries' vignette
kostrzewa 4c88db7
In the analysis of online measurements, indicate M_ps extracted from …
kostrzewa 02afcc0
store WIP of timeseries toolset and new implementation of gradient fl…
kostrzewa 5bdf9d9
two digits for error on scale in gradient flow evolution plots
kostrzewa c87a928
print statement which shouldn't exist in readcmifiles
kostrzewa aa4cdab
add to parameters of as a way to have different starting points bet…
kostrzewa 85f11a8
speed up readcmifiles by a factor of more than 100
kostrzewa ce93f04
Merge remote-tracking branch 'origin/master' into tseries
kostrzewa 5aa3c81
resolve documentation warnings due to missing names in R/hadron-packa…
kostrzewa 8550080
speed up gradient flow I/O by about a factor of 200
kostrzewa c26cbc2
remove 'skip' from analysis_online, replace this functionality for 'o…
kostrzewa 73b407c
be more helpful when omeas.offset is used and no trajectories are found
kostrzewa 597efe4
note dependency on reshape2
kostrzewa 7d7d38f
account for dimesions of gradient flow reference data
kostrzewa 9e8d133
add `trajectory_length` parameter for `analysis_online` which can be …
kostrzewa accc42c
in analysis_tmlqcd_gradient_flow, plot and summarize the topological …
kostrzewa b8690b9
draw error rectangles for mpcac plateau only if the error is not too …
kostrzewa e642956
introduce some restrictions on the plotting of error polygons in the …
kostrzewa 7288fbc
add more documentation to 'analysis_tmlqcd_gradient_flow'
kostrzewa ade423b
typo in evals.stepsize
kostrzewa 34272fc
Allow the definition point for gluonic scales (scale_definition) to b…
kostrzewa ed17427
parenthesis problem in analysis_online
kostrzewa cafec48
do not use the bootstrap samples to estimate the mean of mpi_ov_fpi
kostrzewa 306fa22
in boostrap.nlsfit, make sure that x divides y
kostrzewa 4a4809e
generalise the generator functions for CVC / meson_2pt keys to suppor…
kostrzewa 3018fd4
nyom HDF5 files differ from CVC HDF5 files in that they use a compoun…
kostrzewa 065c2b2
do not use 'sample', use 'istoch' instead
kostrzewa 94922b3
remove unused dbg parameter
kostrzewa 8824f0f
ensure that timeseries dat contains 'y' and 't'
kostrzewa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@urbach if you're curious, this pattern of iterating in parallel using
mclapply
(or in this casepbmclapply
) over the files and binding the results together withdo.call(rbind,dat)
in line 281 below is about a factor of 100 faster than building the data frame ahead of the time and replacing it bit by bit with the read dataThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Even single-threaded, it is many many times faster.