Most viewed questions in Data Analytics

0 votes
1 answer

What are the top packages in R for data visualization?

These are the top R packages used ...READ MORE

Aug 26, 2019 in Data Analytics by Cherukuri
• 33,030 points
717 views
0 votes
1 answer

Changing variable values using R programming

This should work: df$symbol <- as.character(df$symbol) df$symbol[df$symbol == "ABCD.BO"] ...READ MORE

May 27, 2019 in Data Analytics by Zulaikha
• 910 points
717 views
0 votes
1 answer

How do I import document files in R programming

Try the following: read.table("~/SMSSpamCollection", header=TRUE, sep="\t") Change "~/" to the "ptah/to/your/file/" Mess around ...READ MORE

Nov 5, 2018 in Data Analytics by Kalgi
• 52,360 points
717 views
0 votes
1 answer

Does R programming provide support to execute Curl

You can use the RCurl package and ...READ MORE

Jul 19, 2019 in Data Analytics by Zulaikha
• 910 points
715 views
0 votes
0 answers

Kmeans Clusters - R visualization

Hi, can someone help me visualizae the ...READ MORE

Aug 1, 2019 in Data Analytics by rajeev
714 views
0 votes
1 answer

What is a css selector and where is it used?

CSS Selector is a combination of element ...READ MORE

Nov 21, 2018 in Data Analytics by Kalgi
• 52,360 points
713 views
0 votes
1 answer

How does paste function work in R?

Paste function concatenates vectors together. Syntax: paste(v1,v2,sep = ...READ MORE

Oct 29, 2019 in Data Analytics by Cherukuri
• 33,030 points
711 views
0 votes
1 answer

R chart using plotly

Plot_ly example library(plotly) today <- Sys.Date() tm <- ...READ MORE

Nov 4, 2019 in Data Analytics by Cherukuri
• 33,030 points
711 views
+1 vote
1 answer

How to read R errors through JRI

You'll be able to perform those R-Expressions, ...READ MORE

Nov 8, 2018 in Data Analytics by Maverick
• 10,840 points
711 views
0 votes
1 answer

Find length of string in R

You can try nchar > nchar("fast") [1] 4 > set.seed(10) > ...READ MORE

Apr 17, 2018 in Data Analytics by DataKing99
• 8,240 points
711 views
+1 vote
1 answer

R programming: Linear programming problems

The documentation for the lp package provides ...READ MORE

Feb 4, 2019 in Data Analytics by Tyrion anex
• 8,700 points
710 views
0 votes
1 answer

Is there any way to check for missing packages and install them in R?

There are 2 options: Either you can use ...READ MORE

Apr 17, 2018 in Data Analytics by nirvana
• 3,130 points
710 views
0 votes
1 answer

How to install R Studio in Windows?

Hi@akhtar, To install R Studio in your system, ...READ MORE

Apr 29, 2020 in Data Analytics by MD
• 95,440 points
706 views
0 votes
1 answer

how to use the Box-Cox power transformation in R

Yes, you are on the right track ...READ MORE

Jun 22, 2023 in Data Analytics by anonymous
• 1,380 points
704 views
0 votes
1 answer

What is lexical scoping in R

Under lexical scoping rules, if an “unknown” ...READ MORE

Nov 2, 2018 in Data Analytics by Maverick
• 10,840 points
704 views
+1 vote
1 answer

How to give line numbers in errors in R?

Use the following command: options(show.error.locations = TRUE) READ MORE

Nov 8, 2018 in Data Analytics by Maverick
• 10,840 points
703 views
+1 vote
2 answers

Stacked barchart - R programming with ggplot2

Use position = stack inside geom_bar() ggplot(mydata, aes(x = ...READ MORE

Aug 23, 2019 in Data Analytics by anonymous
• 33,030 points
703 views
0 votes
1 answer

18) OLAP is 'Analytics used with Business intelligence'

Option a) True. If you wish to master ...READ MORE

Dec 3, 2020 in Data Analytics by Gitika
• 65,910 points
702 views
0 votes
0 answers

Show null and not null value in fields in bar chart

My data consists of feedback from students ...READ MORE

Aug 2, 2019 in Data Analytics by radha
698 views
0 votes
1 answer

Error in library(wesanderson) : there is no package called ‘wesanderson’

Hi@akhtar, You can create a pie chart with ...READ MORE

Oct 28, 2020 in Data Analytics by MD
• 95,440 points
695 views
+1 vote
1 answer

R programming: How to subset data and plot graphs in R?

You can create a grouping variable depending ...READ MORE

Feb 18, 2019 in Data Analytics by Tyrion anex
• 8,700 points
695 views
0 votes
1 answer

How can I use R to list all files with a specified extension ?

fls <- list.files(pattern = "\\.dbf$") $ at the ...READ MORE

May 11, 2018 in Data Analytics by zombie
• 3,790 points
695 views
0 votes
2 answers

R Package installed or not

To see all installed packages in system ...READ MORE

Jun 27, 2019 in Data Analytics by anonymous
• 33,030 points
693 views
0 votes
1 answer

Which package is used to do data import in R and Python and How do you import SAS data?

We can do data import using multiple ...READ MORE

Aug 24, 2018 in Data Analytics by Abhi
• 3,720 points
693 views
0 votes
0 answers

Error: Failed to compile filename.tex

Hi, i have created a rmarkdown script ...READ MORE

Aug 1, 2019 in Data Analytics by anitha
691 views
0 votes
1 answer

How do I add Icons to my messages on my dashboard which I’m creating using shiny r?

Try something like this: dashboardHeader(title="Edureka", dropdownMenu type = "message", messageItem(from = ...READ MORE

Nov 30, 2018 in Data Analytics by Maverick
• 10,840 points
691 views
0 votes
1 answer

how can i access my profile and assignment for pubg analysis data science webinar?

Hey, @There,  Every user who registers for the ...READ MORE

Dec 15, 2020 in Data Analytics by Gitika
• 65,910 points
689 views
0 votes
1 answer

Create a new string from existing strings in different variables

Its quite simple, Use paste function as ...READ MORE

Oct 31, 2019 in Data Analytics by Cherukuri
• 33,030 points
688 views
0 votes
1 answer

R programming: 'predict() interval' difference between prediction and confidence

The intervals can include the uncertainty on ...READ MORE

Jan 16, 2019 in Data Analytics by Tyrion anex
• 8,700 points
688 views
0 votes
1 answer

How to code for the sum of imported data set in rstudio

@Lizzy, You can have a look here regarding ...READ MORE

Dec 9, 2020 in Data Analytics by Gitika
• 65,910 points
686 views
0 votes
1 answer

hclust size limit

Classic hierarchical clustering approaches are O(n^3) in runtime and O(n^2) in ...READ MORE

Jun 26, 2018 in Data Analytics by DataKing99
• 8,240 points
683 views
0 votes
1 answer

How to highlight polygon/hovered a region in a map?

Hey, Try this code example to highlight polygon ...READ MORE

Sep 25, 2019 in Data Analytics by anonymous
• 3,450 points
680 views
0 votes
2 answers

R programming: r bind error

You can use arrange function at last ...READ MORE

Sep 3, 2019 in Data Analytics by anonymous
• 33,030 points
680 views
0 votes
1 answer

R programming: Linear Equation

Use expand.grid to get all possible combinations ...READ MORE

Apr 30, 2019 in Data Analytics by Sophie may
• 10,610 points
678 views
0 votes
1 answer

R programming error: Plot error - “Col=”red“

Fix this line: polygon(c(0,0,1),c(1,2,1), col="red", density=c(30, ...READ MORE

May 28, 2019 in Data Analytics by Zulaikha
• 910 points
676 views
0 votes
1 answer

What do you mean by technically correct data in data science?

we define technically correct data as a ...READ MORE

Nov 14, 2018 in Data Analytics by Maverick
• 10,840 points
676 views
0 votes
1 answer

Randomly subset of data with dplyr

Maybe this is what you want: # sample ...READ MORE

Jun 19, 2018 in Data Analytics by CodingByHeart77
• 3,740 points
676 views
0 votes
1 answer

Create a bar chart with groups of bars and stacks.

Hi@akhtar, We can create a bar chart with ...READ MORE

Oct 30, 2020 in Data Analytics by MD
• 95,440 points
675 views
0 votes
1 answer

Error while importing Tensorflow

Start by uninstalling tensorflow and protobuf and reinstall them. Use ...READ MORE

Jun 13, 2019 in Data Analytics by Zulaikha
• 910 points
675 views
0 votes
1 answer

What is shiny R?

Shiny is an open source R package that ...READ MORE

Nov 29, 2018 in Data Analytics by Maverick
• 10,840 points
675 views
0 votes
2 answers

Clustering in R

Clustering is a type of unsupervised learning ...READ MORE

Jul 9, 2018 in Data Analytics by zombie
• 3,790 points
674 views
0 votes
1 answer

Loading ggplot2 package, missing 'munsell' package

You ought to have done this: "ggplot2" is ...READ MORE

Jun 24, 2022 in Data Analytics by Sohail
• 3,040 points
673 views
0 votes
1 answer

R programming: Does the R language have reflection?

The answer to your question is yes. ...READ MORE

Jan 8, 2019 in Data Analytics by Sophie may
• 10,610 points
672 views
+1 vote
1 answer

Remove NA values from the output in R programming

Edit your code: columnmean <- function(x, removeNA = ...READ MORE

Oct 31, 2018 in Data Analytics by Kalgi
• 52,360 points
672 views
0 votes
2 answers

What will be first step to be a data scientist?

Your first steps towards becoming a top ...READ MORE

Aug 9, 2018 in Data Analytics by zombie
• 3,790 points
672 views
0 votes
1 answer

What is data science?

Data Science is the practice of: Asking questions (formulating hypothesis), ...READ MORE

Aug 3, 2018 in Data Analytics by Abhi
• 3,720 points
670 views
+1 vote
1 answer
0 votes
0 answers

Add filters to reactive output in shiny

I created a shiny app to calculate ...READ MORE

Aug 14, 2019 in Data Analytics by aditya
666 views
0 votes
0 answers

How to add custom labels to charts in R?

How to add custom labels to charts ...READ MORE

Jul 4, 2019 in Data Analytics by Prerana
665 views
0 votes
1 answer

R programming: drc package error

You need two variables, (x and y). ...READ MORE

Apr 5, 2019 in Data Analytics by Sophie may
• 10,610 points
665 views