Although unmentioned, this alias conflicts with the common convention for Sympy: import sympy as sp .
Observations
I have seen statements import scipy as sc in the past. However, I find it is more common to import a submodule from Scipy, which cannot be accessed through aliases in this manner.
As suggested in the documentation, recommended formats include:
from scipy import integrate
import scipy.io as spio
from scipy.stats import distributions
I don't particularly like these suggestions, but I believe they more accurately reflect common practices than what is currently stated in the knowledge base.
This issues refers to Use common abbreviations for libraries in the Python Knowledge Base.
Issue
The common abbreviation listed in the knowledge base for Scipy is
import scipy as sp
.Although unmentioned, this alias conflicts with the common convention for Sympy:
import sympy as sp
.Observations
I have seen statements
import scipy as sc
in the past. However, I find it is more common to import a submodule from Scipy, which cannot be accessed through aliases in this manner.As suggested in the documentation, recommended formats include:
from scipy import integrate
import scipy.io as spio
from scipy.stats import distributions
I don't particularly like these suggestions, but I believe they more accurately reflect common practices than what is currently stated in the knowledge base.
Requests
References