Anyone know how to split numerical attributes to make decision tree??

Hi experts,
I would like to know how to find optimal multi splits for numerical attributes
in Decision Tree Learning.
For splitting categorical attributes, gini and gain index are used and the splits that
produce the best gain are selected.
However, in case of numerical attributes
how do you find the best splits?????
Please help me !!

I think binning/discretization techniques are used for this. There are some papers on this topic that may help you.
http://citeseer.ist.psu.edu/context/327482/216944
Regards
Sunil

Similar Messages

  • Anyone know how to split an event?

    I tried the method outlined by Appleman but I receive an alert message that says " Unable to delete rejected clips" So I cannot use his method.
    There has to be a way..?
    or just iMovieHD?

    Select the frames in the Project (Not the Event) where you want the title. There will be a Yellow Border around them. Then select Edit/Split Clip. Drag your title onto the clip. This way the footage is still moving.
    If you prefer not to have the footage moving on your title, drag the yellow border in your Project, (not Event) from the beginning of the clip to the point where you want the Title, and select EDIT/SPLIT CLIP.
    Now, move your cursor to the last frame of the first clip and select EDIT/ADD FREEZE FRAME. You will have a still image there and you can drop a title on it.

  • My i phone plays music but the apps don't make any noise. Anyone know how to get sound out of apps?

    Does anyone know how to get app games to make sound. The i pod works fine!

    You might have turned of the sound in settings under sounds drag the ringer option all the way. Hope this helps.

  • Hi my boyfriend and I split up and we agreed I would keep the iPad. Since breaking up we are no longer on speaking terms but the iPad is still signed In to his Apple ID. Does anyone know how to reset the iPad without his password?

    Hi my boyfriend and I split up and we agreed I would keep the iPad. Since breaking up we are no longer on speaking terms but the iPad is still signed In to his Apple ID. Does anyone know how to reset the iPad without his password?

    No, there is no way to reset the iPad without the AppleID and pasword.
    See here: http://support.apple.com/kb/ts4515

  • Anyone know how to use a regex to find an attribute in a tag?

    Does anyone know how to do the following using a regular
    expression in dreamweaver?
    If cellpadding="ANYNUMBER" is located anywhere in a table
    tag, get rid of it? I can get it to work by searching for table
    cellpadding="([0-9]+)" but it only works if nothing is in between
    table and cellpadding. If it looks like table border="0"
    cellpadding="1", it won't work because border is in the way.

    Since 'cellpadding' can only be used in a table tag, just
    search for '
    cellpadding="([0-9]+)" and replace it with ''.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "jm1275" <[email protected]> wrote in
    message
    news:e5hl20$ge8$[email protected]..
    > Does anyone know how to do the following using a regular
    expression in
    > dreamweaver?
    >
    > If cellpadding="ANYNUMBER" is located anywhere in a
    table tag, get rid of
    > it?
    > I can get it to work by searching for table
    cellpadding="([0-9]+)" but it
    > only
    > works if nothing is in between table and cellpadding. If
    it looks like
    > table
    > border="0" cellpadding="1", it won't work because border
    is in the way.
    >

  • Does anyone know how to simply edit the text in the spine of hard cover, 40 page book in the book mo

    Does anyone know how to simply edit the text in the spine of hard cover, 40 page book in the book module? I can click into any other text window and edit and change attributes but I am locked out of editing text when it comes to the spine of the book. I spoke to Blurb support and they referred me to Adobe. I spent 45 minutes with support here - no one knew. I am still waiting for a call back with an answer... not holding my breath as it's been a few hours now. HELP!!!

    Thanks for your reply John. I have experienced all the fiddly aspects you mentioned - these are attributes and although changing them requires the skill of a surgeon's hand - it's the actual editing of the text I can't seem to access anymore. The box just won't allow me to do anything except change attributes. Does that make sense? And it's only on the spine where I am having this issue. Puzzled! I have even rebooted the program and just now the computer - to no avail. 

  • My 1Ghz 17inch G4 Powerbook LCD is broken.  Anyone know how much to replace

    Hi, I accidentaly broke my friends 17inch 1ghz G4 powerbook and I was woundering how much would it coast to send it back to apple to repaire it? Or anyone know how much it coast to order a new 17inch LCD for it? Help please.

    I believe Apple charges about 1200$ to replace the screen. Prob more than the 1ghz machine is even worth. There are a few companies online that charge between 700 and 800 bucks to do the repair also. A used screen offa ebay will set you back between $250 and $350. But its no easy chore to split open the top case, let alone take apart half the machine to replace. Your best bet is probably looking for a 17" PB on ebay with a bad logic board and other striped of parts and swapping out the whole top. Then selling whats left on ebay and recouping a couple of $$.

  • Anyone know how to output an XML file from ABAP to a non sapgui location?

    I have a program that creates XML and then outputs a file via CALL METHOD cl_gui_frontend_services=>gui_download. But now I want to execute the program in background mode and therefore I need to be able to output that XML to a NON sapgui file location. Current code creates the XML to an internal table which is binary then the gui_download method converts that to output XML. .  Does anyone know how I can change the code to either a) output the XML to an internal table which can be output via, say, a TRANSFER command..or, b) output the created binary table of XML to a NON sapgui file location?
    Excerpts from current code are as follows:
    first the XML is created (to the binary file)
          Creating a ixml factory
      l_ixml = cl_ixml=>create( ).
          Creating the dom object model
      l_document = l_ixml->create_document( ).
          Fill root node with value XML
      l_element_xml  = l_document->create_simple_element(
                  name = 'XML'
                  parent = l_document ).
          Create tag 'HEADER' as child of 'XML'
      l_element_header  = l_document->create_simple_element(
                  name = 'HEADER'
                  parent = l_element_xml  ).
    header information about the file and general data about the fleet follows
      l_value = c_fleet_import.
      l_element_dummy  = l_document->create_simple_element(
                name = 'TYPE'
                value = l_value
                parent = l_element_header ).
    etc.......
    then the xml is connected to the stream factory and rendered
      Creating a stream factory
      l_streamfactory = l_ixml->create_stream_factory( ).
      Connect internal XML table to stream factory
      l_ostream = l_streamfactory->create_ostream_itable( table = l_xml_table ).
      Rendering the document
      l_renderer = l_ixml->create_renderer( ostream  = l_ostream
                                            document = l_document ).
      l_rc = l_renderer->render( ).
      Saving the XML document
      l_xml_size = l_ostream->get_num_written_raw( ).
    and then output to the file
      IF sy-subrc = 0.
        CALL METHOD cl_gui_frontend_services=>gui_download
           EXPORTING
             bin_filesize = l_xml_size
            filename     = 'g:\sapdms\BSCC-DEV\EFPAC XML Files\ALL.xml'
           filename     = '/TRICK/727/OUT/ZEFP/EFPAC.XML' "doesnt work with sap gui
             filetype     = 'BIN'
           CHANGING
             data_tab     = l_xml_table
           EXCEPTIONS
             OTHERS       = 24.
    as implied by the comments the method above will successfully output the XML file to the g:drive but will not output to /TRICK/ location, which is where I need it to go in a background mode run.
    This is a problem which has defeated all our local expertise and I would appreciate any help given... Barry Jones

    Try this code below:
    data  l_xml_table2  type table of xml_line with header line.
    W_filename - This is a Path.
      if w_filename(02) = '
        open dataset w_filename for output in binary mode.
        if sy-subrc = 0.
          l_xml_table2[] = l_xml_table[].
          loop at l_xml_table2.
            transfer l_xml_table2 to w_filename.
          endloop.
        endif.
        close dataset w_filename.
      else.
        call method cl_gui_frontend_services=>gui_download
          exporting
            bin_filesize = l_xml_size
            filename     = w_filename
            filetype     = 'BIN'
          changing
            data_tab     = l_xml_table
          exceptions
            others       = 24.
        if sy-subrc <> 0.
          message id sy-msgid type sy-msgty number sy-msgno
                     with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        endif.

  • My premiere project file size just went from 190MB to 5.61GB... and now it won't open! Anyone know how this happened?

    My premiere project file size just went from 190MB to 5.61GB... and now it won't open! Anyone know how this happened? Or how to prevent it from happening again? Thankfully I saved a backup project of the 190MB file size.

    warp stabiliser?

  • Does anyone know how to fix an error in cc photoshop on Win8 that says puppet warp could not complete request due to program error?

    Does anyone know how to fix an error in cc photoshop on Win8 that says puppet warp could not complete request due to program error?

    Questions on using a specific program should go in that program forum
    This forum is about the Cloud as a delivery process, not about using individual programs
    If you start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • TS3899 I can't SEND email from Telus account in Alberta, Canada? Does anyone know how to set up the Outgoing server? Help! And thanks!

    Can't SEND email from Telus account in Alberta, Canada, unless I go to web mail. Does anyone know how to set up the Outgoing server? Incoming is fine. Outgoing used to work. We changed it when we went to another location, and can't get it back. Telus support can't fix it. Neither smtp.telus.net NOR mail.telus.net works for Outgoing server to send mail. Please help! Thanks.

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    Setting up and troubleshooting Mail
    http://www.apple.com/support/ipad/assistant/mail/
    Server does not allow relaying email error, fix
    http://appletoolbox.com/2012/01/server-does-not-allow-relaying-email-error-fix/
    Why Does My iPad Say "Cannot Connect to Server"?
    http://www.ehow.co.uk/info_8693415_ipad-say-cannot-connect-server.html
    iOS: 'Mailbox Locked', account is in use on another device, or prompt to re-enter POP3 password
    http://support.apple.com/kb/ts2621
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Try this first - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    Or this - Delete the account in Mail and then set it up again. Settings->Mail, Contacts, Calendars -> Accounts   Tap on the Account, then on the red button that says Remove Account.
     Cheers, Tom

  • Adobe Creative Cloud (Desktop) does not work properly. The application is blocked : it could not be launch neither stopped. I'm on MAC Yosemite OS, does anyone know how to remove it properly or to force its stop. It does not appear in the launched applica

    Adobe Creative Cloud (Desktop) does not work properly. The application is blocked : it could not be launch neither stopped. I'm on MAC Yosemite OS, does anyone know how to remove it properly or to force its stop. It does not appear in the launched applications.

    I received no error message. The application was just trying to find applications unsuccessfully.
    I am using MAC OS 10.10.1
    I tried to uninstall the application  but it seems that a kind of deamon is still installed thus providing me to reinstall properly. Do you know where are the elements to remove in order to get my machine just like before ?
    Otherwise I would have to reinstall everything and this would be a pain.
    Thanks for your help.

  • My iPhone 4 no longer connects to my car or alarm clock after a recent sync to my computer.  The message at I get when trying to. Connect is "this accessory is not optimized for the device" or something like that.  Anyone know how to fix this?

    My iPhone 4 no longer connects to my car or alarm clock after a recent sync to my computer.  The message at I get when trying to. Connect is "this accessory is not optimized for the device" or something like that.  Anyone know how to fix this?

    Hello there philp_69,
    If I understand correctly it sounds like your phone hasnt been recognized in iTunes on your PC since the last couple of updates. I would use the troubleshooting in the following article which will walk you through the steps one by one. 
    iPhone, iPad, or iPod touch not recognized in iTunes for Windows
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • Anyone know how to resolve iPhone 4 dropped calls as I have a case on and it's still losing every single call I make at least twice and I'm sick to the back teeth of it?

    Hi all I recently rang my service provider to complain about my
    iPhone 4. Iv done this several times but they always fob me off. This time I kicked off and they told me I would have to speak to apple. I did and they told me there was nothing they could do as my phone was out of warranty.
    Its really frustrated me cause it's a widely publicised issue that apple dropped a complete bollock allowing such a major flaw ever get released and then they have the cheek to use the warranty as a reason. This issue should not have anything to do with warranty as it's a fault
    With every single iPhone 4 out there. There should have been a recall and the issue resolved. Im disgusted apple and I won't be buying anything from any of your products again.
    Does anyone know how I can resolve this as apple want to charge me to repair even though it's there fault this issue exists?
    Thanks

    I have taken it back to the Apple store genius bar, but they say they don't see anything wrong. Well unless you use it all day and experience the problems when they happen, you wont see anything wrong. But there are lots wrong with it. But this would be the same store as I purchased the phone. And they backed up my old Iphone 4, but were not able to get anything to load back onto my new phone. So, I lost pretty much everything. But over time, some of my contacts have started showing up, although i am still missing over 800 of them.

  • I recently purchased a new macbook and am having trouble syncing my iPhone with the iTunes. It won't allow me to delete any of the music on my phone, so I am unable to make room for the new software upgrade. Does anyone know how to fix this?

    Does anyone know how to enable editing on a new computer? I only have an 8gb phone and over 4gbs of music, half of which I don't even listen to anymore. I really want it off my phone, but when I plugged it into my new macbook nothing would delete. My old computer barely turns on so I can't even plug it into the old one to delete anything. I hit the sync button on the new computer and that didn't help either. I'd really like to upgrade to the new software but don't have the room on my phone until this music/a few apps are deleted. Any help would be appreciated!!

    Here are two screen shots to show you what I am seeing.  The first screen shot shows it allowing me to select (highlighted in blue) my admin user (which is what I am locced in as).  The second screen shot shows it allowing me to select the "Guest" user (highlighted in blue).  However when I click on the user "Orion" nothing happens.  It will not change to highlight that user.

Maybe you are looking for

  • A question about assigning a default value

    Hi guys, I have a question about assigning a default value to a Numeric Decision CO. This Co needs 2 parameters to compare with each other. I wanna assign para1 during runtime and para2 during design time, but I have no idea how to assign a default v

  • My iMac (24-inch, Early 2009) will not play DVDs.

    My iMac (24-inch, Early 2009, purchased new from an Apple store) will not play DVDs.  When I attempted to open the DVD Player file in Utilities I got the following error message: 'A valid DVD drive could not be found. [-70012]'  I've downloaded nearl

  • How to pass the value of an Excel cell to XL Reporter

    Hi guys, I'm posting this here because no one could help at yahoo's XLR group. My problem is I need to passa the value of an Excel cell to ixGetData. Searching I found there where 3 possible ways, 1)      =ixGetData("manager"; "RLH6J"; "[Pelissari].[

  • How to Intergrate Flex with RAD7 or RAD7.5 ? urgent plz......

    Hi all,        I want to use flex plugin with RAD7 or RAD 7.5 is there any way to integrate RAD with flex....please suggest me any link or procedure to integrate . and is there any compiling issues will occur while building the code? thanks -Balu

  • OVM Manager 2.2 - not starting after server move

    I have installed and configured OVS 2.2 and OVM Manager 2.2 and had all working and had everything running fine (I am having to use these versions to be compliant with the templates I wish to install) I then shut down everything and moved the server