<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: anojaa gnanes</title>
    <description>The latest articles on DEV Community by anojaa gnanes (@anojaa16).</description>
    <link>https://dev.to/anojaa16</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F260314%2F58ce9f05-d1d4-4992-9a21-e893a0620f1f.jpg</url>
      <title>DEV Community: anojaa gnanes</title>
      <link>https://dev.to/anojaa16</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/anojaa16"/>
    <language>en</language>
    <item>
      <title>Machine Learning Algorithms</title>
      <dc:creator>anojaa gnanes</dc:creator>
      <pubDate>Mon, 08 Jun 2020 04:25:55 +0000</pubDate>
      <link>https://dev.to/anojaa16/machine-learning-algorithms-4dm9</link>
      <guid>https://dev.to/anojaa16/machine-learning-algorithms-4dm9</guid>
      <description>&lt;p&gt;Part 1: Logistic Regression&lt;/p&gt;

&lt;p&gt;Welcome to Article “Machine Learning Algorithms”. I write continuous article about Machine Learning Algorithms.I hope this article will help to who willing to learn machine learning .&lt;/p&gt;

&lt;p&gt;First we discuss about what is Regression?” Regression is the predictive modelling Technique” the Regression will estimate the relationship between a dependent variable and an independent variable.&lt;/p&gt;

&lt;p&gt;So what is Logistic Regression and why use that? In this Logistic Regression the Results/outcome should be generated in Binary format it is used to predict the outcome of a categorical/discrete variable.outcome should be like in this format. zero or one(0/1),true or false.&lt;/p&gt;

&lt;p&gt;Logistic Regression We have the categorical(discrete) variable, so predict value in discrete in nature. for an example tomorrow going to snow or tomorrow not going to snow. Its solved basically classification problems, the Logistic Regression graph called sigmoid curve.&lt;/p&gt;

&lt;p&gt;Now we can see the Logistic Regression use-cases in our real life. the first example is Weather prediction ,for an example In the whether prediction we predict ,Today which is going to rain or not going to rain. the result provide yes or no value.&lt;/p&gt;

&lt;p&gt;now we moving to classification problem,python help to multi classification problem.if we taken the vertebrates animals, here we can classifying its a “horse or not / bear or not bear” like that.its called as a class classification.&lt;/p&gt;

&lt;p&gt;there have few steps to implement to any machine learning algorithms ,I implement this algorithm with below steps.&lt;/p&gt;

&lt;p&gt;1.Collecting data =The First step is collecting the data and import the libraries.&lt;/p&gt;

&lt;p&gt;2.Analyzing data =The Second step is Analyzing data,here we creating the plot for check the Relationship between the variables.&lt;/p&gt;

&lt;p&gt;3.Data wrangling= The Third step is wrangling the data , we have the large number of data sets so we need to cleaning the unnecessary data /null value data from our data set.so we used this code.&lt;/p&gt;

&lt;p&gt;4.Train/Test=The Fourth step is Build the model on the Train data and predict the output the test data.here we use the Logistic Regression for the train the model&lt;/p&gt;

&lt;p&gt;5.Accuracy check =The final step is Accuracy checking ,calculate the Accuracy to the our Result&lt;/p&gt;

</description>
      <category>machinelearning</category>
      <category>datascience</category>
    </item>
    <item>
      <title>creating Components (part I)</title>
      <dc:creator>anojaa gnanes</dc:creator>
      <pubDate>Thu, 31 Oct 2019 05:30:44 +0000</pubDate>
      <link>https://dev.to/anojaa16/creating-components-part-i-46df</link>
      <guid>https://dev.to/anojaa16/creating-components-part-i-46df</guid>
      <description>&lt;p&gt;there are two  main ways to creating components in React.now we can discuss about how to create the components in the React.&lt;/p&gt;

&lt;p&gt;1.stateless functional components&lt;/p&gt;

&lt;p&gt;stateless component is just a plain javascript function which takes props as an argument and returns a react element, A stateless component has no state.&lt;/p&gt;

&lt;p&gt;They have 2 main features:&lt;br&gt;
*When rendered they receive an object with all the props that were passed down.&lt;br&gt;
 *They must return the JSX to be render.&lt;/p&gt;

&lt;p&gt;basic structure for the statelss components&lt;/p&gt;

&lt;p&gt;example:-&lt;/p&gt;

&lt;p&gt;import React from 'react';&lt;br&gt;
 import PropTypes from 'prop-types';&lt;br&gt;
const FirstComponent = props =&amp;gt; ( &lt;br&gt;
   &lt;/p&gt;
&lt;br&gt;&lt;br&gt;
Hello, {props.name}! I am a FirstComponent.&lt;br&gt;&lt;br&gt;
  );&lt;br&gt;
 FirstComponent.propTypes = {&lt;br&gt;&lt;br&gt;
 name: PropTypes.string.isRequired, &lt;br&gt;
}

&lt;p&gt;2.state components&lt;/p&gt;

&lt;p&gt;The heart of every React component is its “state”, an object that determines how that component renders &amp;amp; behaves. In other words, “state” is what allows you to create components that are dynamic and interactive.&lt;/p&gt;

&lt;p&gt;basic structure for the state components&lt;/p&gt;

&lt;p&gt;example:-&lt;/p&gt;

&lt;p&gt;import React, { Component } from 'react';&lt;br&gt;
 class SecondComponent extends Component {&lt;br&gt;
 constructor(props) { &lt;br&gt;
super(props);&lt;br&gt;
 this.state = { &lt;br&gt;
toggle: true &lt;br&gt;
};&lt;br&gt;
 this.onClick = this.onClick.bind(this);&lt;br&gt;
 } &lt;br&gt;
onClick() {&lt;br&gt;
 this.setState((prevState, props) =&amp;gt; ({ &lt;br&gt;
toggle: !prevState.toggle &lt;br&gt;
})); &lt;br&gt;
} &lt;br&gt;
render() {&lt;br&gt;
 return ( &lt;/p&gt;

&lt;p&gt;Hello, {this.props.name}! I am a SecondComponent. &lt;br&gt;
&lt;br&gt; &lt;br&gt;
Toggle is: {this.state.toggle}&lt;/p&gt;

&lt;p&gt;); &lt;br&gt;
}&lt;br&gt;
 }&lt;/p&gt;

</description>
      <category>css</category>
      <category>html</category>
      <category>react</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Advantages and Disadvantages of 5G Technology</title>
      <dc:creator>anojaa gnanes</dc:creator>
      <pubDate>Tue, 29 Oct 2019 05:46:09 +0000</pubDate>
      <link>https://dev.to/anojaa16/advantages-and-disadvantages-of-5g-technology-43c5</link>
      <guid>https://dev.to/anojaa16/advantages-and-disadvantages-of-5g-technology-43c5</guid>
      <description>&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;  Advantages    
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;a. High accuracy and large bidirectional bandwidth configuration  &lt;/p&gt;

&lt;p&gt;b. Technology to collect all the networks on a single platform.  &lt;/p&gt;

&lt;p&gt;c. Effective &amp;amp; efficient.  &lt;/p&gt;

&lt;p&gt;d. Technology o to facilitate common supervision tools for rapid action.  &lt;/p&gt;

&lt;p&gt;e. It was most likely; it will provide huge (Gigabit) radio data .it will Supported more than connections.  f. Can be easy to control with the previous generations.  &lt;/p&gt;

&lt;p&gt;g. Technological voice to support heterogeneous services (including the private network).  &lt;/p&gt;

&lt;p&gt;h. Enabled to provide unified uninterrupted and consistent connectivity world.&lt;/p&gt;

&lt;p&gt;Disadvantages  &lt;/p&gt;

&lt;p&gt;a. The technology under research, research on its applicability is on-going.  &lt;/p&gt;

&lt;p&gt;b. The(fast) speed at which this technology appears to be difficult to achieve(in the coming future, perhaps) due to inefficient coverage and traffic disruption because of the different transport forces of technology support in most parts of the world.  &lt;/p&gt;

&lt;p&gt;c. Infrastructure development needs high cost.  &lt;/p&gt;

&lt;p&gt;d. The issue of security and privacy  that has not    yet been resolved  &lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
