Question of ground Multi of thermocouple

I have a Keithley 2750 with 7708 card in the first slot.

I have no problem getting the readings, but when they arrive, I want to index them based on their channel, which theoretically should be using 0 and 1 with the index command.

If this is not possible or there is an easier way to collect readings by channel, any help at all would be appreciated.

Code is attached.

Thanks in advance.

Kat

Maybe you need go to the Multiple Direct Reading mode? Or maybe the "Everything data" value true. You may also search the channel dashboard. The search will return an index and you must use this index on the table of measurement.

Tags: NI Software

Similar Questions

  • Question about C60 multi-Site Management

    Dear Expert

    I have a question about C60 multi-Site call using C60 as host.

    It there is a choice of layout as Edge 95?

    My opinion of close end site is not in the page layout and I go through a document to the administrator, apparently not metion on selection of layout on several sites.

    C60 is capable of having a provision such as "4-split' 95 edge?

    Thank you

    Best regards

    Tung

    Current version of the software of C60 TC6.0:

    You can also make your own layouts using the TC Console:

    http://developer.Cisco.com/Web/Telepresence-developer/tools/integrators/TC-console

    /Jens

  • Question no doubt multi-threaded

    Greetings!

    Don't know what kind of problem I face, but still very interesting.

    I have a UiApplication who starts a thread to listen to incoming SMS and respond automatically. This same class implements PhoneListener as below:

    public class SMSSenderReceiver extends Thread implements PhoneListener {
    
        private static DatagramConnection _dc;
        private static int _callIdIncoming;
        private static int _callIdAnswered;
        public static String _phoneNumber;
    
        static {
        try {
            _dc = (DatagramConnection) Connector.open("sms://");
            } catch (IOException e) {
                System.out.println(e);
            }
        }
    
        public SMSSenderReceiver() {
            super();
            _callIdIncoming = -1;
            _callIdAnswered = -1;
            Phone.addPhoneListener(this);
        }
    
        public void run() {
            try {
                for (;;) {
                    Datagram d = _dc.newDatagram(_dc.getMaximumLength());
                    _dc.receive(d);
                    String address = d.getAddress();
                    if (address.startsWith("//")) {
                        address = address.substring(2);
                    }
                    String answer = getResponseByPhone(address);
                    if (answer != null) {
                        answer.getBytes();
                        Datagram returnpacket = _dc.newDatagram(_dc
                                .getMaximumLength());
                        returnpacket.setAddress(d.getAddress());
                        returnpacket.setData(answer.getBytes(), 0, answer.length());
                        _dc.send(returnpacket);
                    }
                }
            } catch (IOException ioe) {
                System.out.println(ioe);
                Phone.removePhoneListener(this);
            }
        }
    
        private static String getResponseByPhone(final String phone) {
            TextResponses tr = TextResponses.getInstance();
            MultiMap mm = tr.getResponses();
            Enumeration valuesEnum = mm.keys();
            while (valuesEnum.hasMoreElements()) {
                String element = valuesEnum.nextElement().toString();
                if (mm.containsValue(element, phone)) {
                    return element;
                } else {
                    continue;
                }
            }
            return null;
        }
    
        //  public void missedCallSMSSender(final String address) {
        //      try {
        //          if(_callIdAnswered != _callIdIncoming){
        //              //              if (address.startsWith("//")) {
        //              //                  address = address.substring(2);
        //              //              }
        //              String answer = this.getResponseByPhone(address);
        //              if (answer != null) {
        //                  answer.getBytes();
        //                  Datagram returnpacket = _dc.newDatagram(_dc
        //                          .getMaximumLength());
        //                  returnpacket.setAddress("//" + address);
        //                  returnpacket.setData(answer.getBytes(), 0, answer
        //                          .length());
        //                  _dc.send(returnpacket);
        //              }
        //              _callIdAnswered = _callIdIncoming = -1;
        //              //_phoneCallsHash.remove("" + _callIdIncoming);
        //          }
        //      } catch (Exception e) {
        //          System.out.println(e);
        //      }
        //  }
    
        public void callIncoming(final int callId) {
            if(_callIdIncoming != callId){
                UiApplication.getUiApplication().invokeLater(new Runnable(){
                    public void run() {
                        _callIdIncoming = callId;
                        PhoneCall phoneCall = Phone.getCall( callId );
                        _phoneNumber = null;
                        try {
                            _phoneNumber = phoneCall.getDisplayPhoneNumber();
    
                            String tempNumber = null;
                            for(int i = _phoneNumber.length() -1 ;i >= 0; --i) {
                                if(Character.isDigit(_phoneNumber.charAt(i))){
                                    tempNumber = _phoneNumber.charAt(i) + ((tempNumber == null) ? "" : tempNumber) ;
                                }
                            }
                            _phoneNumber = tempNumber;
    
                            System.out.println("**bleep** Phone Number: " + _phoneNumber);
                        } catch(NullPointerException npe) {
                            _phoneNumber = "0";
                            System.out.println("NULL!!!!" + npe);
                        }
                    }
                });
            }
        }
    
        public void callAnswered(int callId) {
            _callIdAnswered = callId;
        }
    
        public void callDisconnected(int callId) {
            UiApplication.getUiApplication().invokeLater(new Runnable(){
                public void run() {
                    //System.out.println("**bleep** Phone Number: " + _phoneNumber);
                    //SMSSenderReceiver.this.missedCallSMSSender(_phoneNumber);
                    String address = _phoneNumber;
                    if(_callIdAnswered != _callIdIncoming){
                        //                  if (address.startsWith("//")) {
                        //                      address = address.substring(2);
                        //                  }
                        String answer = getResponseByPhone(address);
                        if (answer != null) {
                            answer.getBytes();
                            try {
                                Datagram returnpacket = _dc.newDatagram(_dc.getMaximumLength());
                                returnpacket.setAddress("//" + address);
                                returnpacket.setData(answer.getBytes(), 0, answer
                                        .length());
                                _dc.send(returnpacket);
                            } catch(Exception e) {
                                System.out.println(e);
                            }
                        }
                        _callIdAnswered = _callIdIncoming = -1;
                    }
                }
            });
        }
    ...
    

    The goal is to send an SMS for each missed call. Thus, on incomingCall while I get caller Id and phone number assign them static variables. If the call is answered I catch the call id also. Once the call is disconnected I just check the id of appeal responded and id entering in case they differ from each other, I got a call from miss and I send a SMS.

    The problem is once the callDisconneted is called, I don't have the value of _phoneNumber. On incomingCall I could see the number, but not after all. Why? Seems to be a fundamental basis on the multi-thread.

    Anyone know what is happening?

    Thanks in advance!

    --

    This question probably has to do with the fact that the listener to call is actually coming in your code on the phone application thread. Each application gets a copy separate from the static context. As a result, you won't see the same data when you access this variable in your own application process.

    You can probably here either: (a) send yourself a form of global event listener call, then pick up the event in your own process, or (b) use the runtime store to keep the value so that the two processes can * see * it.

  • The measure of multi-lane thermocouple simultaneously via 9213 (with USB 9171)

    I'm just back in Labview after 10-year absence.  My first goal is to measure thermocouples of Type J and T with a 9213.  A 9213, 16 channels, but the screw example I found so far allow only a channel be selected at a time.  Ideally, it would be good to have the option to select among the 16 tracks to read at some point (that is, any combination of 1 to 16 and channels jump if necessary).

    Secondly, multiple channels for simultaneous playback selection will affect the sampling frequency?  For example, if 10 samples can be read per second, and selects 16 channels, does it take 1.6 seconds for all read?  And what happens if I put the sampling rate of 1 second in the previous example?  It keep track of cycles "planned" and keep running unfinished loops after that I have to stop?

    Thirdly, I don't understand whether it is possible to assign a different thermocouple for each channel type.  Can I combine thermocouples of Type J and T on the same card?  Is the case, then how to set each channel individually?

    Fourth, I met error readings when you select a channel open to the VI for the 9213.  Is this normal?  Ideally I would like to be able to Exchange thermocouples during continous measurement and worry that the program will crash.

    Example of two screws, I found are: "Input.vi Thermocouple - continuous" from the Finder of example of OR.  The other is spent by the sample project "continuous measurement and logging (OR-DAQmx)."


  • Question of the multi-state object

    Hello again,

    I would like to have the text window appear only on the click of a button.

    What I have to use a tip for this action or can I simply use a multistate object that I switch?

    If so, how to create an invisible State standard for only the second State as the visible box/picture I want to show?

    Am I missing something?

    Thanks for any help!

    I have to leave now for a meeting, will be back in a few hours.

    You can post a screenshot of the status display? And I would prefer to use ' change the State of... "to be very precise. Did you really follow the workflow, I explained to him? I always double check before answering a question.

    Here are some reading, I used multistates:

    1 share = 5 buttons toggle - Captivate blog

  • Question of law multi Folio

    That's what I see in App Builder DPS (below). Why can't I see Multi Folio options here?

    I set up the new Adobe ID on our Admin account and gave the user all privileges. Y at - it a step that I missed?

    DPS App.png

    Why don't I see this:

    Screen Shot 2014-10-07 at 3.52.46 PM.png

    Did you launch DPS Builder App in your Applications folder? If this isn't the case, you should do it. If you choose Create App in the Panel menu, you are forced into a unique-folio application.

  • Questions of grounding more info

    First of all im going to talk about my setup. (If its even rellivent)
    I have my desktop with my 2 computer speakers on and the screen in the middle. To the right of these speakers (on the desktop), I put the 'ART USB Phono' preamp. Trendy top is from him to the PC USB cable.
    I use 'Line In' on the preamp with cables that go from the 'Phono' out on the turntable.
    The Platinum is on another office to the right of the mine, the turntable is placed between 2 big 'Behringer' speakers (monitors) but theyre off! If the deck is about a metre or 2 to the right of the PC on a desk different control.

    In any case, I went to register this morning of vinyl and even before to play the recording, I was getting a REALLY loud staticy interference noise. Has proved that it was the USB cable to the back of the preamp, so I unplugged/replugged it in and I was getting more static. First of all, what's happened? Was - it USB cable touch other cables on my floor or what?

    I did not upgrade to the Earth only because I don't know how it works and how to properly put in place...

    I don't know if the wire would be the preamp stage then to pc? Or the turntable to PC then another Earth wire of the preamplifier to the PC? How would this work?

    Please help guys...

    Thank you very much.

    Hmm... When it comes to cable signals, the ground is not the easiest thing in the world, however you look at it.

    The continuity of the Earth (or ground) in your system will ground turntable to the preamp, and from there to the PC via the USB cable. The cable itself has a shielded external connection, and which is attached to the case of jams. Any breach of this string (even just a slightly loose Cableusb) will give rise to the kind of static type noise that you got. The whole system is not be connected directly on the ground to work either - it's the connections that are important from a point of view of signal. Often, just having connections to earth potential signals about is sufficient when it comes to screening of interference.

    Additional ground would help? Answer is - very probably not. The reason is that if you join some of this equipment as well as separate ground connections, you create two paths to a common ground rather than just the one that you had earlier. And it takes very little of potential difference between the points of connection in fact to create what is called a "loop of UM ' (or ground loop) which will put in place more noise there is in the first place!

    Unfortunately, the Earth and signal security requirements lead screening pretty much conflict with each other - 'good' security invariably land causes hum loops unless you cut one end of each cable between each piece of equipment and rely on the receptacle grounding to provide the common point. Problem with that is that if you unplug an in-between of feeding equipment, you've broken the chain of signal grounding and you could easily end up with massive hums who has no intention of. That is why all sensitive material to the shield of the issues (such as your turntable) has a separate ground between her connection and upstairs preamplifier with the really sensitive part, isolated within the hub. Little separate wire that goes to the floor on the preamp is the only connection, you must use the land. But it creates this reference to the ground must be connected to the Earth of your PC, and happens via the USB screen.

    So if you want to try an arrangement separate from the ground, the only place where you could possibly get an advantage (only with the possibility of introducing some UM, as mentioned above) is having a connection separated between the Terminal on the preamp USB Earth with your PC - just a piece of wire is attached to the case; at least it could overcome the problem of loose screen on the USB cable connection. But quite frankly, change anything else is just as likely to cause problems such as cure them.

    If you experience, so whatever you do, do not try to remove any safety ground connection in the power outlets to get rid of hum, as some people do. It's simply asking trouble of the kind that you don't really want. There are always better solutions than that.

  • question of div multi-column

    I would like to create a section in my container of unique column have several columns.
    Since DivElement is a subclass of ContainerFormattedElement I thought it would be a good starting point.

    I would like to make the div 2 columns in the first place, column one inlineGraphic and in the second column, place a few lines of text length/br/duration/br/span.

    The difficulty seems to be...
    How can I get the different columns for a div over the entire TextFlow?
    How to indicate where the column should break up (after the InlineGraphic)?

    This whole thing could disappear if we simply float working with InlineGraphic, but that doesn't seem to be abytime soon, so this would be a viable solution for the moment.

    The attached markup was generated by the help of actionscript code and export via TextFilter...
    Any thoughts?

    Is anyone out there?
    Thank you
    Tim

    DivElement does not support the columns - although I think it should one day, that is why the API is suggestive. I think it would be possible to emulate it, but should enter the text of the two TextFlows. Text stream via the first container, thentake overflow text and copy it to a second casting that would elapse in the second container.

  • SAN Multi-pathing recommended?

    Hello

    I have a few questions on multiple paths SAN using UCS.

    I will be detailed for each question.

    1. Since there is no option to switch to vHBA, should use the features underlying the o/s (e.g. ESX/ESXi) MPIO? I think that MPIO for ESX/ESXi is enabled by default but to Win2008, we will need to activate it?
    2. My Clariion Bay has 2 SPS (SP - A and SP - B). Each processor has 2 ports. I have these 2 ports cracks to two MDS with a MDS connection to a fabric of interconnection respectively. Should I create two SAN fabrics for these 2 lanes (2 different VSAN)?
    3. What is the convergence time the host to use a different path of failure? (a few seconds or a minute or two?) This is related to question 2, if, for example, the convergence time should take approximately 1 min +, then it makes no difference with 2 different fabrics of SAN compared to 1, because Let's experience downtime anyway.
    4. I have a LUN (0 logic unit number) of start-up and LUN 1 as the store of data LUNS for each host. Since then, my strategy of UCS start-up (for blade/host 1) aura vHBA1 (Primary-> SP-A/port-0, secondary-> SP-B/port-0) and vHBA2 (Primary-> SP-A/port-1, secondary-> SP-B/port-1), should I give to the property for all LUNS for host1 to SP - A?
      • Will I have problems if I put the boot logical unit number (LUN 0) in SP - A and the data store logic (LUN 1) in SP - B unit number? In this case, I don't know how the selection of the path as the path in writing is always on SP - A, and only in the event of failure of the path or the SP failures, it will use the secondary path. Would appreciate some advice on this

    Thank you.

    Answers online.  Others can chime in if they have any comments or suggestions.

    See you soon,.

    Robert

    steven.pw.lau wrote:

    Hi,

    I have a few questions on SAN Multi-pathing using UCS.

    I will itemized each questions.

    1. Since there's no failover option for vHBA, we would need to use the underlying MPIO features of the O/S (e.g. ESX/ESXi)? I believe MPIO for ESX/ESXi is enabled by default but for Win2008, we'll need to enable it?

    [Robert] - Correct.  There's a native multipathing pluging (NMP) in VMware, but for Windows you'll need additional config/software.

    2. My Clariion array has 2 Storage Processors (SP-A and SP-B). Each SP has 2 ports. I have these 2 ports meshed to two MDS with one MDS connecting to one Fabric Interconnect respectively. Should I be creating two SAN fabrics for these 2 paths (2 different VSANs)?
    [Robert] - Yes.  Connect one VSAN on each FI.  Your FC uplinks will each connect to an upstream MDS (assuming each MDS is not connected to each FI).  You will still have 4 storage paths available to each host using two vHBAs.  3.  What is the convergence time for the host to use another path when failure occurs? (few seconds or a minute or so?) This is related to  question 2 if for example, the convergence time were to take around 1 min+, then it makes no differences having 2 different SAN fabrics as compared to 1 because we'll be experiencing downtime anyway.
    [Robert] - Failover for FC traffic is handled by the host, not UCS.  It's up to the host OS to decide how & when to redirect traffic to the alternate path. Normally FC failover is pretty seamless.  FC traffic can't tolerate any lengthy of delays.  As soon as the SCSI command times out, it will jump to the other path. Again, this will vary from OS to OS, but generally its seamless to the application/OS.

    4. I'd like have one boot LUN (LUN 0) and LUN 1 as the datastore LUN for each host. Since, my boot policy in UCS (for blade/host 1) will have vHBA1 (Primary -> SP-A/port-0, Secondary -> SP-B/port-0) and vHBA2 (Primary -> SP-A/port-1, Secondary -> SP-B/port-1), should I give the ownership for all the LUNs for host1 to SP-A?
    [Robert]  Yes.  Your primary boot target must be the "owner" of the LUN (and should be the "default" owner for that matter).  Only when SPA fails, will the LUN tresspass to SP-B and the secondary boot path will succeed during server boot up.   Keep in mind, this is only for booting.  Once its up & running, the OS handles failover activities.  5. Will I have problems if I only put the boot LUN (LUN 0) in SP-A and the datastore LUN (LUN 1) in SP-B? For this case, I'm not sure how the path selection will work as the writeable path is always on SP-A and only if path failure occurs or SP failures, it will only use the secondary path. Would appreciate some advice on this

    [Robert] Boot policy & data path selection are two different things.  If your boot LUN is targeting SPA, it will likely maintain that path as the OS loads.  Once the OS loads you can manipulate the path for any LUN. If desired you could set the "Active" path of your Datastore LUN within vCenter to be the other SP (SPB in your case) by modifying the path selection policy and setting it to "Fixed" PSP.  The default Path Selection Policy is MRU (Most recently Used).  This is normally adequate, but if you want to manually load balance your traffic the Fixed PSP policy is the way to go.

    Thank you.

  • Single network or Multi vMotion Nic card

    Here are our current design for our soon vSphere 5.1 deployment

    There has a been a good bit of internal discussions on whether to use a single 10 GB for vMotion network adapter or use two NICs 10 GB for vMotion

    Most of the debate has been around "isolate" the vMotion traffic and makes it as localized as possible

    We all have the vMotion traffic is a vlan separate, vlan127 you can see in our design

    The big question becomes exactly where will the vMotion traffic? What switches/links it really go?

    Is this correct?

    1. If we start with a vMotion nic, then once that Vmotion begins traffic will be generated from the host lose the virtual machine and the host wins the virtual machine. In this scenario, traffic will cross a BNT switch. This leads to two conclusions

      1. Traffic is never as far away as the nucleus of Juniper
      2. vlan127 (vMotion) didn't need to be part of the trunk, go to the heart of Juniper to the TNB
    2. If we go with two NICs of vMotion, then the two 10GB network adapters might be involved in vMotion. This means that vMotion traffic between two hosts ESXi could hit a switch BNT, browse the battery connections (two 10 GB between the BNTs connections) and go to another host via a network card. GB 10 it has also led to two conclusions:
      1. Traffic is never as far away as the nucleus of Juniper. He remains isolated on a single switch BNT or moves between BNT switches through the two stack 10 GB connections
      2. vlan127 (vMotion) didn't need to be part of the trunk, go to the heart of Juniper to the TNB

    Design.png

    vMotion traffic is just unicast IP traffic (well good, except for some bug) between ESXi configured for vMotion, vmkernel ports if all goes well insulated in a non-routed layer 2 broadcast domain (VLAN). Simple as that. Considering that the traffic will cross physically regardless of the physical NIC is configured for the respective vmkernel ports. The path between the two is obviously depends on the layer 2 switching/STP infrastructure, which in your case would be just the blade chassis switches.

    Multi-NIC vMotion essentially implements several independent streams between different IP addresses and MAC, belonging to the same host. Consider the following:

    Host A and B with vmk1, using physical vmnic1, connected to physical pSwitch1 and vmk2, using vmnic2, connected to pSwitch2. The two pSwitches directly the trunk the VLAN vMotion between them.

    If the two hosts have only vmk1 is enabled for vMotion, traffic will never pass by pSwitch1. If host B has only vmk2 enabled for vMotion or you switch uplink, it'll pass the two pSwitches.

    Now, if you enable the two interfaces for vMotion vmkernel, it is difficult to say how the hosts decide what vmk connects to that. You may find yourself going through the two pSwitches for the two water courses, or you're lucky and you end up with source and destination interfaces that reside on the same pSwitch. I don't know how ESXi decides the pairings, this article seems to suggest it's done deterministically for that in a similar configuration, the same key vmk would connect between them:

    http://www.yellow-bricks.com/2011/12/14/multi-NIC-VMotion-how-does-it-work/

    Whatever the case, unless you need to other hosts on different switches, connected through your hearts only, to be able to vMotion between hosts, there no need at all to mark the vMotion VLANS on your links between chassis and Core switches.

    You see, your question of vMotion Multi-NIC is completely unrelated to this.

    If we start with a vMotion nic, then once that Vmotion begins traffic will be generated from the host lose the virtual machine and the host wins the virtual machine. In this scenario, traffic will cross a BNT switch. This leads to two conclusions

    1. Traffic is never as far away as the nucleus of Juniper
    2. vlan127 (vMotion) didn't need to be part of the trunk, go to the heart of Juniper to the TNB

    1. Yes.

    2. Yes.

    Circulation * could * crosses both switches BNT, according to what I explained above.

    If we go with two NICs of vMotion, then the two 10GB network adapters might be involved in vMotion. This means that vMotion traffic between two hosts ESXi could hit a switch BNT, browse the battery connections (two 10 GB between the BNTs connections) and go to another host via a network card. GB 10 it has also led to two conclusions:

    1. Traffic is never as far away as the nucleus of Juniper. He remains isolated on a single switch BNT or moves between BNT switches through the two stack 10 GB connections
    2. vlan127 (vMotion) didn't need to be part of the trunk, go to the heart of Juniper to the TNB

    1.Yes.

    2.Yes.

    Personally, I'd go with Multi-NIC vMotion use NIOC with soft actions in your config file.

  • First Folio App multi number

    Hello
    I'm fighting to see the first question in my multi folio app.

    I made a folio of the multi app in the generator of DPS. For test purposes, I downloaded the file API.
    Everything is good. The apears on my ipad App. and worked well. The Libryry is empty now.

    Secondly, I wanted to load with my first question.
    I created a new folio in InDesign and published it in Folio producer/organiser.
    Using Adobe ID it as I used it for the multi app problem in the generator of DPS.

    But the library is still empty.

    Any suggestions, where is my fault?

    No, v25 folios still appear in previous apps. You just can't download.

    What is the size of the folio? It must be 1024 x 768 for iPad SD

  • Screen starts flashing on Satellite U400

    (Satellite U400 laptop purchased in June 2009)

    Today the screen started to Flash, I unplugged it and it stopped, and it worked when I plugged it in.
    I checked the refresh rate of the screen and it is to 60 Hertz

    Is there an underlying problem?
    He is currently, I should check anyway get?

    Just a question; Do you mean the external monitor?

    > I unplugged and it stopped, and it worked when I plugged it in.
    Do you mean that you have disconnected from the laptop AC adapter?

    This sounds like the problem known to me
    I read many similar discussions in various forums
    Generally, this is question of ground loop which can cause a blink that you can solve the problem by using an adapter 2-pin

  • Newspapers of Skype on Mobile and on the version of office at unexpected times

    Hello

    My Skype disconnects always unexpected,

    on the mobile version just after I login... 2-3 seconds more later Im disconnected automatically

    on the version (tested on win7 and win8) desktop after a few minutes, or suddenly in the middle of a call.

    Can someone suggest me a solution? It is not my hard or software. I use Win 8.0 installation.

    And I'm on LG G2 with android 4.0. on a new phone.

    Thank you in advance!

    Bert

    PS: Sorry if this isn't the right section of the forum, was not sure where this post because it is a question of platform multi with my account.

    If your Skype account is bound with the Microsoft account, then try to separate them.

    https://support.Skype.com/en/FAQ/FA12211/how-do-i-unlink-my-Skype-and-Microsoft-or-Facebook-accounts

  • Determination of entry-level PCI-6034E

    Hello, I have a few questions. I use K thermocouples to measure temperature using the following data acquisition system:

    • SCXI-1000 chassis
    • Connection block SCXI-1102 b
    • SCXI-1303 terminal block
    • Controller PCI-6034E

    With the SCXI-1102 b PCI-6034E, which of these two determines the polarity and the gain of the signal?

    PCI-6034E offers only bipolar mode? (- 10V + 10V /-5V + 5V /-0, 5V + 0, 5V /-0, 05V + 0, 05V)

    What are the earning opportunities in the PCI-6034E (even if it's a programmable software)?

    Thank you


  • Draw the dots of different colors and sizes

    Hello

    Is it possible to draw several dots of different colors and sizes?  Small size would be green, medium-sized yellow and big sizes Red?  I tried to use XY and field Multi-XY, but I'm not having much luck.  Looks like there may be a way to do it with ground Multi-XY if I use Plot XY cosmetics and size Scatter Plot cosmetic, but I can't find anything on the functioning of these two options and it did not have a lot of sense to me when I am just playing with it.

    Thank you!

    Gerd has the right idea.

    Say you have 3 ranges: < a,="" a-b,=""> B

    You check each data point as it came, to see who will he fell in.

    Build 3 separate tables and cluster each a vs a table 1 d of the corresponding X values.

    Then if you pass these 3 groups to a XY Chart, you get a graph showing the colors and different styles for each range.

Maybe you are looking for

  • A few questions about the recovery image installation

    A recovery USB drive created using the Recovery Media Creator contains the Windows operating system and is it the Windows key to reinstall - how it is activated. Is it different for the repair disk. Can be used for a new installation of Windows 7 on

  • Restore the backup notes

    Hello I deleted by mistake the icloud for my previous whithout unplugged iphone notes and connect to the new iphone. Is it possible to restore these notes? Thanks for your help

  • EarPods

    I visited Apple Store last Saturday, to check my EarPods for its break-up at each stop of the sound all listen to anything. A flushed tech EarPods with air, but the noise does not stop. What I can do. The iPhone 6 s is new. Thank you.

  • Prioritization of bandwidth for Xbox Live

    Is there a way to put xbox live traffic priority bandwidth on streaming of web services such as youtube and spotify? When these services are used xbox live games on the internet become unbearable to play as you would expect... (The ping goes through

  • change of OS - HP a6700y desktop PC - need driver for vista x 64 xp x 32 conversion assistance

    Greetings, I'm changing on a newly purchased HP desktop computer operating systems - a6700y.  Done with vista, especially this x 64 version - too consuming a lot of resources.  Anyway, if anyone knows what the good drivers are for the conversion, I'd