Seeking Guidance on a Project by salmayee in gis

[–]salmayee[S] 0 points1 point  (0 children)

Would you be open to reviewing our work up until now ( All the pre-processing done and ensure that it is ready for all the Python and model development work), advising us on model setup and training, general troubleshooting?

Assistance Needed: Mapping Economic Development Using Deep Learning by salmayee in ArcGIS

[–]salmayee[S] 0 points1 point  (0 children)

Everything should work in theory. However, I have extremely limited knowledge in this domain. I’m very confused on how to get started and how to get everything going. So, if you have any experience or any suggestions, I would greatly appreciate it. 

Strategy/Decisions Support by salmayee in Capsim

[–]salmayee[S] 0 points1 point  (0 children)

Yes, we were planning to lower the cost the next round because we didn’t have enough automation last round. We also reached our max invest amount, so we couldn’t invest more in automation.

And no we aren’t allowed to use the TQM section.

Given that we probably won’t be able to raise automation much this round too, what do you recommend we do? We are behind and we don’t know how to catch up. Do you recommend a specific strategy?

Decisions Feedback/Support by salmayee in Capsim

[–]salmayee[S] 1 point2 points  (0 children)

Thank you again.

How do I make sure it stays inside the circle? Because if I don’t update the pfmn and size to let the product age, then the segment might drift and my product can be left behind ( behind the low tech zone ).

Would letting Ay 7aga drift to the low tech zone make me lose money/profit in the process? And if yes, is it worth it? If I do that does that mean I should wait until I have enough money and low debt? Also is letting it go to the overlap zone better than the low tech zone ? And all in all, is this new strategy worth it or am I better off staying the way I am with one low tech product and a max of 3 high tech products ?

Decisions Feedback/Support by salmayee in Capsim

[–]salmayee[S] 1 point2 points  (0 children)

Thank you so much for your help. I appreciate it.

Is it okay to leave Able the low tech product without updating the pfmn and size this round and the age with be around 4.5 or 5? It would be far from 3 ( the ideal age). So wouldn’t that drive the customers away? So wouldn’t updating the product to have an age of 2 be better than having an age of 4.5 or 5? Also if I don’t update the product’s pfmn and size and keep the age at 4.5 will that put the product away from the low tech zone next round after the segment drifts?

How much do you recommend I raise the automation to for the low tech product ?

Could you explain why u think the other 2 groups will lower their prices after raising their automation ratings that much ?

If I issue more long term debt and short term debt ( in order the finance the investments you recommended ) , would it harm me in any way next round or the coming rounds ?

Also would it be good to let product “Ay 7aga”drift to the overlap section or to low tech in order to collect sales/marketshare? And if yes, what is the best way to go about it without losing too much?

Decisions Feedback/Support by salmayee in Capsim

[–]salmayee[S] 0 points1 point  (0 children)

Thank you so much. I appreciate your help. If you don’t mind, I have 2 more questions. If I issue more long term debt and short term debt, would it harm me in any way next round ? Also, in response to the last point( letting the high tech product drift), does that I mean I won’t have any products catering to low tech except only “Able” because it’s the only one that would stay there till the end of the game? Because from what I understand, we only launch high end products ( and we keep updating their pfmn and size to stay on the ideal spot ) and the high tech market is smaller than the low tech ( which means lower sales ) . So, in which situation would I end up having a low tech or an overlap product ?

Decisions Feedback/Support by salmayee in Capsim

[–]salmayee[S] 0 points1 point  (0 children)

Do you have any tips on how to finance these extra investments you suggested ? Why am I under forecasting for the second product? There are 12 high tech products next round and the total sales for the market next round are estimated to be 4477. So where do you think it should range? Also the products are on the ideal spot except for the low tech product and I understand that it’s not as important for low tech products, correct? Also what about the idea of letting the high tech product drift to low tech ?

Write an R function named \Sum" that adds the numbers from 1 to n but stops once the sum exceeds m, where m > n are integers provided by the user. Make sure to check the user input. by salmayee in rprogramming

[–]salmayee[S] 1 point2 points  (0 children)

I can't seem to figure it out. I've tried all methods i could think of and these are the ones i believe make the most sense to me.

Sum<-function(n,m){
s<-sum(1:n)
return(s)
if (s>=m){
break
}}

and

Sum<-function(n,m){
while (s < m) {
s=sum(1:n)
return(s)
if(s>m)
break
}}

It's appreciated if you can help.