Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nnpdf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Emanuele Roberto Nocera
nnpdf
Commits
19c2ac50
Commit
19c2ac50
authored
2 years ago
by
Emanuele Roberto Nocera
Browse files
Options
Downloads
Patches
Plain Diff
Removing useless imports
parent
d9c96e5f
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!1581
Implemented function to compute asymptotic exponents
This commit is part of merge request
!1581
. Comments created here will be created in the context of that merge request.
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
validphys2/src/validphys/asy_exponents.py
+3
-11
3 additions, 11 deletions
validphys2/src/validphys/asy_exponents.py
with
3 additions
and
11 deletions
validphys2/src/validphys/asy_exponents.py
+
3
−
11
Edit
View file @
19c2ac50
# -*- coding: utf-8 -*-
# -*- coding: utf-8 -*-
"""
"""
Tools for computing and plotting
effective
exponents.
Tools for computing and plotting
asymptotic
exponents.
"""
"""
from
__future__
import
generator_stop
import
logging
import
logging
import
numbers
import
numbers
import
random
import
warnings
import
warnings
import
matplotlib.pyplot
as
plt
import
numpy
as
np
import
numpy
as
np
import
pandas
as
pd
import
pandas
as
pd
from
reportengine
import
collect
from
reportengine
import
collect
from
reportengine.compat
import
yaml
from
reportengine.figure
import
figuregen
from
reportengine.figure
import
figuregen
from
reportengine.floatformatting
import
format_number
,
significant_digits
,
format_error_value_columns
from
reportengine.floatformatting
import
format_number
from
reportengine.table
import
table
from
reportengine.table
import
table
from
validphys.checks
import
check_positive
,
check_pdf_normalize_to
,
make_argcheck
,
check_xlimits
from
validphys.checks
import
check_positive
,
check_pdf_normalize_to
,
make_argcheck
,
check_xlimits
from
validphys.core
import
PDF
,
FitSpec
from
validphys.core
import
PDF
from
validphys.pdfbases
import
check_basis
,
Basis
from
validphys.pdfbases
import
check_basis
,
Basis
from
validphys.pdfplots
import
BandPDFPlotter
,
PDFPlotter
from
validphys.pdfplots
import
BandPDFPlotter
,
PDFPlotter
...
@@ -30,9 +25,6 @@ from findiff import FinDiff
...
@@ -30,9 +25,6 @@ from findiff import FinDiff
log
=
logging
.
getLogger
(
__name__
)
log
=
logging
.
getLogger
(
__name__
)
INTERNAL_LINESTYLE
=
[
'
-.
'
,
'
:
'
]
INTERNAL_COLOR
=
plt
.
rcParams
[
'
axes.prop_cycle
'
].
by_key
()[
"
color
"
]
@check_positive
(
'
Q
'
)
@check_positive
(
'
Q
'
)
@make_argcheck
(
check_basis
)
@make_argcheck
(
check_basis
)
@check_xlimits
@check_xlimits
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment