How to use autots - 3 common examples

To help you get started, we’ve selected a few autots examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github andersx / auto-ts / example.py View on Github external
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

import sys

from autots import Molecule
from autots import Mutation
from autots import connect


if __name__=="__main__":

    input_filename = sys.argv[1]
    input_mutation = sys.argv[2]

    mol = Molecule(input_filename)
    mut = Mutation(input_mutation)    

    output = connect(mol, [mut], mol.bonds[:1])

    print output
github andersx / auto-ts / example.py View on Github external
# SOFTWARE.

import sys

from autots import Molecule
from autots import Mutation
from autots import connect


if __name__=="__main__":

    input_filename = sys.argv[1]
    input_mutation = sys.argv[2]

    mol = Molecule(input_filename)
    mut = Mutation(input_mutation)    

    output = connect(mol, [mut], mol.bonds[:1])

    print output
github andersx / auto-ts / example.py View on Github external
import sys

from autots import Molecule
from autots import Mutation
from autots import connect


if __name__=="__main__":

    input_filename = sys.argv[1]
    input_mutation = sys.argv[2]

    mol = Molecule(input_filename)
    mut = Mutation(input_mutation)    

    output = connect(mol, [mut], mol.bonds[:1])

    print output

autots

Automated Time Series Forecasting

MIT
Latest version published 24 days ago

Package Health Score

79 / 100
Full package analysis

Similar packages