Skip to content
Snippets Groups Projects
Select Git revision
  • c97808103acbb370929b255306a060a5965bd058
  • main default protected
  • gitkeep
  • dev
  • ipynb
  • 81-add-id-to-figure-file-metadata
  • v0.3.2
  • v0.3.1
  • v0.3.0
  • v0.2.3
  • test_tag
  • v0.2.2
  • v.0.2.1
  • v0.2.1
  • v0.1.2
  • v0.1.1
  • v0.1.0
17 results

example.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    example.py 461 B
    # -*- coding: utf-8 -*-
    """
    Created on Tue Jul 20 12:22:33 2021
    example workflow for integrating plotIDs
    @author: Richter
    """
    
    # Module einbinden
    import sys
    import numpy as np
    from numpy import random
    
    # Pfade hinzufügen
    
    sys.path.append("fcn_core")
    sys.path.append("fcn_help")
                    
    
    # Project ID
    
    ProjectID= "MR01"
    
    #Data
    x = np.linspace(0,10,100)
    y= random.rand(100) + 2
    dataset1 = [x,y]
    file = open("test_data.py", "w")
    file.write(dataset1)