-
hi, I find linter automatic using python2 format to check my code though I have install pylint at both python3 and python2. How can I set the python version?
-
I have realized that your code examples use in fact some Python 2.x functions:
`xrange()` and `print` (without parentheses).
.
Also, I suspect that _python_ doesn't have a tuple comprehension.
It …
-
Traceback (most recent call last):
File "convert_directory.py", line 1, in
from data_utils.parse_files import *
File "/content/GRUV/data_utils/parse_files.py", line 124
print 'Process…
-
- Fixed (0,0), (0,1) for `SVM` and `EM`.
```
# Expectation Maximization
EM = GaussianMixture(random_state=SEED, n_components=2, covariance_type='spherical')
......
if isGMM:
c…
-
As reported by Michel Perault on SF.net (https://sourceforge.net/p/gnudatalanguage/feature-requests/148/):
```
Hi, following a recent exchange with Alain C. it turned out that plot_3d would be a n…
-
Hi.
When I trying to look what kind of json will be
view.py
``` python
class TempDatatablesView(DatatablesView):
model = Deal
fields = (
'deal_name',
)
```
url.py
``` python
…
-
Hello,
I try to reproduce the new Sharc 3 Tutorial and I am stuck at "2.9.7 Essential Dynamics Analysis".
After prompting all inputs for the script, I get the error:
"Reading trajectory /ho…
-
Hi,
Thanks very much for making this resource available.
I've downloaded it and tried to run it but the code appears to be written for Python 2. For example, print statements appear without bracke…
-
For the flip coin demo, use range instead:
heads = (sc.parallelize(range(n))
.map(lambda _: random.random())
.filter(lambda r: r
-
Current doc string:
```julia
julia> ?image
image(x, y, image)
image(image)
Plots an image on range x, y (defaults to dimensions).
```
Just spent 10 min to figure out that `x, y` must …